26 lines
737 B
PowerShell
26 lines
737 B
PowerShell
|
Clear-Host
|
||
|
|
||
|
$path_scripts = $PSScriptRoot
|
||
|
$path_helpers = join-path $path_scripts 'helpers'
|
||
|
$path_root = split-path -Parent -Path $path_scripts
|
||
|
$path_ue = join-path $path_root 'UE'
|
||
|
$path_project = join-path $path_root 'Project'
|
||
|
|
||
|
$surgo_uproject = join-path $path_project 'Surgo.uproject'
|
||
|
|
||
|
$UBT = join-path $path_ue 'Engine\Binaries\DotNET\UnrealBuildTool\UnrealBuildTool.exe'
|
||
|
|
||
|
$fubt_project = '-project'
|
||
|
$fubt_projectfiles = '-projectfiles'
|
||
|
$fubt_game = '-game'
|
||
|
$fubt_engine = '-engine'
|
||
|
$fubt_progress = '-progress'
|
||
|
|
||
|
$ubt_args = @()
|
||
|
$ubt_args += $fubt_projectfiles
|
||
|
$ubt_args += "$fubt_project=$surgo_uproject"
|
||
|
$ubt_args += $fubt_game
|
||
|
$ubt_args += $fubt_engine
|
||
|
$ubt_args += $fubt_progress
|
||
|
& $UBT $ubt_args
|