blob: ed729e954f8c4f10106c8e6ee04ce0446969c48d (
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
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
|
TEMPLATE = lib
TARGET = Qnx
QT += network xml
PROVIDER = RIM
isEmpty(QNX_ENABLE):QNX_EXPERIMENTAL_STR="true"
else:QNX_EXPERIMENTAL_STR="false"
include(../../qtcreatorplugin.pri)
include(qnx_dependencies.pri)
SOURCES += qnxplugin.cpp \
blackberryqtversionfactory.cpp \
blackberryqtversion.cpp \
qnxbaseqtconfigwidget.cpp \
blackberrydeployconfigurationfactory.cpp \
blackberrydeployconfiguration.cpp \
blackberrycreatepackagestep.cpp \
blackberrycreatepackagestepconfigwidget.cpp \
blackberrycreatepackagestepfactory.cpp \
blackberrydeploystep.cpp \
blackberrydeployconfigurationwidget.cpp \
blackberrydeploystepconfigwidget.cpp \
blackberrydeviceconfigurationfactory.cpp \
blackberrydeviceconfigurationwizard.cpp \
blackberrydeviceconfigurationwizardpages.cpp \
blackberrydeploystepfactory.cpp \
blackberryrunconfiguration.cpp \
blackberryrunconfigurationwidget.cpp \
blackberryrunconfigurationfactory.cpp \
blackberryruncontrolfactory.cpp \
blackberryruncontrol.cpp \
blackberrydebugsupport.cpp \
blackberryapplicationrunner.cpp \
blackberryconnect.cpp \
qnxutils.cpp \
blackberrydeviceconfigurationwidget.cpp \
qnxdeviceconfigurationfactory.cpp \
qnxdeviceconfigurationwizard.cpp \
qnxdeviceconfigurationwizardpages.cpp \
qnxrunconfiguration.cpp \
qnxruncontrolfactory.cpp \
qnxdebugsupport.cpp \
qnxdeploystepfactory.cpp \
qnxdeployconfigurationfactory.cpp \
qnxrunconfigurationfactory.cpp \
qnxruncontrol.cpp \
qnxqtversionfactory.cpp \
qnxqtversion.cpp \
qnxabstractqtversion.cpp \
bardescriptorfileimagewizardpage.cpp \
blackberrywizardextension.cpp \
blackberrydeviceconfiguration.cpp \
qnxdeployconfiguration.cpp \
qnxdeviceconfiguration.cpp \
blackberrydeployinformation.cpp \
pathchooserdelegate.cpp \
blackberryabstractdeploystep.cpp
HEADERS += qnxplugin.h\
qnxconstants.h \
blackberryqtversionfactory.h \
blackberryqtversion.h \
qnxbaseqtconfigwidget.h \
blackberrydeployconfigurationfactory.h \
blackberrydeployconfiguration.h \
blackberrycreatepackagestep.h \
blackberrycreatepackagestepconfigwidget.h \
blackberrycreatepackagestepfactory.h \
blackberrydeploystep.h \
blackberrydeployconfigurationwidget.h \
blackberrydeploystepconfigwidget.h \
blackberrydeviceconfigurationfactory.h \
blackberrydeviceconfigurationwizard.h \
blackberrydeviceconfigurationwizardpages.h \
blackberrydeploystepfactory.h \
blackberryrunconfiguration.h \
blackberryrunconfigurationwidget.h \
blackberryrunconfigurationfactory.h \
blackberryruncontrolfactory.h \
blackberryruncontrol.h \
blackberrydebugsupport.h \
blackberryapplicationrunner.h \
blackberryconnect.h \
qnxutils.h \
blackberrydeviceconfigurationwidget.h \
qnxdeviceconfigurationfactory.h \
qnxdeviceconfigurationwizard.h \
qnxdeviceconfigurationwizardpages.h \
qnxrunconfiguration.h \
qnxruncontrolfactory.h \
qnxdebugsupport.h \
qnxdeploystepfactory.h \
qnxdeployconfigurationfactory.h \
qnxrunconfigurationfactory.h \
qnxruncontrol.h \
qnxqtversionfactory.h \
qnxqtversion.h \
qnxabstractqtversion.h \
bardescriptorfileimagewizardpage.h \
blackberrywizardextension.h \
blackberrydeviceconfiguration.h \
qnxdeployconfiguration.h \
qnxdeviceconfiguration.h \
blackberrydeployinformation.h \
pathchooserdelegate.h \
blackberryabstractdeploystep.h
FORMS += \
blackberrydeviceconfigurationwizardsetuppage.ui \
blackberryrunconfigurationwidget.ui \
blackberrydeviceconfigurationwizardsshkeypage.ui \
blackberrydeployconfigurationwidget.ui \
blackberrydeviceconfigurationwidget.ui \
qnxbaseqtconfigwidget.ui \
bardescriptorfileimagewizardpage.ui
DEFINES += QT_NO_CAST_TO_ASCII QT_NO_CAST_FROM_ASCII
RESOURCES += \
qnx.qrc
|