diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-12-19 16:38:02 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-12-20 12:55:43 +0100 |
commit | 7a4e27e5f054f418f4aa08c6c0c3c22c50bf0c97 (patch) | |
tree | 998bf3f252e6e94d3cc2f1f8f66ab778538c9dc7 /misc/dist | |
parent | d768508435cfb0b940486b4fec54339f5d9c096f (diff) | |
download | fork-godot-webrtc-native-7a4e27e5f054f418f4aa08c6c0c3c22c50bf0c97.tar.gz fork-godot-webrtc-native-7a4e27e5f054f418f4aa08c6c0c3c22c50bf0c97.tar.bz2 fork-godot-webrtc-native-7a4e27e5f054f418f4aa08c6c0c3c22c50bf0c97.zip |
[MacOS] Use framekwork to package GDExtension
This allows it to be code-signed as a bundle so gatekeeper won't
complain when loaded by the editor.
Diffstat (limited to 'misc/dist')
-rw-r--r-- | misc/dist/macos/Info.plist | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/misc/dist/macos/Info.plist b/misc/dist/macos/Info.plist new file mode 100644 index 0000000..679f64c --- /dev/null +++ b/misc/dist/macos/Info.plist @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleExecutable</key> + <string>{LIBRARY_NAME}</string> + <key>CFBundleIdentifier</key> + <string>org.godotengine.webrtc-native</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleDisplayName</key> + <string>{DISPLAY_NAME}</string> + <key>CFBundleName</key> + <string>webrtc_native</string> + <key>CFBundlePackageType</key> + <string>FMWK</string> + <key>CFBundleShortVersionString</key> + <string>1.0.0</string> + <key>CFBundleSupportedPlatforms</key> + <array> + <string>MacOSX</string> + </array> + <key>CFBundleVersion</key> + <string>1.0.0</string> + <key>LSMinimumSystemVersion</key> + <string>11.0</string> +</dict> +</plist> |