blob: 4c97412990c290f5af77f947845abc55c5aa0b17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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"
]
}
|