- MessageTypes are now binary exclusive which allows easy checks with multimple condi...
[quassel.git] / build / targets / target.pri
index 29a8f6c..7b8c44b 100644 (file)
@@ -1,10 +1,33 @@
 TEMPLATE = app
+
+include(../buildconf.pri)
+
+RESOURCES   *= ../../i18n/i18n.qrc
+TRANSLATIONS = quassel_da.ts \
+               quassel_de.ts
+
 SRCPATH = ../../src
-OBJECTS_DIR = $${TARGET}.tmp
+OBJECTS_DIR = .$$TARGET
+RCC_DIR     = .$$TARGET
 
 for(mod, MODULES) {
   INCLUDEPATH *= $$SRCPATH/$$mod
   LIBS *= -L../modules/$$dirname(mod) -l$$basename(mod)
+  PRE_TARGETDEPS *= ../modules/$$mod
 }
+PRE_TARGETDEPS *= ../../version.inc
+
+#CONTRIB += libqxt  # not needed
+#include(../contrib/contrib.pri)
 
 SOURCES = $$SRCPATH/common/main.cpp
+
+# This is really annoying, but for some reason win32 libs are not included by default.
+# Ugly workaround following...
+
+win32 {
+  CONFIG += embed_manifest_exe
+  LIBS *= -luser32 -lgdi32 -lkernel32 -lshell32 -lwsock32 -lwinspool -lcomdlg32 -lole32
+  LIBS *= -ladvapi32 -limm32 -luuid -lwinmm -ldelayimp -lopengl32 -lglu32 -loleaut32 -lws2_32
+}
+