Remove OpenRA.PostProcess.exe.

The LAA flag is now set when packaging
Windows release installers.
This commit is contained in:
Paul Chote
2020-05-02 14:51:38 +01:00
committed by abcdefg30
parent 90815ace59
commit 2abd137494
7 changed files with 11 additions and 86 deletions

View File

@@ -32,7 +32,14 @@ function makelauncher()
sed "s|DISPLAY_NAME|$2|" WindowsLauncher.cs.in | sed "s|MOD_ID|$3|" | sed "s|FAQ_URL|${FAQ_URL}|" > WindowsLauncher.cs
csc WindowsLauncher.cs -warn:4 -warnaserror -platform:"$5" -out:"$1" -t:winexe ${LAUNCHER_LIBS} -win32icon:"$4"
rm WindowsLauncher.cs
mono "${SRCDIR}/OpenRA.PostProcess.exe" "$1" -LAA > /dev/null
if [ "$5" = "x86" ]; then
# Enable the full 4GB address space for the 32 bit game executable
# The server and utility do not use enough memory to need this
csc MakeLAA.cs -warn:4 -warnaserror -out:"MakeLAA.exe"
mono "MakeLAA.exe" "$1"
rm MakeLAA.exe
fi
}
function build_platform()