fixed renaming issue for queries
[quassel.git] / build / quassel.pro
index 7ce2387..33c25b2 100644 (file)
@@ -15,7 +15,8 @@
 
 
 # Set project-wide config options
-CONFIG += qt debug warn_on
+
+#CONFIG = qt warn_on release
 
 TEMPLATE = subdirs
 
@@ -25,7 +26,7 @@ isEmpty(BUILD) {
 }
 
 contains(BUILD, all) {
-  BUILD += qtgui core mono
+  BUILD += qtclient core mono
 }
 
 contains(BUILD, mono) {
@@ -40,13 +41,16 @@ contains(BUILD, core) {
   BUILD_TARGETS *= core
 }
 
-contains(BUILD, qtgui) {
-  include(targets/qtgui.pri)
+contains(BUILD, qtclient) {
+  include(targets/qtclient.pri)
   BUILD_MODS *= $${MODULES}
-  BUILD_TARGETS *= qtgui
+  BUILD_TARGETS *= qtclient
 }
 
-# Now, we first build all needed modules...
+# First we build contrib stuff...
+# SUBDIRS += contrib/libqxt.pro   # no deps to libqxt at the moment
+
+# Then we build all needed modules...
 for(mod, BUILD_MODS) {
   SUBDIRS += modules/$${mod}.pro
 }