diff options
| author | manuel <manuel@mausz.at> | 2011-05-05 00:57:07 +0200 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2011-05-05 00:57:07 +0200 |
| commit | ce48af53646cd9e7ec762fc1ac176b3aa620b11d (patch) | |
| tree | f8fbf2cae8c7d0cbac2696a8f4cf94410bfb4928 /pacman-c++/common.pri | |
| parent | e54ccad07e256ba877bd41d70bd358bd0085bd1e (diff) | |
| download | foop-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.pri | 21 |
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 @@ | |||
| 1 | LANGUAGE = C++ | ||
| 2 | VERSION = 0.1 | ||
| 3 | |||
| 4 | OBJECTS_DIR = .obj | ||
| 5 | MOC_DIR = .moc | ||
| 6 | |||
| 7 | QT += phonon network | ||
| 8 | |||
| 9 | INCLUDEPATH += ../common | ||
| 10 | DEPENDPATH += ../common | ||
| 11 | LIBS += -L../common -lcommon | ||
| 12 | |||
| 13 | INCLUDEPATH += $$OUT_PWD/../proto | ||
| 14 | LIBS += -L../proto -lproto -lprotobuf | ||
| 15 | |||
| 16 | INCLUDEPATH += ../enet/include | ||
| 17 | LIBS += -L$$PWD/enet/.libs -lenet | ||
| 18 | |||
| 19 | CONFIG(release, debug|release) { | ||
| 20 | DEFINES += QT_NO_DEBUG_OUTPUT | ||
| 21 | } | ||
