mirror of
https://github.com/ITotalJustice/sphaira.git
synced 2025-11-02 01:16:03 +01:00
* Update README.md add switch-mbedtls needed to build the code * Update build_release.sh improvement on dir change using pushd * Update README.md
21 lines
341 B
Bash
21 lines
341 B
Bash
#!/bin/sh
|
|
|
|
# builds a preset
|
|
build_preset() {
|
|
echo Configuring $1 ...
|
|
cmake --preset $1
|
|
echo Building $1 ...
|
|
cmake --build --preset $1
|
|
}
|
|
|
|
build_preset MinSizeRel
|
|
|
|
rm -rf out
|
|
|
|
# --- SWITCH --- #
|
|
mkdir -p out/switch/sphaira/
|
|
cp -r build/MinSizeRel/*.nro out/switch/sphaira/sphaira.nro
|
|
pushd out
|
|
zip -r9 sphaira.zip switch
|
|
popd
|