|
Last change
on this file since 1057 was 1056, checked in by s10k, 9 years ago |
|
XmlTools 2.0c - small fixes and dropped openmp in favor of Qt threads
|
|
File size:
913 bytes
|
| Line | |
|---|
| 1 | TEMPLATE = app
|
|---|
| 2 | CONFIG += console
|
|---|
| 3 | CONFIG += c++14
|
|---|
| 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 |
|
|---|
| 10 | # More optimization
|
|---|
| 11 | QMAKE_CFLAGS_RELEASE += -O3
|
|---|
| 12 | QMAKE_CXXFLAGS_RELEASE += -O3
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 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 \
|
|---|
| 29 | xmlfilter.cpp \
|
|---|
| 30 | optionsparser.cpp \
|
|---|
| 31 | xmlcustomcode.cpp
|
|---|
| 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 \
|
|---|
| 41 | xmlfilter.h \
|
|---|
| 42 | optionsparser.h \
|
|---|
| 43 | xmlcustomcode.h
|
|---|
| 44 |
|
|---|
| 45 | OTHER_FILES +=
|
|---|
| 46 |
|
|---|
| 47 | RESOURCES += \
|
|---|
| 48 | resources.qrc
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.