2024-04-21 05:11:15 +02:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# FRT templates arm64v8
|
2024-04-21 11:58:01 +02:00
|
|
|
scons production=yes tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=frt frt_arch=arm64v8 frt_cross=auto "$@"
|
|
|
|
scons production=yes tools=no target=release custom_modules_shared=no debug_symbols=no platform=frt frt_arch=arm64v8 frt_cross=auto "$@"
|
2024-04-21 05:11:15 +02:00
|
|
|
|
|
|
|
# FRT SDL templates arm64v8
|
2024-04-21 11:58:01 +02:00
|
|
|
scons production=yes tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=frt_sdl frt_arch=arm64v8 frt_cross=auto "$@"
|
|
|
|
scons production=yes tools=no target=release custom_modules_shared=no debug_symbols=no platform=frt_sdl frt_arch=arm64v8 frt_cross=auto "$@"
|
2024-04-21 05:11:15 +02:00
|
|
|
|