summaryrefslogtreecommitdiffstats
path: root/pacman-c++/common.pri
blob: eace634d2cbdc7c615d92eba45d9202831a94075 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
}

CONFIG(release, debug|release) {
    DEFINES += QT_NO_DEBUG_OUTPUT
}