blob: 4bc5b878d25a54b18e3b12087c10288e8aff1caf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
VPATH += $$PWD
QT += xml
DEFINES += PROEVALUATOR_CUMULATIVE
INCLUDEPATH *= $$PWD $$PWD/..
DEPENDPATH *= $$PWD $$PWD/..
# Input
HEADERS += \
proparser_global.h \
profileparser.h \
profileevaluator.h \
proitems.h \
prowriter.h \
ioutils.h
SOURCES += \
profileparser.cpp \
profileevaluator.cpp \
proitems.cpp \
prowriter.cpp \
ioutils.cpp
RESOURCES += proparser.qrc
|