10 lines
344 B
Bash
Executable File
10 lines
344 B
Bash
Executable File
#!/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 |