aboutsummaryrefslogtreecommitdiffstats
path: root/qtcreator.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2015-07-03 15:39:49 +0200
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-07-09 09:08:01 +0000
commit6d5a5aff9462b4253047f0ed2707ffa2e3497a19 (patch)
tree8098bf6e2532402e536ff7f4da653a2f9ba13803 /qtcreator.qbs
parentbc6b81fb50045bcfd6f789e7a4998ea682220b7a (diff)
Use a proper libexec path for Unix builds.
Change-Id: I036c806af47f07e60408a90d3a4e181a6773f866 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Diffstat (limited to 'qtcreator.qbs')
-rw-r--r--qtcreator.qbs5
1 files changed, 3 insertions, 2 deletions
diff --git a/qtcreator.qbs b/qtcreator.qbs
index 9bd047c860..b2dd649476 100644
--- a/qtcreator.qbs
+++ b/qtcreator.qbs
@@ -41,8 +41,9 @@ Project {
? ide_app_target + ".app/Contents/Resources"
: "share/qtcreator"
property string ide_libexec_path: qbs.targetOS.contains("osx")
- ? ide_data_path
- : ide_app_path
+ ? ide_data_path : qbs.targetOS.contains("windows")
+ ? ide_app_path
+ : "libexec/qtcreator"
property string ide_doc_path: qbs.targetOS.contains("osx")
? ide_data_path + "/doc"
: "share/doc/qtcreator"