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