forked from qt-creator/qt-creator
13 lines
283 B
QML
13 lines
283 B
QML
|
|
import qbs
|
||
|
|
import "../../plugin.qbs" as Plugin
|
||
|
|
|
||
|
|
Plugin {
|
||
|
|
name: "pluginspec_test"
|
||
|
|
files: [
|
||
|
|
"testplugin.h", "testplugin.cpp",
|
||
|
|
"testplugin_global.h"
|
||
|
|
].concat(filesToCopy)
|
||
|
|
filesToCopy: "testplugin.xml"
|
||
|
|
cpp.defines: base.concat(["MYPLUGIN_LIBRARY"])
|
||
|
|
}
|