mirror of
https://github.com/Relintai/gdnative_python.git
synced 2025-01-08 15:29:39 +01: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 "$@"
|
|
|