Last change
on this file since 1063 was 1056, checked in by s10k, 8 years ago |
XmlTools 2.0c - small fixes and dropped openmp in favor of Qt threads
|
File size:
913 bytes
|
Rev | Line | |
---|
[906] | 1 | TEMPLATE = app
|
---|
| 2 | CONFIG += console
|
---|
[1055] | 3 | CONFIG += c++14
|
---|
[906] | 4 | QT += core
|
---|
| 5 | QT -= gui # not needed
|
---|
| 6 | #CONFIG -= qt
|
---|
| 7 | #QT += qml #for use new google v8 qtscript engine
|
---|
| 8 | QT += script #for use old qtscript engine
|
---|
| 9 |
|
---|
[964] | 10 | # More optimization
|
---|
| 11 | QMAKE_CFLAGS_RELEASE += -O3
|
---|
| 12 | QMAKE_CXXFLAGS_RELEASE += -O3
|
---|
[953] | 13 |
|
---|
[964] | 14 |
|
---|
[906] | 15 | macx {
|
---|
| 16 | CONFIG -= app_bundle # We only want the binary on mac os not a bundle
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 |
|
---|
| 20 | INCLUDEPATH += ./libs
|
---|
| 21 |
|
---|
| 22 | SOURCES += main.cpp \
|
---|
| 23 | libs/pugixml.cpp \
|
---|
| 24 | xmltools.cpp \
|
---|
| 25 | util.cpp \
|
---|
| 26 | xmlpatch.cpp \
|
---|
| 27 | multidimvar.cpp \
|
---|
| 28 | utilxmltools.cpp \
|
---|
[926] | 29 | xmlfilter.cpp \
|
---|
[964] | 30 | optionsparser.cpp \
|
---|
| 31 | xmlcustomcode.cpp
|
---|
[906] | 32 |
|
---|
| 33 | HEADERS += main.h \
|
---|
| 34 | libs/pugiconfig.hpp \
|
---|
| 35 | libs/pugixml.hpp \
|
---|
| 36 | util.h \
|
---|
| 37 | xmltools.h \
|
---|
| 38 | xmlpatch.h \
|
---|
| 39 | multidimvar.h \
|
---|
| 40 | utilxmltools.h \
|
---|
[926] | 41 | xmlfilter.h \
|
---|
[964] | 42 | optionsparser.h \
|
---|
| 43 | xmlcustomcode.h
|
---|
[906] | 44 |
|
---|
| 45 | OTHER_FILES +=
|
---|
| 46 |
|
---|
| 47 | RESOURCES += \
|
---|
| 48 | resources.qrc
|
---|
Note:
See
TracBrowser
for help on using the repository browser.