source: XmlTools2/trunk/XmlTools.pro@ 910

Last change on this file since 910 was 906, checked in by s10k, 11 years ago
File size: 713 bytes
Line 
1TEMPLATE = app
2CONFIG += console
3QT += core
4QT -= gui # not needed
5#CONFIG -= qt
6#QT += qml #for use new google v8 qtscript engine
7QT += script #for use old qtscript engine
8
9macx {
10CONFIG -= app_bundle # We only want the binary on mac os not a bundle
11}
12
13
14INCLUDEPATH += ./libs
15
16SOURCES += 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
25HEADERS += 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
35OTHER_FILES +=
36
37RESOURCES += \
38 resources.qrc
Note: See TracBrowser for help on using the repository browser.