summaryrefslogtreecommitdiffstats
path: root/pacman-c++/common.pri
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2011-05-10 22:28:58 +0200
committermanuel <manuel@mausz.at>2011-05-10 22:28:58 +0200
commit1a6c940ed9d7f6136da0e13148314072665342c5 (patch)
tree467b259d966ea1ddf9f66440066f57cf3eed68c4 /pacman-c++/common.pri
parentcc1bb779661217171418adb0ddbd1ce01815463b (diff)
downloadfoop-1a6c940ed9d7f6136da0e13148314072665342c5.tar.gz
foop-1a6c940ed9d7f6136da0e13148314072665342c5.tar.bz2
foop-1a6c940ed9d7f6136da0e13148314072665342c5.zip
- refactorized audio once more: audio is now a plugin which gets loaded at runtime
- thus server has no dependency to phonon any more - remove client dependency to qtnetwork - fix enet deinitialization on windows
Diffstat (limited to 'pacman-c++/common.pri')
-rw-r--r--pacman-c++/common.pri21
1 files changed, 12 insertions, 9 deletions
diff --git a/pacman-c++/common.pri b/pacman-c++/common.pri
index 51db8ac..38e5c72 100644
--- a/pacman-c++/common.pri
+++ b/pacman-c++/common.pri
@@ -1,21 +1,24 @@
1LANGUAGE = C++ 1LANGUAGE = C++
2VERSION = 0.1 2VERSION = 0.1
3 3
4QT += phonon network
5
6DESTDIR = ../ 4DESTDIR = ../
7 5
8INCLUDEPATH += ../common 6INCLUDEPATH += ../common
9DEPENDPATH += ../common 7DEPENDPATH += ../common
10LIBS += -L.. -lcommon
11
12INCLUDEPATH += $$OUT_PWD/../proto 8INCLUDEPATH += $$OUT_PWD/../proto
13LIBS += -L.. -lproto -lprotobuf
14
15INCLUDEPATH += ../enet/include 9INCLUDEPATH += ../enet/include
16LIBS += -L$$PWD/enet/.libs -lenet 10
17# enable this if you want to link the archive 11contains(TEMPLATE, app) {
18#win32:LIBS += -lws2_32 -lwinmm 12 LIBS += -L.. -lcommon
13 LIBS += -L.. -lproto -lprotobuf
14 LIBS += -L$$PWD/enet/.libs -lenet
15 # enable this if you want to link the archive
16 #win32:LIBS += -lws2_32 -lwinmm
17}
18
19contains(CONFIG, plugin) {
20 LIBS += -L.. -lcommon
21}
19 22
20CONFIG(release, debug|release) { 23CONFIG(release, debug|release) {
21 DEFINES += QT_NO_DEBUG_OUTPUT 24 DEFINES += QT_NO_DEBUG_OUTPUT