2014-03-11 11:30:14 +01:00
|
|
|
import qbs 1.0
|
2013-04-25 16:02:17 +02:00
|
|
|
|
2013-10-02 17:52:45 +02:00
|
|
|
import QtcPlugin
|
2013-04-25 16:02:17 +02:00
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "Ios"
|
|
|
|
|
condition: qbs.targetOS.contains("osx")
|
|
|
|
|
|
|
|
|
|
Depends { name: "Core" }
|
|
|
|
|
Depends { name: "ProjectExplorer" }
|
2013-10-29 16:19:24 +01:00
|
|
|
Depends { name: "QmakeProjectManager" }
|
2013-04-25 16:02:17 +02:00
|
|
|
Depends { name: "Debugger" }
|
|
|
|
|
Depends { name: "QtSupport" }
|
2014-03-26 09:58:55 +01:00
|
|
|
Depends { name: "AnalyzerBase" }
|
2013-04-25 16:02:17 +02:00
|
|
|
Depends { name: "Qt"; submodules: ["widgets", "xml", "network"] }
|
|
|
|
|
|
|
|
|
|
cpp.includePaths: base.concat("../../shared")
|
|
|
|
|
cpp.frameworks: base.concat(["CoreFoundation", "IOKit"])
|
|
|
|
|
|
|
|
|
|
files: [
|
|
|
|
|
"ios.qrc",
|
2014-03-26 09:58:55 +01:00
|
|
|
"iosanalyzersupport.cpp",
|
|
|
|
|
"iosanalyzersupport.h",
|
2013-04-25 16:02:17 +02:00
|
|
|
"iosbuildstep.cpp",
|
|
|
|
|
"iosbuildstep.h",
|
|
|
|
|
"iosbuildstep.ui",
|
|
|
|
|
"iosconfigurations.cpp",
|
|
|
|
|
"iosconfigurations.h",
|
|
|
|
|
"iosconstants.h",
|
|
|
|
|
"iosdebugsupport.cpp",
|
|
|
|
|
"iosdebugsupport.h",
|
|
|
|
|
"iosdeployconfiguration.cpp",
|
|
|
|
|
"iosdeployconfiguration.h",
|
|
|
|
|
"iosdeploystep.cpp",
|
|
|
|
|
"iosdeploystep.h",
|
|
|
|
|
"iosdeploystepfactory.cpp",
|
|
|
|
|
"iosdeploystepfactory.h",
|
|
|
|
|
"iosdeploystepwidget.cpp",
|
|
|
|
|
"iosdeploystepwidget.h",
|
|
|
|
|
"iosdeploystepwidget.ui",
|
|
|
|
|
"iosdevice.cpp",
|
|
|
|
|
"iosdevice.h",
|
|
|
|
|
"iosdevicefactory.cpp",
|
|
|
|
|
"iosdevicefactory.h",
|
2014-03-12 21:25:28 +01:00
|
|
|
"iosdsymbuildstep.cpp",
|
|
|
|
|
"iosdsymbuildstep.h",
|
2013-04-25 16:02:17 +02:00
|
|
|
"iosmanager.cpp",
|
|
|
|
|
"iosmanager.h",
|
|
|
|
|
"iosplugin.cpp",
|
|
|
|
|
"iosplugin.h",
|
2014-03-27 13:05:27 +01:00
|
|
|
"iospresetbuildstep.ui",
|
2013-04-25 16:02:17 +02:00
|
|
|
"iosprobe.cpp",
|
|
|
|
|
"iosprobe.h",
|
|
|
|
|
"iosqtversion.cpp",
|
|
|
|
|
"iosqtversion.h",
|
|
|
|
|
"iosqtversionfactory.cpp",
|
|
|
|
|
"iosqtversionfactory.h",
|
|
|
|
|
"iosrunconfiguration.cpp",
|
|
|
|
|
"iosrunconfiguration.h",
|
|
|
|
|
"iosrunconfiguration.ui",
|
|
|
|
|
"iosruncontrol.cpp",
|
|
|
|
|
"iosruncontrol.h",
|
|
|
|
|
"iosrunfactories.cpp",
|
|
|
|
|
"iosrunfactories.h",
|
|
|
|
|
"iosrunner.cpp",
|
|
|
|
|
"iosrunner.h",
|
|
|
|
|
"iossettingspage.cpp",
|
|
|
|
|
"iossettingspage.h",
|
|
|
|
|
"iossettingswidget.cpp",
|
|
|
|
|
"iossettingswidget.h",
|
|
|
|
|
"iossettingswidget.ui",
|
|
|
|
|
"iossimulator.cpp",
|
|
|
|
|
"iossimulator.h",
|
|
|
|
|
"iossimulatorfactory.cpp",
|
|
|
|
|
"iossimulatorfactory.h",
|
|
|
|
|
"iostoolhandler.cpp",
|
|
|
|
|
"iostoolhandler.h"
|
|
|
|
|
]
|
|
|
|
|
}
|