source: XmlTools2/trunk/XmlTools.pro@ 1055

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

XmlTools 2.0c

File size: 1004 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
9QMAKE_CXXFLAGS+= -fopenmp
10QMAKE_LFLAGS += -fopenmp #OpenMP (multithreading) support
11
12# More optimization
13QMAKE_CFLAGS_RELEASE += -O3
14QMAKE_CXXFLAGS_RELEASE += -O3
15
16
17
18
19macx {
20CONFIG -= app_bundle # We only want the binary on mac os not a bundle
21}
22
23
24INCLUDEPATH += ./libs
25
26SOURCES += main.cpp \
27 libs/pugixml.cpp \
28 xmltools.cpp \
29 util.cpp \
30 xmlpatch.cpp \
31 multidimvar.cpp \
32 utilxmltools.cpp \
33 xmlfilter.cpp \
34 optionsparser.cpp \
35 xmlcustomcode.cpp
36
37HEADERS += main.h \
38 libs/pugiconfig.hpp \
39 libs/pugixml.hpp \
40 util.h \
41 xmltools.h \
42 xmlpatch.h \
43 multidimvar.h \
44 utilxmltools.h \
45 xmlfilter.h \
46 optionsparser.h \
47 xmlcustomcode.h
48
49OTHER_FILES +=
50
51RESOURCES += \
52 resources.qrc
Note: See TracBrowser for help on using the repository browser.