summaryrefslogtreecommitdiff
path: root/qtcreator.qbs
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@digia.com>2014-08-26 13:26:21 +0200
committerEike Ziller <eike.ziller@digia.com>2014-09-02 09:24:10 +0200
commitdeea0022f7ea1bdc48ceafe57c2dfbfd848ac8a8 (patch)
tree6967b3292eea3db70ad282af9ef581c6e1bfbcf0 /qtcreator.qbs
parentfcf5c0ea202105ed17e1bc321993c5a3bc72d546 (diff)
downloadqt-creator-deea0022f7ea1bdc48ceafe57c2dfbfd848ac8a8.tar.gz
Fix library and plugin paths
OSX: Move libraries from PlugIns/ to Frameworks/ other: move QmlDesigner plugins to plugins directory Change-Id: Ia266a3514ce6a496061daa044b3781daae0bc272 Reviewed-by: Christian Stenger <christian.stenger@digia.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'qtcreator.qbs')
-rw-r--r--qtcreator.qbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/qtcreator.qbs b/qtcreator.qbs
index c0c6bfcea1..c04219488c 100644
--- a/qtcreator.qbs
+++ b/qtcreator.qbs
@@ -20,7 +20,7 @@ Project {
property string libDirName: "lib"
property string ide_library_path: {
if (qbs.targetOS.contains("osx"))
- return ide_app_target + ".app/Contents/PlugIns"
+ return ide_app_target + ".app/Contents/Frameworks"
else if (qbs.targetOS.contains("windows"))
return ide_app_path
else
@@ -28,7 +28,7 @@ Project {
}
property string ide_plugin_path: {
if (qbs.targetOS.contains("osx"))
- return ide_library_path
+ return ide_app_target + ".app/Contents/PlugIns"
else if (qbs.targetOS.contains("windows"))
return libDirName + "/qtcreator/plugins"
else