forked from qt-creator/qt-creator
Change-Id: Ia3e4df528d391580064efbeeab75016335a4299d Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
26 lines
470 B
QML
26 lines
470 B
QML
import qbs.base 1.0
|
|
|
|
import "../QtcPlugin.qbs" as QtcPlugin
|
|
|
|
QtcPlugin {
|
|
name: "HelloWorld"
|
|
|
|
Depends { name: "Core" }
|
|
Depends { name: "cpp" }
|
|
Depends { name: "Qt"; submodules: ["widgets", "xml", "network", "script"] }
|
|
|
|
cpp.includePaths: [
|
|
"..",
|
|
"../../libs",
|
|
buildDirectory
|
|
]
|
|
|
|
files: [
|
|
"helloworldplugin.h",
|
|
"helloworldwindow.h",
|
|
"helloworldplugin.cpp",
|
|
"helloworldwindow.cpp"
|
|
]
|
|
}
|
|
|