source: s10k/XmlTools/XmlTools.pro

Last change on this file was 1073, checked in by s10k, 7 years ago

added XML Tools latest version (2.0d) and s10k's common libs

File size: 912 bytes
Line 
1TEMPLATE = app
2CONFIG += console
3CONFIG += c++14
4QT += core
5QT -= gui # not needed
6#CONFIG -= qt
7#QT += qml #for use new google v8 qtscript engine
8QT += script #for use old qtscript engine
9
10# More optimization
11QMAKE_CFLAGS_RELEASE += -O3
12QMAKE_CXXFLAGS_RELEASE += -O3
13
14include(../CommonUtils/CommonUtils.pri)
15include(../CommonLibs/CommonLibs.pri)
16
17macx {
18CONFIG -= app_bundle # We only want the binary on mac os not a bundle
19}
20
21
22INCLUDEPATH += ./libs
23
24SOURCES += main.cpp \
25 xmltools.cpp \
26 xmlpatch.cpp \
27 multidimvar.cpp \
28 utilxmltools.cpp \
29 xmlfilter.cpp \
30 optionsparser.cpp \
31 xmlcustomcode.cpp
32
33HEADERS += main.h \
34 xmltools.h \
35 xmlpatch.h \
36 multidimvar.h \
37 utilxmltools.h \
38 xmlfilter.h \
39 optionsparser.h \
40 xmlcustomcode.h \
41 utilglobalvars.h
42
43OTHER_FILES +=
44
45RESOURCES += \
46 resources.qrc
Note: See TracBrowser for help on using the repository browser.