code_duplication--
[quassel.git] / build / buildconf.pri
index ddda143..a5aa555 100644 (file)
@@ -1,16 +1,21 @@
+# 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)
+
 CONFIG += warn_on uic resources qt silent
-# CONFIG += incremental link_prl nostrip qt_no_framework
 
-release {
-  CONFIG *= release strip
-} else {
-  CONFIG *= debug
+verbose {
+  CONFIG -= silent
 }
 
 win32 { 
-  CONFIG = warn_on uic resources qt silent windows
-  static { 
-    CONFIG += release static
+  static {
+    CONFIG = release warn_on uic resources qt windows static
+  } else {
+    CONFIG = warn_on uic resources qt silent windows
   }
 }