source: XmlTools2/trunk/XmlTools.pro@ 1063

Last change on this file since 1063 was 1056, checked in by s10k, 8 years ago

XmlTools 2.0c - small fixes and dropped openmp in favor of Qt threads

File size: 913 bytes
RevLine 
[906]1TEMPLATE = app
2CONFIG += console
[1055]3CONFIG += c++14
[906]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
[964]10# More optimization
11QMAKE_CFLAGS_RELEASE += -O3
12QMAKE_CXXFLAGS_RELEASE += -O3
[953]13
[964]14
[906]15macx {
16CONFIG -= app_bundle # We only want the binary on mac os not a bundle
17}
18
19
20INCLUDEPATH += ./libs
21
22SOURCES += main.cpp \
23 libs/pugixml.cpp \
24 xmltools.cpp \
25 util.cpp \
26 xmlpatch.cpp \
27 multidimvar.cpp \
28 utilxmltools.cpp \
[926]29 xmlfilter.cpp \
[964]30 optionsparser.cpp \
31 xmlcustomcode.cpp
[906]32
33HEADERS += main.h \
34 libs/pugiconfig.hpp \
35 libs/pugixml.hpp \
36 util.h \
37 xmltools.h \
38 xmlpatch.h \
39 multidimvar.h \
40 utilxmltools.h \
[926]41 xmlfilter.h \
[964]42 optionsparser.h \
43 xmlcustomcode.h
[906]44
45OTHER_FILES +=
46
47RESOURCES += \
48 resources.qrc
Note: See TracBrowser for help on using the repository browser.