Properly depend on libs again and actually rebuild binaries if something changed...
[quassel.git] / build / targets / target.pri
index 7b8c44b..9654698 100644 (file)
@@ -10,6 +10,12 @@ SRCPATH = ../../src
 OBJECTS_DIR = .$$TARGET
 RCC_DIR     = .$$TARGET
 
+linux-g++:static {
+  # We put libs in contrib/libs that should be linked statically, especially libstdc++.a
+  LIBS *= -L../contrib/libs
+  QMAKE_LFLAGS *= -static-libgcc
+}
+
 for(mod, MODULES) {
   INCLUDEPATH *= $$SRCPATH/$$mod
   LIBS *= -L../modules/$$dirname(mod) -l$$basename(mod)
@@ -25,9 +31,16 @@ SOURCES = $$SRCPATH/common/main.cpp
 # This is really annoying, but for some reason win32 libs are not included by default.
 # Ugly workaround following...
 
-win32 {
+win32:static {
+  RC_FILE = win32.rc
   CONFIG += embed_manifest_exe
   LIBS *= -luser32 -lgdi32 -lkernel32 -lshell32 -lwsock32 -lwinspool -lcomdlg32 -lole32
   LIBS *= -ladvapi32 -limm32 -luuid -lwinmm -ldelayimp -lopengl32 -lglu32 -loleaut32 -lws2_32
+  LIBS *= -llibeay32MD -lssleay32MD
+  QMAKE_LFLAGS_WINDOWS += /nodefaultlib:"libcmt.lib"
+
 }
 
+macx {
+  ICON = ../../src/icons/quassel.icns
+}