You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
15 lines
357 B
Batchfile
Executable File
15 lines
357 B
Batchfile
Executable File
@echo off
|
|
setlocal ENABLEEXTENSIONS
|
|
|
|
IF EXIST "%NDKROOT%" (
|
|
echo Replacing ld.lld.exe at %NDKROOT%\toolchains\llvm\prebuilt\windows-x86_64\bin
|
|
copy /y ld.lld.exe "%NDKROOT%"\toolchains\llvm\prebuilt\windows-x86_64\bin
|
|
) else (
|
|
echo Unable to locate local Android NDK location. Did you run SetupAndroid to install it?
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
pause
|
|
exit /b 0
|