mirror of
https://onedev.site.tesses.net/crosslang
synced 2026-02-08 17:15:45 +00:00
8 lines
185 B
Bash
8 lines
185 B
Bash
#!/bin/bash
|
|
mkdir -p publish/wii
|
|
cd Wii
|
|
mkdir build
|
|
cd build
|
|
cmake -S .. -B . -DCMAKE_TOOLCHAIN_FILE=/opt/devkitpro/cmake/Wii.cmake
|
|
make -j`nproc`
|
|
mv boot.dol ../../publish/wii/boot.dol |