source: XmlTools2/trunk/XmlTools.pro@ 958

Last change on this file since 958 was 953, checked in by s10k, 11 years ago

XmlTools
What if we increase the performance of javascript by 2.5 times or more? (trying multithreading)

File size: 850 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
12macx {
13CONFIG -= app_bundle # We only want the binary on mac os not a bundle
14}
15
16
17INCLUDEPATH += ./libs
18
19SOURCES += main.cpp \
20 libs/pugixml.cpp \
21 xmltools.cpp \
22 util.cpp \
23 xmlpatch.cpp \
24 multidimvar.cpp \
25 utilxmltools.cpp \
26 xmlfilter.cpp \
27 optionsparser.cpp
28
29HEADERS += main.h \
30 libs/pugiconfig.hpp \
31 libs/pugixml.hpp \
32 util.h \
33 xmltools.h \
34 xmlpatch.h \
35 multidimvar.h \
36 utilxmltools.h \
37 xmlfilter.h \
38 optionsparser.h
39
40OTHER_FILES +=
41
42RESOURCES += \
43 resources.qrc
Note: See TracBrowser for help on using the repository browser.