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