aboutsummaryrefslogtreecommitdiffstats
path: root/src/app
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2017-12-08 11:03:51 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2018-01-12 10:08:22 +0000
commit3c75d3aec1a4e4f811a001a5ef3fa07f9cc0caab (patch)
tree8651957688a034f377ae761d68d9d189b95c9e5b /src/app
parent7a2e1e29cb38b339780938a3e582110e566b5631 (diff)
qbs build: Install debug info alongside binaries
... if separate debug info is enabled. Change-Id: I15a02b11e7df18719074b9bc503fe2c207f8bf00 Reviewed-by: Jake Petroules <jake.petroules@qt.io> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'src/app')
-rw-r--r--src/app/app.qbs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/app/app.qbs b/src/app/app.qbs
index d0c2885c461..0a5bc82583d 100644
--- a/src/app/app.qbs
+++ b/src/app/app.qbs
@@ -22,8 +22,7 @@ QtcProduct {
property bool isBundle: qbs.targetOS.contains("darwin") && bundle.isBundle
installDir: isBundle ? qtc.ide_app_path : qtc.ide_bin_path
- installTags: isBundle ? ["bundle.content"] : base
- installSourceBase: isBundle ? buildDirectory : base
+ installTags: (isBundle ? ["bundle.content"] : base).concat(["debuginfo_app"])
property bool qtcRunnable: true
cpp.rpaths: qbs.targetOS.contains("macos") ? ["@executable_path/../Frameworks"]