aboutsummaryrefslogtreecommitdiffstats
path: root/src/app
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2019-06-07 15:12:01 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2019-06-07 13:15:42 +0000
commit5636686aa0bbdde50e8fa8034628153abf699d34 (patch)
treeb944f77b714c23c6581a775c0d368f91371cf5c9 /src/app
parent9ea159ca229f94ade6327fdd5873401293636308 (diff)
Fix warnings in qbs build on macOS
Amends fc04ec1c3e. Change-Id: I17f41ad1dc02727da8431b55cb3b14d4594fe1af Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'src/app')
-rw-r--r--src/app/app.qbs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/app/app.qbs b/src/app/app.qbs
index 3ed4eb8fde..a866a2ecdb 100644
--- a/src/app/app.qbs
+++ b/src/app/app.qbs
@@ -26,8 +26,14 @@ QtcProduct {
property bool qtcRunnable: true
bundle.identifier: qtc.ide_bundle_identifier
+
+ // Some of these are in here only to override the entries added to app-Info.plist with other
+ // build systems in mind.
bundle.infoPlist: ({
- "NSHumanReadableCopyright": qtc.qtcreator_copyright_string
+ "NSHumanReadableCopyright": qtc.qtcreator_copyright_string,
+ "CFBundleExecutable": qtc.ide_app_target,
+ "CFBundleIdentifier": qtc.ide_bundle_identifier,
+ "CFBundleVersion": version
})
cpp.rpaths: qbs.targetOS.contains("macos") ? ["@executable_path/../Frameworks"]