source: XmlTools2/trunk/XmlTools.pro@ 948

Last change on this file since 948 was 944, checked in by s10k, 11 years ago

XmlTools
last changes to V2.0

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