diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-02-16 00:24:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-16 00:24:31 +0100 |
commit | 762365d20a2a7282c906ee170c644a3a96be3a21 (patch) | |
tree | 1bc5e49105e01d8961a9d1e5c65b887070f63616 /misc/webrtc.tres | |
parent | 7141bc487ec76c336fe1775d58771cecdb507957 (diff) | |
parent | 34ef1043ee1783f8ab20e74a8f883a235a96d629 (diff) | |
download | fork-godot-webrtc-native-762365d20a2a7282c906ee170c644a3a96be3a21.tar.gz fork-godot-webrtc-native-762365d20a2a7282c906ee170c644a3a96be3a21.tar.bz2 fork-godot-webrtc-native-762365d20a2a7282c906ee170c644a3a96be3a21.zip |
Merge pull request #138 from Faless/linux/arms
[Linux] Add arm32/arm64 linux builds support
Diffstat (limited to 'misc/webrtc.tres')
-rw-r--r-- | misc/webrtc.tres | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/misc/webrtc.tres b/misc/webrtc.tres index bdcb80f..2b682ae 100644 --- a/misc/webrtc.tres +++ b/misc/webrtc.tres @@ -6,10 +6,14 @@ reloadable = false entry/OSX.64 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.macos.{TARGET}.universal.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/X11.64.x86_64 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.linux.{TARGET}.x86_64.so" +entry/X11.32.x86_32 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.linux.{TARGET}.x86_32.so" +entry/X11.64.arm64 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.linux.{TARGET}.arm64.so" +entry/X11.32.arm32 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.linux.{TARGET}.arm32.so" +entry/Server.64.x86_64 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.linux.{TARGET}.x86_64.so" +entry/Server.32.x86_32 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.linux.{TARGET}.x86_32.so" +entry/Server.64.arm64 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.linux.{TARGET}.arm64.so" +entry/Server.32.arm32 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.linux.{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/iOS.armv7 = "res://{GDNATIVE_PATH}/lib/libwebrtc_native.ios.{TARGET}.armv32.dylib" |