From 5636686aa0bbdde50e8fa8034628153abf699d34 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Fri, 7 Jun 2019 15:12:01 +0200 Subject: [PATCH] Fix warnings in qbs build on macOS Amends fc04ec1c3e. Change-Id: I17f41ad1dc02727da8431b55cb3b14d4594fe1af Reviewed-by: Alexandru Croitor --- src/app/app.qbs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/app/app.qbs b/src/app/app.qbs index 3ed4eb8fdef..a866a2ecdb5 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"]