summaryrefslogtreecommitdiff
path: root/src/src.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2014-06-25 16:28:25 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2014-06-26 20:53:43 +0200
commitc49cfcd6c7ee0731307b74cd9bcbac7d46e5b369 (patch)
treeca70f4f64089caeebc0fe4ec5776118c4f8ebe72 /src/src.qbs
parente65236f9a78ffd81e36ad870ca4c43b1b8a94004 (diff)
downloadqt-creator-c49cfcd6c7ee0731307b74cd9bcbac7d46e5b369.tar.gz
Fix qbs plugins path on OS X.
Change-Id: I6f6c88fdc9925e308b3032a41b4e1400a8e32952 Reviewed-by: Jake Petroules <jake.petroules@petroules.com>
Diffstat (limited to 'src/src.qbs')
-rw-r--r--src/src.qbs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/src.qbs b/src/src.qbs
index 5301b6a4f5..3680e8d006 100644
--- a/src/src.qbs
+++ b/src/src.qbs
@@ -29,7 +29,9 @@ Project {
? ["@loader_path/" + FileInfo.relativePath(appInstallDir, libInstallDir)]
: ["$ORIGIN/..", "$ORIGIN/../" + project.ide_library_path]
property string resourcesInstallDir: project.ide_data_path + "/qbs"
- property string pluginsInstallDir: project.libDirName + "/qtcreator"
+ property string pluginsInstallDir: qbs.targetOS.contains("windows")
+ ? project.libDirName + "/qtcreator"
+ : project.ide_library_path
property string appInstallDir: project.ide_bin_path
property string relativePluginsPath: FileInfo.relativePath(appInstallDir, pluginsInstallDir)
property string relativeSearchPath: FileInfo.relativePath(appInstallDir,