Fix qbs plugins path on OS X.

Change-Id: I6f6c88fdc9925e308b3032a41b4e1400a8e32952
Reviewed-by: Jake Petroules <jake.petroules@petroules.com>
This commit is contained in:
Christian Kandeler
2014-06-25 16:28:25 +02:00
parent e65236f9a7
commit c49cfcd6c7

View File

@@ -29,7 +29,9 @@ Project {
? ["@loader_path/" + FileInfo.relativePath(appInstallDir, libInstallDir)] ? ["@loader_path/" + FileInfo.relativePath(appInstallDir, libInstallDir)]
: ["$ORIGIN/..", "$ORIGIN/../" + project.ide_library_path] : ["$ORIGIN/..", "$ORIGIN/../" + project.ide_library_path]
property string resourcesInstallDir: project.ide_data_path + "/qbs" 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 appInstallDir: project.ide_bin_path
property string relativePluginsPath: FileInfo.relativePath(appInstallDir, pluginsInstallDir) property string relativePluginsPath: FileInfo.relativePath(appInstallDir, pluginsInstallDir)
property string relativeSearchPath: FileInfo.relativePath(appInstallDir, property string relativeSearchPath: FileInfo.relativePath(appInstallDir,