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