forked from qt-creator/qt-creator
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:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user