blob: 35205d52c52e6f40f2edec102cb3c60b0c80e378 (
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
|
TEMPLATE = lib
TARGET = Madde
QT += network
include(../../qtcreatorplugin.pri)
include(madde_dependencies.pri)
HEADERS += \
madde_exports.h \
maddeplugin.h \
debianmanager.h \
maemoconstants.h \
maemorunconfigurationwidget.h \
maemorunfactories.h \
maemosettingspages.h \
maemopackagecreationstep.h \
maemopackagecreationfactory.h \
maemopackagecreationwidget.h \
maemoqemumanager.h \
maemodeploystepfactory.h \
maemoglobal.h \
maemoremotemountsmodel.h \
maemomountspecification.h \
maemoremotemounter.h \
maemopublishingwizardfactories.h \
maemopublishingbuildsettingspagefremantlefree.h \
maemopublishingfileselectiondialog.h \
maemopublishedprojectmodel.h \
maemopublishinguploadsettingspagefremantlefree.h \
maemopublishingwizardfremantlefree.h \
maemopublishingresultpagefremantlefree.h \
maemopublisherfremantlefree.h \
maemoqemuruntime.h \
maemoqemuruntimeparser.h \
maemoqemusettingswidget.h \
maemoqemusettings.h \
qt4maemodeployconfiguration.h \
maemodeviceconfigwizard.h \
maemoinstalltosysrootstep.h \
maemodeploymentmounter.h \
maemopackageinstaller.h \
maemoremotecopyfacility.h \
maemoqtversionfactory.h \
maemoqtversion.h \
maemorunconfiguration.h \
maddeuploadandinstallpackagesteps.h \
maemodeploybymountsteps.h \
maddedevicetester.h \
maddedeviceconfigurationfactory.h \
maddedevice.h \
maemoapplicationrunnerhelperactions.h
SOURCES += \
maddeplugin.cpp \
debianmanager.cpp \
maemorunconfigurationwidget.cpp \
maemorunfactories.cpp \
maemosettingspages.cpp \
maemopackagecreationstep.cpp \
maemopackagecreationfactory.cpp \
maemopackagecreationwidget.cpp \
maemoqemumanager.cpp \
maemodeploystepfactory.cpp \
maemoglobal.cpp \
maemoremotemountsmodel.cpp \
maemomountspecification.cpp \
maemoremotemounter.cpp \
maemopublishingwizardfactories.cpp \
maemopublishingbuildsettingspagefremantlefree.cpp \
maemopublishingfileselectiondialog.cpp \
maemopublishedprojectmodel.cpp \
maemopublishinguploadsettingspagefremantlefree.cpp \
maemopublishingwizardfremantlefree.cpp \
maemopublishingresultpagefremantlefree.cpp \
maemopublisherfremantlefree.cpp \
maemoqemuruntimeparser.cpp \
maemoqemusettingswidget.cpp \
maemoqemusettings.cpp \
qt4maemodeployconfiguration.cpp \
maemodeviceconfigwizard.cpp \
maemoinstalltosysrootstep.cpp \
maemodeploymentmounter.cpp \
maemopackageinstaller.cpp \
maemoremotecopyfacility.cpp \
maemoqtversionfactory.cpp \
maemoqtversion.cpp \
maddedeviceconfigurationfactory.cpp \
maddeuploadandinstallpackagesteps.cpp \
maemodeploybymountsteps.cpp \
maddedevicetester.cpp \
maemorunconfiguration.cpp \
maddedevice.cpp \
maemoapplicationrunnerhelperactions.cpp
FORMS += \
maemopackagecreationwidget.ui \
maemopublishingbuildsettingspagefremantlefree.ui \
maemopublishingfileselectiondialog.ui \
maemopublishinguploadsettingspagefremantlefree.ui \
maemopublishingresultpagefremantlefree.ui \
maemoqemusettingswidget.ui \
maemodeviceconfigwizardstartpage.ui \
maemodeviceconfigwizardpreviouskeysetupcheckpage.ui \
maemodeviceconfigwizardreusekeyscheckpage.ui \
maemodeviceconfigwizardkeycreationpage.ui \
maemodeviceconfigwizardkeydeploymentpage.ui
RESOURCES += qt-maemo.qrc
DEFINES += QT_NO_CAST_TO_ASCII
DEFINES += MADDE_LIBRARY
|