You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Steve.Smith #rb Chris.Babcock #jira UE-109517 #ROBOMERGE-SOURCE: CL 15678897 in //UE5/Release-5.0-EarlyAccess/... #ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v781-15675533) [CL 15679229 by jules blok in ue5-main branch]
15 lines
282 B
Batchfile
Executable File
15 lines
282 B
Batchfile
Executable File
@echo off
|
|
setlocal ENABLEEXTENSIONS
|
|
|
|
IF EXIST "%MLSDK%" (
|
|
echo Replacing ld.lld.exe at %MLSDK%\tools\toolchains\llvm-8\bin
|
|
copy /y ld.lld.exe "%MLSDK%"\tools\toolchains\llvm-8\bin
|
|
) else (
|
|
echo Unable to locate local Magic Leap SDK location.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
pause
|
|
exit /b 0
|