forked from qt-creator/qt-creator
Fix qbs plugins path on OS X.
Change-Id: I6f6c88fdc9925e308b3032a41b4e1400a8e32952 Reviewed-by: Jake Petroules <jake.petroules@petroules.com>
This commit is contained in:
@@ -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,
|
||||
|
Reference in New Issue
Block a user