forked from qt-creator/qt-creator
10 lines
231 B
QML
10 lines
231 B
QML
|
|
import qbs
|
||
|
|
import "../../../plugin.qbs" as Plugin
|
||
|
|
|
||
|
|
Plugin {
|
||
|
|
name: "circular_plugin2"
|
||
|
|
filesToCopy: "plugin.xml"
|
||
|
|
files: ["plugin2.h", "plugin2.cpp"].concat(filesToCopy)
|
||
|
|
cpp.defines: base.concat(["PLUGIN2_LIBRARY"])
|
||
|
|
}
|