forked from qt-creator/qt-creator
Amends b822b3f9e2.
Change-Id: Ibbed286a8626396319738194f417cedc84332011
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
16 lines
310 B
QML
16 lines
310 B
QML
import qbs.FileInfo
|
|
|
|
QtcManualtest {
|
|
name: "Manual test plugin2"
|
|
targetName: "plugin2"
|
|
type: [ "dynamiclibrary" ]
|
|
destinationDirectory: FileInfo.cleanPath(FileInfo.joinPaths(base , ".."))
|
|
|
|
Depends { name: "ExtensionSystem" }
|
|
|
|
files: [
|
|
"plugin2.cpp",
|
|
"plugin2.h"
|
|
]
|
|
}
|