mirror of
https://github.com/Relintai/gdnative_python.git
synced 2025-05-05 22:31:37 +02:00
10 lines
254 B
Bash
10 lines
254 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Windows 64 bit
|
|
scons production=yes tools=yes target=release_debug debug_symbols=no platform=windows bits=64 "$@"
|
|
|
|
# Windows 32 bit
|
|
scons production=yes tools=yes target=release_debug debug_symbols=no platform=windows bits=32 "$@"
|
|
|