TRX/docker/entrypoint.sh

11 lines
343 B
Bash
Raw Normal View History

2021-11-17 12:08:20 +01:00
#!/bin/sh
2021-11-20 22:41:18 +01:00
if [ ! -f /app/build/build.ninja ]; then
2021-11-17 12:08:20 +01:00
if [ "$TARGET" = debug ]; then
meson --buildtype debug /app/build/ --cross /app/docker/meson_linux_mingw32.txt
elif [ "$TARGET" = release ]; then
meson --buildtype release /app/build/ --cross /app/docker/meson_linux_mingw32.txt
fi
fi
cd /app/build; meson compile