aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/extensionsystem/plugin.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/extensionsystem/plugin.qbs')
-rw-r--r--tests/auto/extensionsystem/plugin.qbs5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/auto/extensionsystem/plugin.qbs b/tests/auto/extensionsystem/plugin.qbs
index 73dcc82d25..a0496e7dbb 100644
--- a/tests/auto/extensionsystem/plugin.qbs
+++ b/tests/auto/extensionsystem/plugin.qbs
@@ -8,12 +8,13 @@ DynamicLibrary {
Depends { name: "cpp" }
Depends { name: "Qt.core" }
Depends { name: "copyable_resource" }
+ Depends { name: "qtc" }
targetName: QtcFunctions.qtLibraryName(qbs, name.split('_')[1])
destinationDirectory: project.buildDirectory + '/'
+ FileInfo.relativePath(project.ide_source_tree, sourceDirectory)
cpp.rpaths: [
- project.buildDirectory + "/" + project.libDirName + "/qtcreator",
- project.buildDirectory + "/" + project.libDirName + "/qtcreator/plugins"
+ project.buildDirectory + "/" + qtc.libDirName + "/qtcreator",
+ project.buildDirectory + "/" + qtc.libDirName + "/qtcreator/plugins"
].concat(additionalRPaths)
cpp.cxxLanguageVersion: "c++11"
property pathList additionalRPaths: []