blob: eca6791c02c3f860fcd82999feeb42f580375c22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import qbs.FileInfo
DynamicLibrary {
name: "Manual Test Simple Plugin"
targetName: "simple_test_plugin"
Depends { name: "qtc" }
Depends { name: "Qt.core" }
files: [ "simple_test_plugin.cpp" ]
destinationDirectory: FileInfo.joinPaths(
FileInfo.path(project.buildDirectory + '/'
+ FileInfo.relativePath(project.ide_source_tree,
sourceDirectory)),
"simple")
}
|