Сборка движка из исходников
Last updated
Last updated
clone_and_build_ue.batrem "clone repo"
git clone https://github.com/EpicGames/UnrealEngine.git
rem "download additional binaries"
call Setup.bat
rem "generate sln"
call GenerateProjectFiles.bat
rem "set params for build"
set MS_BUILD_PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\MSBuild.exe
set BUILD_DIR=%~dp0
set PLATFORM=Win64
set CONFIGURATION=Development Editor
set VERBOSITY=diagnostic
rem "perform MSBUILD"
start "%MS_BUILD_PATH%" "%BUILD_DIR%\UE4.sln" -target:"Engine\UE4" -property:Platform="%PLATFORM%";Configuration="%CONFIGURATION%" -verbosity:"%VERBOSITY%"