33 lines
1003 B
Bash
Executable File
33 lines
1003 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TAG="$1"
|
|
BUILTDIR="$2"
|
|
SRCDIR="$3"
|
|
OUTPUTDIR="$4"
|
|
|
|
LAUNCHER_LIBS="-r:System.dll -r:System.Drawing.dll -r:System.Windows.Forms.dll -r:${BUILTDIR}/OpenRA.Game.exe"
|
|
FAQ_URL="http://wiki.openra.net/FAQ"
|
|
|
|
function makelauncher()
|
|
{
|
|
sed "s|DISPLAY_NAME|$2|" WindowsLauncher.cs.in | sed "s|MOD_ID|$3|" | sed "s|FAQ_URL|${FAQ_URL}|" > WindowsLauncher.cs
|
|
mcs -sdk:4.5 WindowsLauncher.cs -warn:4 -codepage:utf8 -warnaserror -out:"$1" -t:winexe ${LAUNCHER_LIBS} -win32icon:"$4"
|
|
rm WindowsLauncher.cs
|
|
mono ${SRCDIR}/fixheader.exe $1 > /dev/null
|
|
}
|
|
|
|
echo "Compiling Windows launcher"
|
|
makelauncher ${BUILTDIR}/OpenRA.exe "OpenRA" "" OpenRA.ico
|
|
|
|
if [ -x /usr/bin/makensis ]; then
|
|
echo "Building Windows setup.exe"
|
|
makensis -V2 -DSRCDIR="$BUILTDIR" -DDEPSDIR="${SRCDIR}/thirdparty/download/windows" OpenRA.nsi
|
|
if [ $? -eq 0 ]; then
|
|
mv OpenRA.Setup.exe "$OUTPUTDIR"/OpenRA-$TAG.exe
|
|
else
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "Skipping Windows setup.exe build due to missing NSIS"
|
|
fi
|