From ce48af53646cd9e7ec762fc1ac176b3aa620b11d Mon Sep 17 00:00:00 2001 From: manuel Date: Thu, 5 May 2011 00:57:07 +0200 Subject: - refactorized the whole project and made a few subprojects - replaced tcp with enet - added connect dialog - some smaller bugfixes --- pacman-c++/common.pri | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pacman-c++/common.pri (limited to 'pacman-c++/common.pri') 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 @@ +LANGUAGE = C++ +VERSION = 0.1 + +OBJECTS_DIR = .obj +MOC_DIR = .moc + +QT += phonon network + +INCLUDEPATH += ../common +DEPENDPATH += ../common +LIBS += -L../common -lcommon + +INCLUDEPATH += $$OUT_PWD/../proto +LIBS += -L../proto -lproto -lprotobuf + +INCLUDEPATH += ../enet/include +LIBS += -L$$PWD/enet/.libs -lenet + +CONFIG(release, debug|release) { + DEFINES += QT_NO_DEBUG_OUTPUT +} -- cgit v1.2.3