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