summaryrefslogtreecommitdiff
path: root/share/qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2021-11-25 15:54:59 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2021-12-13 09:27:30 +0000
commit8538cb992043eb680c1b7acaf133e4147e1db86a (patch)
tree3417bc4787d2ed881ac400ceea31ffa6c261a5f1 /share/qbs
parentd5fa3a4eb279c1ad9f0247156e5cf015261e39f0 (diff)
downloadqbs-8538cb992043eb680c1b7acaf133e4147e1db86a.tar.gz
Convenience products: Make installDebugInformation consistent
... with install by default. If we have an installable product with debug info, it's likely we want to install the debug info as well. Task-number: QTCREATORBUG-26419 Change-Id: I6057bcd1620bcf207b38397b7f6f45be4187e44e Reviewed-by: Ivan Komissarov <ABBAPOH@gmail.com>
Diffstat (limited to 'share/qbs')
-rw-r--r--share/qbs/imports/qbs/base/NativeBinary.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qbs/imports/qbs/base/NativeBinary.qbs b/share/qbs/imports/qbs/base/NativeBinary.qbs
index c51f132ee..900ed9faa 100644
--- a/share/qbs/imports/qbs/base/NativeBinary.qbs
+++ b/share/qbs/imports/qbs/base/NativeBinary.qbs
@@ -39,7 +39,7 @@ Product {
// or if it is multiplexed and it's the aggregate product
readonly property bool _installable: !multiplexed || !aggregate || !multiplexConfigurationId
- property bool installDebugInformation: false
+ property bool installDebugInformation: install
property string debugInformationInstallDir: installDir
Depends { name: "bundle"; condition: isForDarwin }