source: XmlTools2/trunk/XmlTools.pro@ 1011

Last change on this file since 1011 was 964, checked in by s10k, 11 years ago

XmlTools
More speedup, about 3 times faster now than the current AEI build

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