diff options
author | Tor Arne Vestbø <tor.arne.vestbo@qt.io> | 2022-10-19 13:04:12 +0200 |
---|---|---|
committer | Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> | 2022-10-20 14:00:34 +0000 |
commit | 6a0bba44c2db11f4696aac1ce86e41102258c2b5 (patch) | |
tree | 2dedd4c565f2e913f19bb45f4732f15ff5121aae /mkspecs | |
parent | 6b67edb23a71aed22300d45968e1dea83fa73505 (diff) | |
download | qtbase-6a0bba44c2db11f4696aac1ce86e41102258c2b5.tar.gz |
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: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'mkspecs')
-rw-r--r-- | mkspecs/macx-clang/Info.plist.app | 2 |
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> |