aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/shared
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2013-06-05 16:46:12 -0400
committerJoerg Bornemann <joerg.bornemann@digia.com>2013-06-18 10:52:11 +0200
commitf20c3e06bf517a6e23d20afddd0ba36bfd611244 (patch)
tree232280ae31b609e6d1369fd37ec1414285770da4 /src/app/shared
parenta213f293f525759342d5e73d497858d728168bae (diff)
Change targetOS and hostOS to lists, and remove targetPlatform.
Change-Id: I33317c857a319e0fa25c9e0d0cc69abc4ad3fabb Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'src/app/shared')
-rw-r--r--src/app/shared/specialplatformssetup.cpp1
-rw-r--r--src/app/shared/specialplatformssetup.h3
2 files changed, 1 insertions, 3 deletions
diff --git a/src/app/shared/specialplatformssetup.cpp b/src/app/shared/specialplatformssetup.cpp
index 8b7afa829..5725a042a 100644
--- a/src/app/shared/specialplatformssetup.cpp
+++ b/src/app/shared/specialplatformssetup.cpp
@@ -149,7 +149,6 @@ void SpecialPlatformsSetup::registerProfile(const PlatformInfo &platformInfo)
profile.setValue(QLatin1String("qbs.toolchain"), QStringList(QLatin1String("gcc")));
profile.setValue(QLatin1String("qbs.endianness"), QLatin1String("little"));
profile.setValue(QLatin1String("qbs.targetOS"), platformInfo.targetOS);
- profile.setValue(QLatin1String("qbs.targetPlatform"), platformInfo.targetPlatform);
profile.setValue(QLatin1String("qbs.sysroot"), platformInfo.sysrootDir);
profile.setValue(QLatin1String("cpp.toolchainInstallPath"), platformInfo.toolchainDir);
diff --git a/src/app/shared/specialplatformssetup.h b/src/app/shared/specialplatformssetup.h
index b26b903d0..047bfce36 100644
--- a/src/app/shared/specialplatformssetup.h
+++ b/src/app/shared/specialplatformssetup.h
@@ -52,8 +52,7 @@ public:
{
public:
QString name;
- QString targetOS;
- QStringList targetPlatform;
+ QStringList targetOS;
QString toolchainDir;
QString compilerName;
QStringList cFlags;