blob: 38e5c72161d9c62f4b935c0ccc7a2a50424b839d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
LANGUAGE = C++
VERSION = 0.1
DESTDIR = ../
INCLUDEPATH += ../common
DEPENDPATH += ../common
INCLUDEPATH += $$OUT_PWD/../proto
INCLUDEPATH += ../enet/include
contains(TEMPLATE, app) {
LIBS += -L.. -lcommon
LIBS += -L.. -lproto -lprotobuf
LIBS += -L$$PWD/enet/.libs -lenet
# enable this if you want to link the archive
#win32:LIBS += -lws2_32 -lwinmm
}
contains(CONFIG, plugin) {
LIBS += -L.. -lcommon
}
CONFIG(release, debug|release) {
DEFINES += QT_NO_DEBUG_OUTPUT
}
|