mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-23 12:26:59 +01:00
14 lines
600 B
Bash
14 lines
600 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
# production=yes
|
||
|
|
||
|
# FRT templates arm64v8
|
||
|
scons tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=frt frt_arch=arm64v8 frt_cross=auto "$@"
|
||
|
scons tools=no target=release custom_modules_shared=no debug_symbols=no platform=frt frt_arch=arm64v8 frt_cross=auto "$@"
|
||
|
|
||
|
# FRT SDL templates arm64v8
|
||
|
scons tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=frt_sdl frt_arch=arm64v8 frt_cross=auto "$@"
|
||
|
scons tools=no target=release custom_modules_shared=no debug_symbols=no platform=frt_sdl frt_arch=arm64v8 frt_cross=auto "$@"
|
||
|
|