2012-02-09 14:30:09 +01:00
|
|
|
import qbs.base 1.0
|
|
|
|
|
|
|
|
|
|
import "../QtcPlugin.qbs" as QtcPlugin
|
|
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "HelloWorld"
|
|
|
|
|
|
|
|
|
|
Depends { name: "Core" }
|
|
|
|
|
Depends { name: "cpp" }
|
2012-06-19 15:36:27 +08:00
|
|
|
Depends { name: "Qt"; submodules: ["widgets", "xml", "network", "script"] }
|
2012-02-09 14:30:09 +01:00
|
|
|
|
|
|
|
|
cpp.includePaths: [
|
|
|
|
|
"..",
|
|
|
|
|
"../../libs",
|
|
|
|
|
buildDirectory
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
files: [
|
|
|
|
|
"helloworldplugin.h",
|
|
|
|
|
"helloworldwindow.h",
|
|
|
|
|
"helloworldplugin.cpp",
|
|
|
|
|
"helloworldwindow.cpp"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|