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-04-10 15:56:23 +02: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"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|