"progress"

This commit is contained in:
2026-02-28 09:55:21 -06:00
parent 99d030003c
commit df106e3988
204 changed files with 285 additions and 205 deletions

10
scripts/build-gamecube.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
if [ -z "$DEVKITPRO" ]; then
echo "DEVKITPRO environment variable is not set. Please set it to the path of your DEVKITPRO installation."
exit 1
fi
mkdir -p build-gamecube
cmake -S. -Bbuild-gamecube -DDUSK_TARGET_SYSTEM=gamcube -DCMAKE_TOOLCHAIN_FILE="$DEVKITPRO/cmake/GameCube.cmake"
cd build-gamecube
make -j$(nproc) VERBOSE=1