mirror of
https://github.com/sinbad/UEScripts.git
synced 2025-02-23 13:15:23 +00:00
Include debug information in non-Shipping builds
This commit is contained in:
parent
e5942beeb3
commit
460dab5dde
@ -215,6 +215,9 @@ try {
|
||||
|
||||
$outDir = Get-Package-Dir -config:$config -versionNumber:$versionNumber -variantName:$var.Name
|
||||
|
||||
# Delete previous
|
||||
Remove-Item -Path $outDir -Force -ErrorAction SilentlyContinue
|
||||
|
||||
$argList = [System.Collections.ArrayList]@()
|
||||
$argList.Add("-ScriptsForProject=`"$projfile`"") > $null
|
||||
$argList.Add("BuildCookRun") > $null
|
||||
@ -236,7 +239,10 @@ try {
|
||||
$argList.Add("-pak") > $null
|
||||
}
|
||||
$argList.Add("-prereqs") > $null
|
||||
$argList.Add("-nodebuginfo") > $null
|
||||
if ($var.Configuration -eq "Shipping")
|
||||
{
|
||||
$argList.Add("-nodebuginfo") > $null
|
||||
}
|
||||
$argList.Add("-build") > $null
|
||||
$argList.Add("-target=$($config.Target)") > $null
|
||||
$argList.Add("-clientconfig=$($var.Configuration)") > $null
|
||||
|
Loading…
x
Reference in New Issue
Block a user