Revision: | 906 |
Committed: | Sat Feb 1 14:27:58 2014 UTC (11 years, 8 months ago) by s10k |
File size: | 713 byte(s) |
Log Message: |
# | 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 | |
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 |