10 lines
320 B
Bash
Executable File
10 lines
320 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-wii
|
|
cmake -S. -Bbuild-wii -DDUSK_TARGET_SYSTEM=wii -DCMAKE_TOOLCHAIN_FILE="$DEVKITPRO/cmake/Wii.cmake"
|
|
cd build-wii
|
|
make -j$(nproc) VERBOSE=1 |