Files
qt-creator/src/plugins/helloworld/helloworld.qbs

26 lines
470 B
QML
Raw Normal View History

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"
]
}