aboutsummaryrefslogtreecommitdiffstats
path: root/qbs/imports/QtcTool.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'qbs/imports/QtcTool.qbs')
-rw-r--r--qbs/imports/QtcTool.qbs10
1 files changed, 5 insertions, 5 deletions
diff --git a/qbs/imports/QtcTool.qbs b/qbs/imports/QtcTool.qbs
index a1f228e2b2..7d75ba5ae7 100644
--- a/qbs/imports/QtcTool.qbs
+++ b/qbs/imports/QtcTool.qbs
@@ -4,13 +4,13 @@ import qbs.FileInfo
QtcProduct {
type: ["application"]
consoleApplication: true
- installDir: project.ide_libexec_path
+ installDir: qtc.ide_libexec_path
cpp.rpaths: {
- var relativePathToLibs = FileInfo.relativePath('/' + project.ide_libexec_path,
- '/' + project.ide_library_path);
- var relativePathToPlugins = FileInfo.relativePath('/' + project.ide_libexec_path,
- '/' + project.ide_plugin_path);
+ var relativePathToLibs = FileInfo.relativePath('/' + qtc.ide_libexec_path,
+ '/' + qtc.ide_library_path);
+ var relativePathToPlugins = FileInfo.relativePath('/' + qtc.ide_libexec_path,
+ '/' + qtc.ide_plugin_path);
var prefix = qbs.targetOS.contains("osx") ? "@executable_path" : "$ORIGIN";
return [
FileInfo.joinPaths(prefix, relativePathToLibs),