mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
16 lines
189 B
Bash
Executable file
16 lines
189 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ !$CC ]
|
|
then
|
|
export CC=amd64-mingw32msvc-gcc
|
|
fi
|
|
|
|
if [ !$WINDRES ]
|
|
then
|
|
export WINDRES=amd64-mingw32msvc-windres
|
|
fi
|
|
|
|
export PLATFORM=mingw32
|
|
export ARCH=x64
|
|
|
|
exec make $*
|