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 | |
---|
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
|
---|
Note:
See
TracBrowser
for help on using the repository browser.