Fix warnings in qbs build on macOS

Amends fc04ec1c3e.

Change-Id: I17f41ad1dc02727da8431b55cb3b14d4594fe1af
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
Christian Kandeler
2019-06-07 15:12:01 +02:00
parent 9ea159ca22
commit 5636686aa0

View File

@@ -26,8 +26,14 @@ QtcProduct {
property bool qtcRunnable: true property bool qtcRunnable: true
bundle.identifier: qtc.ide_bundle_identifier 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: ({ 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"] cpp.rpaths: qbs.targetOS.contains("macos") ? ["@executable_path/../Frameworks"]