summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2022-10-19 13:04:12 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-02-07 21:03:24 +0000
commit47c5cbeca5e5e6a91929846186fd6f31acb7a18e (patch)
tree6ca7cb0140d020dbb59c7ee0f03d02987fdea9de
parentc724f6ec20f104ff9555e1f0e95cce54494f32a8 (diff)
qmake: Add CFBundleDevelopmentRegion to the macOS Info.plist
Aligns with what our CMake Info.plist has for macOS, what we do for both qmake and CMake on iOS, and what Xcode generates for new projects. The value is hard-coded to English instead of using $(DEVELOPMENT_LANGUAGE) as the file will be used by both the Makefile and Xcode generator, and only the latter does variable replacements for $(FOO). Task-number: QTBUG-63324 Change-Id: I87e1cb14b14a9746b3603016c2ac69c252d37ff6 Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io> (cherry picked from commit d4b0e0d02eeb46b400ac726115d840dd05c74c51) Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
-rw-r--r--mkspecs/macx-clang/Info.plist.app2
1 files changed, 2 insertions, 0 deletions
diff --git a/mkspecs/macx-clang/Info.plist.app b/mkspecs/macx-clang/Info.plist.app
index fa592af089..9ee6a6bf0e 100644
--- a/mkspecs/macx-clang/Info.plist.app
+++ b/mkspecs/macx-clang/Info.plist.app
@@ -20,5 +20,7 @@
<string>NSApplication</string>
<key>NSSupportsAutomaticGraphicsSwitching</key>
<true/>
+ <key>CFBundleDevelopmentRegion</key>
+ <string>English</string>
</dict>
</plist>