blob: bd9f197427bf02322472a3562353ebe271fc6c2d (
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
26
27
28
29
|
TEMPLATE = app
DEPENDPATH += .. ../quackleio
INCLUDEPATH += . ..
# enable/disable debug symbols
# CONFIG += debug
CONFIG += console
build_pass:CONFIG(debug, debug|release) {
LIBS += -L../debug -L../quackleio/debug
}
build_pass:CONFIG(release, debug|release) {
LIBS += -L../release -L../quackleio/release
}
LIBS += -L.. -L../quackleio -lquackle -lquackleio
# Input
SOURCES += encodeleaves.cpp
win32:!win32-g++ {
QMAKE_CFLAGS_DEBUG ~= s/-MDd/-MTd/
QMAKE_CXXFLAGS_DEBUG ~= s/-MDd/-MTd/
QMAKE_CFLAGS_RELEASE ~= s/-MD/-MT/
QMAKE_CXXFLAGS_RELEASE ~= s/-MD/-MT/
}
|