Files
eepp/projects/mingw32/make.sh
Martín Lucas Golini da44cca16e eepp: mojoAL is now used by default.
ecode: Tentative fix for a segfaul when accesing an LSP Server that isn't running anymore.
2023-04-19 20:37:34 -03:00

24 lines
364 B
Bash
Executable File

#!/bin/bash
cd "$(dirname "$0")" || exit
ARCH=32
for i in "$@"; do
case $i in
config=*)
CONFIG="${i#*=}"
shift
;;
*)
;;
esac
done
if [[ "$CONFIG" == *"x86_64"* ]]; then
ARCH=64
fi
premake5 --file=../../premake5.lua --os=windows --cc=mingw --windows-mingw-build gmake2
cd ../../make/windows/ || exit
mingw"$ARCH"-make "$@"