mirror of
https://github.com/RetroDECK/RetroQUEST.git
synced 2025-04-21 01:24:06 +00:00
9 lines
255 B
Bash
Executable file
9 lines
255 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -d "godot-cpp" ]; then git clone https://github.com/godotengine/godot-cpp.git; fi
|
|
cd godot-cpp
|
|
git pull
|
|
git submodule update --init --recursive
|
|
scons platform=linux generate_bindings=yes -j$(nproc)
|
|
cd ..
|
|
scons platform=linux -j$(nproc) |