~kalikiana/ubuntu-sdk-ide/nondesktopsnapcraft

« back to all changes in this revision

Viewing changes to dist/qtcreator/src/plugins/ubuntu/src/ubuntu/ubuntuconstants.h

  • Committer: Tarmac
  • Author(s): Benjamin Zeller
  • Date: 2016-11-07 12:08:43 UTC
  • mfrom: (161.1.6 ubuntu-sdk-ide)
  • Revision ID: tarmac-20161107120843-3rj83ckfgvkay0s2
- Support running snapcraft projects from the IDE
- Patch RunControlFactories to disable unwanted RC modes for snapcraft projects.

Approved by ubuntu-sdk-build-bot, Zoltan Balogh.

Show diffs side-by-side

added added

removed removed

Lines of Context:
260
260
const char  FEATURE_UBUNTU_TRUSTY[] = "Ubuntu.Wizards.FeatureUbuntuTrusty";
261
261
const char  FEATURE_UBUNTU_UTOPIC[] = "Ubuntu.Wizards.FeatureUbuntuUtopic";
262
262
 
263
 
const char  DISTRIB_ID[] = "DISTRIB_ID=";
264
 
const char  DISTRIB_CODENAME[] = "DISTRIB_CODENAME=";
265
 
const char  DISTRIB_RELEASE[] = "DISTRIB_RELEASE=";
266
 
const char  DISTRIB_DESCRIPTION[] = "DISTRIB_DESCRIPTION=";
267
 
const char  LSB_RELEASE[] = "/etc/lsb-release";
268
 
 
269
 
const char  PRECISE[] = "precise";
270
 
const char  QUANTAL[] = "quantal";
271
 
const char  RARING[] = "raring";
272
 
const char  SAUCY[] = "saucy";
273
 
const char  TRUSTY[] = "trusty";
274
 
const char  UTOPIC[] = "utopic";
275
 
 
276
263
const char  PLATFORM_DESKTOP[] = "Desktop";
277
264
const char  PLATFORM_DESKTOP_DISPLAYNAME[] = "Ubuntu %0";
 
265
 
 
266
const QString PRECISE (QStringLiteral("precise"));
 
267
const QString QUANTAL (QStringLiteral("quantal"));
 
268
const QString RARING  (QStringLiteral("raring"));
 
269
const QString SAUCY   (QStringLiteral("saucy"));
 
270
const QString TRUSTY  (QStringLiteral("trusty"));
 
271
const QString UTOPIC  (QStringLiteral("utopic"));
 
272
const QString VIVID   (QStringLiteral("vivid"));
 
273
const QString WILY    (QStringLiteral("wily"));
278
274
*/
279
275
 
 
276
const QString XENIAL  (QStringLiteral("xenial"));
 
277
 
280
278
const char  TASK_DEVICE_SCRIPT[] = "Ubuntu.Task.DeviceScript";
281
279
 
282
280
const char  UBUNTU_SETTINGS_ICON[] = ":/ubuntu/images/ubuntu-32.png";
400
398
const char SNAPCRAFT_BUILDCONFIGURATION_ID[]  = "SnapcraftProjectManager.SnapcraftBuildconfiguration.Id";
401
399
const char SNAPCRAFT_RSYNCBUILSSTEP_ID[]      = "SnapcraftProjectManager.SnapcraftRsyncStep.Id";
402
400
const char SNAPCRAFT_BUILDSTEP_ID[]           = "SnapcraftProjectManager.SnapcraftStep.Id";
 
401
const char SNAP_RUNCONFIGURATION_ID[]         = "SnapcraftProjectManager.SnapRunConfiguration.Id";
403
402
 
404
403
 
405
404