2022-02-01 12:18:21 +01:00
|
|
|
import qbs.FileInfo
|
|
|
|
|
|
|
|
|
|
DynamicLibrary {
|
2023-09-19 18:22:48 +02:00
|
|
|
condition: !qtc.present || qtc.withAutotests
|
2022-02-01 12:18:21 +01:00
|
|
|
name: "Manual Test Simple Plugin"
|
|
|
|
|
targetName: "simple_test_plugin"
|
|
|
|
|
|
2023-09-19 18:22:48 +02:00
|
|
|
Depends { name: "qtc"; required: false }
|
2022-02-01 12:18:21 +01:00
|
|
|
Depends { name: "Qt.core" }
|
|
|
|
|
|
|
|
|
|
files: [ "simple_test_plugin.cpp" ]
|
|
|
|
|
|
|
|
|
|
destinationDirectory: FileInfo.joinPaths(
|
|
|
|
|
FileInfo.path(project.buildDirectory + '/'
|
|
|
|
|
+ FileInfo.relativePath(project.ide_source_tree,
|
|
|
|
|
sourceDirectory)),
|
|
|
|
|
"simple")
|
|
|
|
|
}
|