Ios: Enable plugin for qbs build.

There is no reason why for qbs the plugin should be built on OS X only,
when the qmake build has no such restriction.

Change-Id: I8486ac20b6708c542b2920e946446ba382e0b75c
Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
This commit is contained in:
Christian Kandeler
2014-07-07 15:38:08 +02:00
parent 50a76930c2
commit bf526f4cd1

View File

@@ -4,7 +4,6 @@ import QtcPlugin
QtcPlugin {
name: "Ios"
condition: qbs.targetOS.contains("osx")
Depends { name: "Core" }
Depends { name: "ProjectExplorer" }
@@ -16,7 +15,7 @@ QtcPlugin {
Depends { name: "Qt"; submodules: ["widgets", "xml", "network"] }
cpp.includePaths: base.concat("../../shared")
cpp.frameworks: base.concat(["CoreFoundation", "IOKit"])
cpp.frameworks: base.concat(qbs.targetOS.contains("osx") ? ["CoreFoundation", "IOKit"] : [])
files: [
"ios.qrc",