-
Notifications
You must be signed in to change notification settings - Fork 0
/
XmlTools.pro
46 lines (37 loc) · 866 Bytes
/
XmlTools.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
39
40
41
42
43
44
45
46
TEMPLATE = app
CONFIG += console
CONFIG += c++14
QT += core
QT -= gui # not needed
#CONFIG -= qt
#QT += qml #for use new google v8 qtscript engine
QT += script #for use old qtscript engine
# More optimization
QMAKE_CFLAGS_RELEASE += -O3
QMAKE_CXXFLAGS_RELEASE += -O3
include(../CommonUtils/CommonUtils.pri)
include(../CommonLibs/CommonLibs.pri)
macx {
CONFIG -= app_bundle # We only want the binary on mac os not a bundle
}
INCLUDEPATH += ./libs
SOURCES += main.cpp \
xmltools.cpp \
xmlpatch.cpp \
multidimvar.cpp \
utilxmltools.cpp \
xmlfilter.cpp \
optionsparser.cpp \
xmlcustomcode.cpp
HEADERS += main.h \
xmltools.h \
xmlpatch.h \
multidimvar.h \
utilxmltools.h \
xmlfilter.h \
optionsparser.h \
xmlcustomcode.h \
utilglobalvars.h
OTHER_FILES +=
RESOURCES += \
resources.qrc