-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQJson4.pro
38 lines (33 loc) · 968 Bytes
/
QJson4.pro
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
30
31
32
33
34
35
36
37
38
TEMPLATE = app
TARGET = test
DEPENDPATH += .
INCLUDEPATH += .
# Input
HEADERS += QJsonArray.h \
QJsonDocument.h \
QJsonObject.h \
QJsonParseError.h \
QJsonValue.h \
QJsonValueRef.h \
QJsonParser.h \
QJsonRoot.h \
SOURCES += main.cpp \
QJsonArray.cpp \
QJsonDocument.cpp \
QJsonObject.cpp \
QJsonParseError.cpp \
QJsonValue.cpp \
QJsonValueRef.cpp \
QJsonParser.cpp \
CONFIG(debug, debug|release) {
OBJECTS_DIR = $${OUT_PWD}/.debug/obj
MOC_DIR = $${OUT_PWD}/.debug/moc
RCC_DIR = $${OUT_PWD}/.debug/rcc
UI_DIR = $${OUT_PWD}/.debug/uic
}
CONFIG(release, debug|release) {
OBJECTS_DIR = $${OUT_PWD}/.release/obj
MOC_DIR = $${OUT_PWD}/.release/moc
RCC_DIR = $${OUT_PWD}/.release/rcc
UI_DIR = $${OUT_PWD}/.release/uic
}