diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-06-30 11:44:33 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-06-30 16:52:36 +0200 |
commit | cb2be8723a16f9fdb13582562cb630c945dcd0a7 (patch) | |
tree | 20c0c99c5217792e054f876712a54ae8b4f1eec8 /misc | |
parent | d278661d767f5e1f8f68af2d0a706f5f044aa5d3 (diff) | |
download | fork-godot-webrtc-native-cb2be8723a16f9fdb13582562cb630c945dcd0a7.tar.gz fork-godot-webrtc-native-cb2be8723a16f9fdb13582562cb630c945dcd0a7.tar.bz2 fork-godot-webrtc-native-cb2be8723a16f9fdb13582562cb630c945dcd0a7.zip |
Support building for Godot 4.1 (new default).
Diffstat (limited to 'misc')
-rw-r--r-- | misc/patches/scons_path.diff | 6 | ||||
-rwxr-xr-x | misc/scripts/package_release.sh | 7 | ||||
-rw-r--r-- | misc/webrtc.gdextension | 1 |
3 files changed, 8 insertions, 6 deletions
diff --git a/misc/patches/scons_path.diff b/misc/patches/scons_path.diff index d7273ea..0fab302 100644 --- a/misc/patches/scons_path.diff +++ b/misc/patches/scons_path.diff @@ -1,7 +1,7 @@ -diff --git a/godot-cpp/SConstruct b/godot-cpp/SConstruct +diff --git a/godot-cpp-4.0/SConstruct b/godot-cpp-4.0/SConstruct index 27ee137..32b425e 100644 ---- a/godot-cpp/SConstruct -+++ b/godot-cpp/SConstruct +--- a/godot-cpp-4.0/SConstruct ++++ b/godot-cpp-4.0/SConstruct @@ -54,6 +54,8 @@ else: # Default tools with no platform defaults to gnu toolchain. # We apply platform specific toolchains via our custom tools. diff --git a/misc/scripts/package_release.sh b/misc/scripts/package_release.sh index a08f441..3ca5a2b 100755 --- a/misc/scripts/package_release.sh +++ b/misc/scripts/package_release.sh @@ -10,6 +10,7 @@ TYPE=${TYPE:-"webrtc"} mkdir -p ${DESTINATION} ls -R ${DESTINATION} +ls -R ${ARTIFACTS} DESTDIR="${DESTINATION}/${VERSION}/${TYPE}" @@ -18,10 +19,10 @@ mkdir -p ${DESTDIR}/lib find "${ARTIFACTS}" -wholename "*/${VERSION}/${TYPE}/lib/*" | xargs cp -t "${DESTDIR}/lib/" find "${ARTIFACTS}" -wholename "*/LICENSE*" | xargs cp -t "${DESTDIR}/" -if [ $VERSION = "extension" ]; then - find "${ARTIFACTS}" -wholename "*/${VERSION}/${TYPE}/${TYPE}.gdextension" | head -n 1 | xargs cp -t "${DESTDIR}/" -else +if [ $VERSION = "gdnative" ]; then find "${ARTIFACTS}" -wholename "*/${VERSION}/${TYPE}/${TYPE}.tres" | head -n 1 | xargs cp -t "${DESTDIR}/" +else + find "${ARTIFACTS}" -wholename "*/${VERSION}/${TYPE}/${TYPE}.gdextension" | head -n 1 | xargs cp -t "${DESTDIR}/" fi CURDIR=$(pwd) diff --git a/misc/webrtc.gdextension b/misc/webrtc.gdextension index 9fe979a..8f930bf 100644 --- a/misc/webrtc.gdextension +++ b/misc/webrtc.gdextension @@ -1,6 +1,7 @@ [configuration] entry_symbol = "webrtc_extension_init" +compatibility_minimum = {GODOT_VERSION} [libraries] |