mirror of
https://github.com/RetroDECK/RetroQUEST.git
synced 2025-04-21 01:24:06 +00:00
14 lines
268 B
Bash
14 lines
268 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
GODOT_CPP_BINDINGS_PATH="$HOME/gits/godot-cpp"
|
||
|
|
||
|
cd "$GODOT_CPP_BINDINGS_PATH"
|
||
|
scons platform=linux target=template_release generate_bindings=yes
|
||
|
cd -
|
||
|
|
||
|
rm -rf build_linux
|
||
|
mkdir build_linux
|
||
|
cd build_linux
|
||
|
cmake .. -DCMAKE_BUILD_TYPE=Release
|
||
|
cmake --build .
|