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
|
import qbs.base 1.0
import "../QtcPlugin.qbs" as QtcPlugin
QtcPlugin {
name: "Madde"
Depends { name: "Debugger" }
Depends { name: "ProjectExplorer" }
Depends { name: "Qt4ProjectManager" }
Depends { name: "QtSupport" }
Depends { name: "RemoteLinux" }
Depends { name: "Qt.gui" }
files: [
"debianmanager.cpp",
"debianmanager.h",
"madde_exports.h",
"maddedevice.cpp",
"maddedevice.h",
"maddedeviceconfigurationfactory.cpp",
"maddedeviceconfigurationfactory.h",
"maddedevicetester.cpp",
"maddedevicetester.h",
"maddeplugin.cpp",
"maddeplugin.h",
"maddeqemustartstep.cpp",
"maddeqemustartstep.h",
"maddeuploadandinstallpackagesteps.cpp",
"maddeuploadandinstallpackagesteps.h",
"maemoapplicationrunnerhelperactions.cpp",
"maemoapplicationrunnerhelperactions.h",
"maemoconstants.h",
"maemodeploybymountsteps.cpp",
"maemodeploybymountsteps.h",
"maemodeploymentmounter.cpp",
"maemodeploymentmounter.h",
"maemodeploystepfactory.cpp",
"maemodeploystepfactory.h",
"maemodeviceconfigwizard.cpp",
"maemodeviceconfigwizard.h",
"maemodeviceconfigwizardkeycreationpage.ui",
"maemodeviceconfigwizardkeydeploymentpage.ui",
"maemodeviceconfigwizardpreviouskeysetupcheckpage.ui",
"maemodeviceconfigwizardreusekeyscheckpage.ui",
"maemodeviceconfigwizardstartpage.ui",
"maemoglobal.cpp",
"maemoglobal.h",
"maemoinstalltosysrootstep.cpp",
"maemoinstalltosysrootstep.h",
"maemomountspecification.cpp",
"maemomountspecification.h",
"maemopackagecreationfactory.cpp",
"maemopackagecreationfactory.h",
"maemopackagecreationstep.cpp",
"maemopackagecreationstep.h",
"maemopackagecreationwidget.cpp",
"maemopackagecreationwidget.h",
"maemopackagecreationwidget.ui",
"maemopackageinstaller.cpp",
"maemopackageinstaller.h",
"maemopublishedprojectmodel.cpp",
"maemopublishedprojectmodel.h",
"maemopublisherfremantlefree.cpp",
"maemopublisherfremantlefree.h",
"maemopublishingbuildsettingspagefremantlefree.cpp",
"maemopublishingbuildsettingspagefremantlefree.h",
"maemopublishingbuildsettingspagefremantlefree.ui",
"maemopublishingfileselectiondialog.cpp",
"maemopublishingfileselectiondialog.h",
"maemopublishingfileselectiondialog.ui",
"maemopublishingresultpagefremantlefree.cpp",
"maemopublishingresultpagefremantlefree.h",
"maemopublishingresultpagefremantlefree.ui",
"maemopublishinguploadsettingspagefremantlefree.cpp",
"maemopublishinguploadsettingspagefremantlefree.h",
"maemopublishinguploadsettingspagefremantlefree.ui",
"maemopublishingwizardfactories.cpp",
"maemopublishingwizardfactories.h",
"maemopublishingwizardfremantlefree.cpp",
"maemopublishingwizardfremantlefree.h",
"maemoqemumanager.cpp",
"maemoqemumanager.h",
"maemoqemuruntime.h",
"maemoqemuruntimeparser.cpp",
"maemoqemuruntimeparser.h",
"maemoqemusettings.cpp",
"maemoqemusettings.h",
"maemoqemusettingswidget.cpp",
"maemoqemusettingswidget.h",
"maemoqemusettingswidget.ui",
"maemoqtversion.cpp",
"maemoqtversion.h",
"maemoqtversionfactory.cpp",
"maemoqtversionfactory.h",
"maemoremotecopyfacility.cpp",
"maemoremotecopyfacility.h",
"maemoremotemounter.cpp",
"maemoremotemounter.h",
"maemoremotemountsmodel.cpp",
"maemoremotemountsmodel.h",
"maemorunconfiguration.cpp",
"maemorunconfiguration.h",
"maemorunconfigurationwidget.cpp",
"maemorunconfigurationwidget.h",
"maemorunfactories.cpp",
"maemorunfactories.h",
"maemosettingspages.cpp",
"maemosettingspages.h",
"qt-maemo.qrc",
"qt4maemodeployconfiguration.cpp",
"qt4maemodeployconfiguration.h",
]
}
|