diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-12-21 18:48:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-21 18:48:23 +0100 |
commit | 724910c73483cc85016bfaa37ffd0b7c9ad2f8dd (patch) | |
tree | 998bf3f252e6e94d3cc2f1f8f66ab778538c9dc7 /misc/dist/macos | |
parent | d768508435cfb0b940486b4fec54339f5d9c096f (diff) | |
parent | 7a4e27e5f054f418f4aa08c6c0c3c22c50bf0c97 (diff) | |
download | fork-godot-webrtc-native-724910c73483cc85016bfaa37ffd0b7c9ad2f8dd.tar.gz fork-godot-webrtc-native-724910c73483cc85016bfaa37ffd0b7c9ad2f8dd.tar.bz2 fork-godot-webrtc-native-724910c73483cc85016bfaa37ffd0b7c9ad2f8dd.zip |
Merge pull request #130 from Faless/spike/macos_framework
[MacOS] Use framekwork to package GDExtension
Diffstat (limited to 'misc/dist/macos')
-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> |