-
Notifications
You must be signed in to change notification settings - Fork 5
/
QtConfig.pro
146 lines (132 loc) · 4.5 KB
/
QtConfig.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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#-------------------------------------------------
#
# Project created by QtCreator 2019-08-24T12:45:31
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = QtConfig
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
CONFIG += c++11
INCLUDEPATH += config models ui pages
SOURCES += \
config/condition.cpp \
config/conditiondata.cpp \
config/configdata.cpp \
config/configmanager.cpp \
config/option.cpp \
models/featurefilterproxy.cpp \
global.cpp \
config/jsonconfig.cpp \
main.cpp \
models/featuresmodel.cpp \
models/optionsfilterproxy.cpp \
models/optionsmodel.cpp \
pages/pagecommon.cpp \
pages/pageoptions.cpp \
ui/customcombobox.cpp \
ui/editors/abstractoptioneditor.cpp \
ui/editors/comboselector.cpp \
ui/editors/multistringeditor.cpp \
ui/editors/multistringselector.cpp \
ui/editors/optionalstringeditor.cpp \
ui/editors/optionbooleditor.cpp \
ui/editors/pathselecteditor.cpp \
ui/editors/stringeditor.cpp \
ui/editors/voideditor.cpp \
ui/optionsselectdelegate.cpp \
pages/pagecrosscompile.cpp \
pages/pagefeatures.cpp \
pages/pagefinish.cpp \
pages/pagelicense.cpp \
pages/pagemodules.cpp \
pages/pagenomake.cpp \
pages/pagerun.cpp \
pages/pageselectbuildmethod.cpp \
pages/pageselectpaths.cpp \
pages/pageselectplatform.cpp \
pages/pagewelcome.cpp \
ui/qtconfigwizard.cpp \
ui/qtlitedialog.cpp \
ui/saveconfirmdialog.cpp \
pages/wizardpagebase.cpp
HEADERS += \
config/condition.h \
config/conditiondata.h \
config/configdata.h \
config/configmanager.h \
config/option.h \
models/featurefilterproxy.h \
global.h \
config/jsonconfig.h \
models/featuresmodel.h \
models/optionsfilterproxy.h \
models/optionsmodel.h \
pages/pagecommon.h \
pages/pageoptions.h \
ui/customcombobox.h \
ui/editors/abstractoptioneditor.h \
ui/editors/comboselector.h \
ui/editors/multistringeditor.h \
ui/editors/multistringselector.h \
ui/editors/optionalstringeditor.h \
ui/editors/optionbooleditor.h \
ui/editors/pathselecteditor.h \
ui/editors/stringeditor.h \
ui/editors/voideditor.h \
ui/optionsselectdelegate.h \
pages/pagecrosscompile.h \
pages/pagefeatures.h \
pages/pagefinish.h \
pages/pagelicense.h \
pages/pagemodules.h \
pages/pagenomake.h \
pages/pagerun.h \
pages/pageselectbuildmethod.h \
pages/pageselectpaths.h \
pages/pageselectplatform.h \
pages/pagewelcome.h \
ui/qtconfigwizard.h \
ui/qtlitedialog.h \
ui/saveconfirmdialog.h \
pages/wizardpagebase.h
FORMS += \
pages/pagecommon.ui \
pages/pageoptions.ui \
pages/pagecrosscompile.ui \
pages/pagefeatures.ui \
pages/pagefinish.ui \
pages/pagelicense.ui \
pages/pagemodules.ui \
pages/pagenomake.ui \
pages/pagerun.ui \
pages/pageselectbuildmethod.ui \
pages/pageselectpaths.ui \
pages/pageselectplatform.ui \
pages/pagewelcome.ui \
ui/qtconfigwizard.ui \
ui/qtlitedialog.ui \
ui/saveconfirmdialog.ui
# Default rules for deployment.
defined(INSTALL_PATH, var) {
message(Install path is set)
target.path = $$INSTALL_PATH
} else {
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
}
!isEmpty(target.path): INSTALLS += target
exists(3rdparty/webrequest/WebRequest.pri) {
include(3rdparty/webrequest/WebRequest.pri)
}
RESOURCES += \
res/res.qrc