Skip to content

Compile urneal engine only for Windows

dont forget to delete all .pdb files before distribution

ps1
$UEVersion="5.0.3"

# Get local workspace
$LocalWorkspace = (p4 -F %clientRoot% -ztag info) | out-string 
$LocalWorkspace = $LocalWorkspace -replace "`n|`r" 

# Compute root engine path
$EngineRootPath = Join-Path $LocalWorkspace "Dev"
$EngineRootPath = Join-Path $EngineRootPath "UnrealEngine-$($UEVersion)"
	
# Compute Setup.bat path
$SetupPath = Join-Path $EngineRootPath "Setup.bat"

# Compute GenerateProjectFiles.bat path
$GenerateProjectPath = Join-Path $EngineRootPath "GenerateProjectFiles.bat"

# Compute RunUAT.bat path
$RunUATPath = Join-Path $EngineRootPath "Engine"
$RunUATPath = Join-Path $RunUATPath "Build"
$RunUATPath = Join-Path $RunUATPath "BatchFiles"
$RunUATPath = Join-Path $RunUATPath "RunUAT.bat"

# Compute Build Script path
$BuildScriptPath = Join-Path $EngineRootPath "Engine"
$BuildScriptPath = Join-Path $BuildScriptPath "Build"
$BuildScriptPath = Join-Path $BuildScriptPath "InstalledEngineBuild.xml"

# Compute Setup Command
$SetupPathCommand = "$($SetupPath) --exclude=Win32 --exclude=Linux --exclude=Android --exclude=Mac --exclude=IOS --exclude=TVOS --exclude=HoloLens --exclude=Lumin --exclude=WinRT --exclude=Linux32 --exclude=osx64"

# Compute Build command
$BuildCommand = "$($RunUATPath) BuildGraph -target=`"Make Installed Build Win64`" -script=$($BuildScriptPath) -clean -set:WithWin64=true -set:WithLinux=false -set:WithServer=false -set:WithDDC=false -set:WithWin32=false -set:WithMac=false -set:WithAndroid=false -set:WithIOS=false -set:WithTVOS=false -set:WithLinuxAArch64=false -set:WithPS4=false -set:WithXboxOne=false -set:WithSwitch=false -set:WithLumin=false -set:WithLuminMac=false -set:WithHoloLens=false -set:SignExecutables=false -set:WithClient=false -set:HostPlatformEditorOnly=true"


# Start commands
iex $SetupPathCommand
iex $GenerateProjectPath
iex $BuildCommand