-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlowTransformer.pro
51 lines (40 loc) · 1.06 KB
/
FlowTransformer.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#-------------------------------------------------
#
# Project created by QtCreator 2016-02-16T17:35:56
#
#-------------------------------------------------
QT += core gui
CONFIG += c++11
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = FlowTransformer
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
treeitem.cpp \
treemodel.cpp \
emc_parser.cpp \
emc_parser_utility.cpp \
tablemodel.cpp \
itemtabledelegate.cpp \
treemodelcompleter.cpp \
inc/tinyxml2.cpp \
dragdropmodel.cpp \
utility.cpp
HEADERS += mainwindow.h \
treeitem.h \
treemodel.h \
emc_parse_utility.h \
tablemodel.h \
itemtabledelegate.h \
treemodelcompleter.h \
inc/tinyxml2.h \
dragdropmodel.h \
utility.h
FORMS += mainwindow.ui
RESOURCES += \
icons.qrc
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/inc/release/ -lexpat.1
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/inc/debug/ -lexpat.1
else:unix: LIBS += -L$$PWD/inc/ -lexpat.1
INCLUDEPATH += $$PWD/inc
DEPENDPATH += $$PWD/inc