ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/XmlTools2/trunk/XmlTools.pro
Revision: 953
Committed: Mon Feb 10 14:28:14 2014 UTC (11 years, 8 months ago) by s10k
File size: 850 byte(s)
Log Message:
XmlTools
What if we increase the performance of javascript by 2.5 times or more? (trying multithreading)

File Contents

# Content
1 TEMPLATE = app
2 CONFIG += console
3 QT += core
4 QT -= gui # not needed
5 #CONFIG -= qt
6 #QT += qml #for use new google v8 qtscript engine
7 QT += script #for use old qtscript engine
8 QMAKE_CXXFLAGS+= -fopenmp
9 QMAKE_LFLAGS += -fopenmp #OpenMP (multithreading) support
10
11
12 macx {
13 CONFIG -= app_bundle # We only want the binary on mac os not a bundle
14 }
15
16
17 INCLUDEPATH += ./libs
18
19 SOURCES += 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
29 HEADERS += 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
40 OTHER_FILES +=
41
42 RESOURCES += \
43 resources.qrc