aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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"]