summaryrefslogtreecommitdiff
path: root/misc/webrtc.tres
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2022-06-16 11:32:10 +0200
committerGitHub <noreply@github.com>2022-06-16 11:32:10 +0200
commitb2654cc2bd5487943c44b4bdee646113d4cf45f3 (patch)
tree905bce590cbc44c4077defa52276bac245c22a2a /misc/webrtc.tres
parent8c18112f5dcf96bf24fab14ab4470c00ab7f7f70 (diff)
parente19b3701260d4a855736c623b8c8a270413f041e (diff)
downloadfork-godot-webrtc-native-b2654cc2bd5487943c44b4bdee646113d4cf45f3.tar.gz
fork-godot-webrtc-native-b2654cc2bd5487943c44b4bdee646113d4cf45f3.tar.bz2
fork-godot-webrtc-native-b2654cc2bd5487943c44b4bdee646113d4cf45f3.zip
Merge pull request #51 from Faless/libdatachannel_pr
Switch to libdatachannel as RTC library. Add GDExtension support.
Diffstat (limited to 'misc/webrtc.tres')
-rw-r--r--misc/webrtc.tres28
1 files changed, 28 insertions, 0 deletions
diff --git a/misc/webrtc.tres b/misc/webrtc.tres
new file mode 100644
index 0000000..9519d9f
--- /dev/null
+++ b/misc/webrtc.tres
@@ -0,0 +1,28 @@
+[gd_resource type="GDNativeLibrary" format=2]
+
+[resource]
+singleton = true
+reloadable = false
+entry/OSX.64 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.osx.{TARGET}.x86_64.dylib"
+entry/OSX.arm64 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.osx.{TARGET}.arm64.dylib"
+entry/Windows.64 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.windows.{TARGET}.x86_64.dll"
+entry/Windows.32 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.windows.{TARGET}.x86_32.dll"
+entry/X11.64 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.linux.{TARGET}.x86_64.so"
+entry/X11.32 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.linux.{TARGET}.x86_32.so"
+entry/Server.64 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.linux.{TARGET}.x86_64.so"
+entry/Server.32 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.linux.{TARGET}.x86_32.so"
+entry/Android.armeabi-v7a = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.android.{TARGET}.arm32.so"
+entry/Android.arm64-v8a = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.android.{TARGET}.arm64.so"
+entry/Android.x64 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.android.{TARGET}.x86_64.so"
+entry/Android.x86 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.android.{TARGET}.x86_32.so"
+entry/iOS.armv7 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.ios.{TARGET}.armv32.dylib"
+entry/iOS.arm64 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.ios.{TARGET}.arm64.dylib"
+entry/iOS.x86_64 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.ios.{TARGET}.x86_64.simulator.dylib"
+dependency/Windows.64 = [ ]
+dependency/Windows.32 = [ ]
+dependency/X11.64 = [ ]
+dependency/X11.32 = [ ]
+dependency/Server.64 = [ ]
+dependency/Server.32 = [ ]
+dependency/Android.armeabi-v7a = [ ]
+dependency/Android.arm64-v8a = [ ]