RetroQUEST/build_libretro_binding.sh
2024-12-10 21:59:49 +09:00

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)