Make debug builds possible again. Use qmake -config debug to enable debug builds...
[quassel.git] / build / buildconf.pri
index 0464dce..b85f153 100644 (file)
@@ -1,12 +1,25 @@
-CONFIG += warn_on uic resources qt
-# CONFIG += incremental link_prl nostrip qt_no_framework
+# This file contains global build settings. Note that you can add stuff to CONFIG
+# by using qmake -config stuff 
+# Notable examples:
+# 
+# -config debug (or release or debug_and_release)
+# -config verbose (to enable verbose compiling)
 
-release {
-  CONFIG *= release strip
-} else {
-  CONFIG *= debug
+CONFIG += warn_on uic resources qt silent
+
+verbose {
+  CONFIG -= silent
+}
+
+win32 { 
+  static {
+    CONFIG = release warn_on uic resources qt windows static
+  } else {
+    CONFIG = warn_on uic resources qt silent windows
+  }
 }
 
-win32:static { 
-  CONFIG = release warn_on uic resources qt windows static
+mac:Tiger {
+ QMAKE_MAC_SDK=/Developer/SDKs/MacOSX10.4u.sdk
+ CONFIG += x86 ppc
 }