~ubuntu-branches/ubuntu/trusty/qtcreator-plugin-ubuntu/trusty

« back to all changes in this revision

Viewing changes to src/ubuntu/ubuntu.pro

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Benjamin Zeller
  • Date: 2014-04-10 16:54:54 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20140410165454-j9syoh0jx6azy7g1
Tags: 3.0.1+14.04.20140410.1-0ubuntu1
[ Benjamin Zeller ]
Added Toolchains and Kit support to automatically.   detect a
available click chroot Added Devicesupport, connected Ubuntu devices
are.   automatically registered in QtCreator and can be set   for
different kits Added Deploysupport(CMake), the projects contents are
uploaded.   automatically using SSH after running make install on a
local   directory Added Run and Debugsupport: the command that
should be run.   on the device is read from the desktop file in the
deployed   directory. This means C+and QML debugging work as well
as QML Profiling Dynamically forward ports, depending on adb
forward --list.   output. Adb Server is not restarted by default
anymore, only a press.   on the refresh button will trigger the
restart. That will fix   problems with failing adb scripts Added
local run support for Ubuntu projects .

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
    ubuntusettingsdeviceconnectivitywidget.ui \
21
21
    ubuntusettingsclickwidget.ui \
22
22
    ubuntuclickdialog.ui \
23
 
    ubuntucreatenewchrootdialog.ui
 
23
    ubuntucreatenewchrootdialog.ui \
 
24
    ubuntudeviceconfigurationwidget.ui
24
25
 
25
26
RESOURCES += \
26
27
    resources.qrc
40
41
    ubuntuproject.cpp \
41
42
    ubuntuprojectfile.cpp \
42
43
    ubuntuprojectnode.cpp \
43
 
    ubunturunconfiguration.cpp \
44
 
    ubunturunconfigurationfactory.cpp \
45
 
    ubunturuncontrol.cpp \
46
 
    ubunturuncontrolfactory.cpp \
47
44
    ubuntuprojectapp.cpp \
48
45
    ubuntuversion.cpp \
49
46
    ubuntufeatureprovider.cpp \
74
71
    ubuntuclicktool.cpp \
75
72
    ubuntucreatenewchrootdialog.cpp \
76
73
    ubuntuclickdialog.cpp \
77
 
    ubuntuvalidationresultmodel.cpp
 
74
    ubuntuvalidationresultmodel.cpp \
 
75
    clicktoolchain.cpp \
 
76
    ubuntukitmanager.cpp \
 
77
    ubuntucmaketool.cpp \
 
78
    ubuntucmakebuildconfiguration.cpp \
 
79
    ubuntudevicefactory.cpp \
 
80
    ubuntudevice.cpp \
 
81
    ubuntudeviceconfigurationwidget.cpp \
 
82
    ubunturemoterunconfiguration.cpp \
 
83
    ubuntucmakemakestep.cpp \
 
84
    ubuntuemulatornotifier.cpp \
 
85
    localportsmanager.cpp \
 
86
    ubuntuprojectguesser.cpp \
 
87
    ubuntulocaldeployconfiguration.cpp \
 
88
    ubunturemotedeployconfiguration.cpp \
 
89
    ubuntulocalrunconfigurationfactory.cpp \
 
90
    ubunturemoteruncontrolfactory.cpp \
 
91
    ubuntulocalrunconfiguration.cpp
78
92
 
79
93
HEADERS += \
80
94
    ubuntuplugin.h \
88
102
    ubuntuproject.h \
89
103
    ubuntuprojectfile.h \
90
104
    ubuntuprojectnode.h \
91
 
    ubunturunconfiguration.h \
92
 
    ubunturunconfigurationfactory.h \
93
 
    ubunturuncontrol.h \
94
 
    ubunturuncontrolfactory.h \
95
105
    ubuntuprojectapp.h \
96
106
    ubuntuversion.h \
97
107
    ubuntufeatureprovider.h \
122
132
    ubuntuclicktool.h \
123
133
    ubuntucreatenewchrootdialog.h \
124
134
    ubuntuclickdialog.h \
125
 
    ubuntuvalidationresultmodel.h
 
135
    ubuntuvalidationresultmodel.h \
 
136
    clicktoolchain.h \
 
137
    ubuntukitmanager.h \
 
138
    ubuntucmaketool.h \
 
139
    ubuntucmakebuildconfiguration.h \
 
140
    ubuntudevicefactory.h \
 
141
    ubuntudevice.h \
 
142
    ubuntudeviceconfigurationwidget.h \
 
143
    ubunturemoterunconfiguration.h \
 
144
    ubuntucmakemakestep.h \
 
145
    ubuntuemulatornotifier.h \
 
146
    localportsmanager.h \
 
147
    ubuntuprojectguesser.h \
 
148
    ubuntulocaldeployconfiguration.h \
 
149
    ubunturemotedeployconfiguration.h \
 
150
    ubuntulocalrunconfigurationfactory.h \
 
151
    ubunturemoteruncontrolfactory.h \
 
152
    ubuntulocalrunconfiguration.h
126
153