Skip to content

Commit ee615c7

Browse files
authored
Merge pull request #85 from godotengine/3.x-update-angle-uwp
UWP: Update version of ANGLE DLLs
2 parents 09c443f + cc367ac commit ee615c7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build-release.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -310,18 +310,18 @@ if [ "${build_classical}" == "1" ]; then
310310
## UWP (Classical) ##
311311

312312
if [ ! -d "deps/angle" ]; then
313-
echo "Downloading ANGLE binaries from https://github.com/GodotBuilder/godot-builds/releases/tag/_tools"
313+
echo "Downloading ANGLE binaries from https://github.com/godotengine/godot-build-scripts/releases/tag/_deps/"
314314
mkdir -p deps && cd deps
315-
curl -LO https://github.com/GodotBuilder/godot-builds/releases/download/_tools/angle.7z
316-
7z x angle.7z && rm -f angle.7z
315+
curl -L -o angle-uwp.7z https://github.com/godotengine/godot-build-scripts/releases/download/_deps/angle-uwp-2.1.13.7z
316+
7z x angle-uwp.7z && rm -f angle-uwp.7z
317317
cd ..
318318
fi
319319

320320
rm -rf uwp_template_*
321321
for arch in ARM Win32 x64; do
322322
cp -r git/misc/dist/uwp_template uwp_template_${arch}
323-
cp deps/angle/winrt/10/src/Release_${arch}/libEGL.dll \
324-
deps/angle/winrt/10/src/Release_${arch}/libGLESv2.dll \
323+
cp deps/angle-uwp/${arch}/libEGL.dll \
324+
cp deps/angle-uwp/${arch}/libGLESv2.dll \
325325
uwp_template_${arch}/
326326
cp -r uwp_template_${arch} uwp_template_${arch}_debug
327327
done

0 commit comments

Comments
 (0)