2024-04-20 22:18:39 +02:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
|
|
# Windows editor (release debug) 64 bit
|
2024-04-21 12:07:29 +02:00
|
|
|
scons production=yes tools=yes target=release_debug debug_symbols=no platform=windows bits=64 "$@"
|
2024-04-20 22:18:39 +02:00
|
|
|
|
|
|
|
# Windows editor (release debug) 32 bit
|
2024-04-21 12:07:29 +02:00
|
|
|
scons production=yes tools=yes target=release_debug debug_symbols=no platform=windows bits=32 "$@"
|
2024-04-20 22:18:39 +02:00
|
|
|
|
|
|
|
# Windows templates 64 bit
|
2024-04-21 12:07:29 +02:00
|
|
|
scons production=yes tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=windows bits=64 "$@"
|
|
|
|
scons production=yes tools=no target=release custom_modules_shared=no debug_symbols=no platform=windows bits=64 "$@"
|
2024-04-20 22:18:39 +02:00
|
|
|
|
|
|
|
# Windows templates 32 bit
|
2024-04-21 12:07:29 +02:00
|
|
|
scons production=yes tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=windows bits=32 "$@"
|
|
|
|
scons production=yes tools=no target=release custom_modules_shared=no debug_symbols=no platform=windows bits=32 "$@"
|
2024-04-20 22:18:39 +02:00
|
|
|
|