mirror of
https://github.com/ITotalJustice/sphaira.git
synced 2025-10-31 19:16:05 +01:00
21 lines
335 B
Bash
21 lines
335 B
Bash
#!/bin/sh
|
|
|
|
# builds a preset
|
|
build_preset() {
|
|
echo Configuring $1 ...
|
|
cmake --preset $1
|
|
echo Building $1 ...
|
|
cmake --build --preset $1
|
|
}
|
|
|
|
build_preset Release
|
|
|
|
rm -rf out
|
|
|
|
# --- SWITCH --- #
|
|
mkdir -p out/switch/sphaira/
|
|
cp -r build/Release/*.nro out/switch/sphaira/sphaira.nro
|
|
pushd out
|
|
zip -r9 sphaira.zip switch
|
|
popd
|