-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathTinderBox.pro
More file actions
99 lines (88 loc) · 2.27 KB
/
TinderBox.pro
File metadata and controls
99 lines (88 loc) · 2.27 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#-------------------------------------------------
#
# Project created by QtCreator 2014-07-19T23:08:43
#
#-------------------------------------------------
QT += core gui xml
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = TinderBox
TEMPLATE = app
INCLUDEPATH += src/ src/parse/
macx {
ICON = icons/TinderBox.icns
}
win32 {
CONFIG += C++11
RC_FILE = Resources_Win.rc
}
linux {
QMAKE_CXXFLAGS += -std=c++11 -D_GLIBCXX_USE_CXX11_ABI=0
}
SOURCES += \
src/CinderBlock.cpp \
src/CinderBlockManager.cpp \
src/ErrorList.cpp \
src/FirstTimeDlg.cpp \
src/GeneratorVc2015.cpp \
src/GeneratorVcBase.cpp \
src/GeneratorXcodeBase.cpp \
src/GeneratorXcodeIos.cpp \
src/GeneratorXcodeMac.cpp \
src/Instancer.cpp \
src/main.cpp \
src/MainWizard.cpp \
src/Preferences.cpp \
src/ProjectTemplate.cpp \
src/ProjectTemplateManager.cpp \
src/Template.cpp \
src/Util.cpp \
src/WizardPageCinderBlocks.cpp \
src/WizardPageMain.cpp \
src/parse/PList.cpp \
src/parse/Vc2015WinRtProj.cpp \
src/parse/Vc2015Proj.cpp \
src/parse/VcProj.cpp \
src/parse/XCodeProj.cpp \
src/pugixml/pugixml.cpp \
src/WizardPageEnvOptions.cpp \
src/GeneratorVc2015Winrt.cpp
HEADERS += \
src/CinderBlock.h \
src/CinderBlockManager.h \
src/ErrorList.h \
src/FirstTimeDlg.h \
src/GeneratorBase.h \
src/GeneratorVc2015Winrt.h \
src/GeneratorVc2015.h \
src/GeneratorVcBase.h \
src/GeneratorXcodeBase.h \
src/GeneratorXcodeIos.h \
src/GeneratorXcodeMac.h \
src/Instancer.h \
src/MainWizard.h \
src/Preferences.h \
src/ProjectTemplate.h \
src/ProjectTemplateManager.h \
src/Template.h \
src/TinderBox.h \
src/Util.h \
src/WizardPageCinderBlocks.h \
src/WizardPageMain.h \
src/parse/PList.h \
src/parse/Vc2015WinRtProj.h \
src/parse/Vc2015Proj.h \
src/parse/VcProj.h \
src/parse/XCodeProj.h \
src/pugixml/pugiconfig.hpp \
src/pugixml/pugixml.hpp \
src/WizardPageEnvOptions.h \
src/GeneratorVc2015Winrt.h
RESOURCES += \
TinderBox.qrc
FORMS += \
ui/ErrorListDialog.ui \
ui/FirstTimeDlg.ui \
ui/PrefsDlg.ui \
ui/WizardPageCinderBlocks.ui \
ui/WizardPageMain.ui \
ui/WizardPageEnvOptions.ui