diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2020-06-23 22:01:42 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2020-06-29 12:33:51 +0300 |
commit | 00299f15b46b695d6809f7f812daaad1ad520b4a (patch) | |
tree | 527781843f15ef421089ca02b119583d9e8e815e /misc/dist/osx_tools.app/Contents | |
parent | 9fc65fd1f15b2ae2e26cf69c54819e7d6598fa05 (diff) |
[macOS] Add support for the Apple Silicon (ARM64) build target.
Diffstat (limited to 'misc/dist/osx_tools.app/Contents')
-rwxr-xr-x | misc/dist/osx_tools.app/Contents/Info.plist | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/misc/dist/osx_tools.app/Contents/Info.plist b/misc/dist/osx_tools.app/Contents/Info.plist index c519a232c4..fd62bc0ef5 100755 --- a/misc/dist/osx_tools.app/Contents/Info.plist +++ b/misc/dist/osx_tools.app/Contents/Info.plist @@ -29,15 +29,21 @@ <key>NSCameraUsageDescription</key> <string>Camera access is required to capture video.</string> <key>NSRequiresAquaSystemAppearance</key> - <false /> + <false/> <key>NSHumanReadableCopyright</key> <string>© 2007-2020 Juan Linietsky, Ariel Manzur & Godot Engine contributors</string> + <key>CFBundleSupportedPlatforms</key> + <array> + <string>MacOSX</string> + </array> + <key>NSPrincipalClass</key> + <string>NSApplication</string> <key>LSMinimumSystemVersion</key> - <string>10.12.0</string> + <string>10.12</string> <key>LSMinimumSystemVersionByArchitecture</key> <dict> <key>x86_64</key> - <string>10.12.0</string> + <string>10.12</string> </dict> <key>NSHighResolutionCapable</key> <true/> |