summaryrefslogtreecommitdiffstats
path: root/pacman-c++/common.pri
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2011-05-05 00:57:07 +0200
committermanuel <manuel@mausz.at>2011-05-05 00:57:07 +0200
commitce48af53646cd9e7ec762fc1ac176b3aa620b11d (patch)
treef8fbf2cae8c7d0cbac2696a8f4cf94410bfb4928 /pacman-c++/common.pri
parente54ccad07e256ba877bd41d70bd358bd0085bd1e (diff)
downloadfoop-ce48af53646cd9e7ec762fc1ac176b3aa620b11d.tar.gz
foop-ce48af53646cd9e7ec762fc1ac176b3aa620b11d.tar.bz2
foop-ce48af53646cd9e7ec762fc1ac176b3aa620b11d.zip
- refactorized the whole project and made a few subprojects
- replaced tcp with enet - added connect dialog - some smaller bugfixes
Diffstat (limited to 'pacman-c++/common.pri')
-rw-r--r--pacman-c++/common.pri21
1 files changed, 21 insertions, 0 deletions
diff --git a/pacman-c++/common.pri b/pacman-c++/common.pri
new file mode 100644
index 0000000..fed2973
--- /dev/null
+++ b/pacman-c++/common.pri
@@ -0,0 +1,21 @@
1LANGUAGE = C++
2VERSION = 0.1
3
4OBJECTS_DIR = .obj
5MOC_DIR = .moc
6
7QT += phonon network
8
9INCLUDEPATH += ../common
10DEPENDPATH += ../common
11LIBS += -L../common -lcommon
12
13INCLUDEPATH += $$OUT_PWD/../proto
14LIBS += -L../proto -lproto -lprotobuf
15
16INCLUDEPATH += ../enet/include
17LIBS += -L$$PWD/enet/.libs -lenet
18
19CONFIG(release, debug|release) {
20 DEFINES += QT_NO_DEBUG_OUTPUT
21}