blob: a6bf22abf804ae4eb70533598faee71a6bae0df7 (
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
|
TEMPLATE = lib
TARGET = Ios
include(../../qtcreatorplugin.pri)
QT += xml network
macx: LIBS += -framework CoreFoundation -framework IOKit
HEADERS += \
iosconstants.h \
iosconfigurations.h \
iosrunconfiguration.h \
iossettingspage.h \
iossettingswidget.h \
iosrunner.h \
iosdsymbuildstep.h \
iosqtversion.h \
iosplugin.h \
iosdevicefactory.h \
iosdevice.h \
iossimulator.h \
iossimulatorfactory.h \
iosprobe.h \
iosbuildstep.h \
iostoolhandler.h \
iosdeploystep.h \
iosdeploystepwidget.h \
simulatorcontrol.h \
iosbuildconfiguration.h \
iosbuildsettingswidget.h \
createsimulatordialog.h \
simulatoroperationdialog.h \
simulatorinfomodel.h
SOURCES += \
iosconfigurations.cpp \
iosrunconfiguration.cpp \
iossettingspage.cpp \
iossettingswidget.cpp \
iosrunner.cpp \
iosdsymbuildstep.cpp \
iosqtversion.cpp \
iosplugin.cpp \
iosdevicefactory.cpp \
iosdevice.cpp \
iossimulator.cpp \
iossimulatorfactory.cpp \
iosprobe.cpp \
iosbuildstep.cpp \
iostoolhandler.cpp \
iosdeploystep.cpp \
iosdeploystepwidget.cpp \
simulatorcontrol.cpp \
iosbuildconfiguration.cpp \
iosbuildsettingswidget.cpp \
createsimulatordialog.cpp \
simulatoroperationdialog.cpp \
simulatorinfomodel.cpp
FORMS += \
iossettingswidget.ui \
iosbuildstep.ui \
iosdeploystepwidget.ui \
iospresetbuildstep.ui \
iosbuildsettingswidget.ui \
createsimulatordialog.ui \
simulatoroperationdialog.ui
DEFINES += IOS_LIBRARY
RESOURCES += ios.qrc
win32: LIBS += -lws2_32
|