Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Commit

Permalink
0.0.8 - cmake: Enable compiling with localizations (#18)
Browse files Browse the repository at this point in the history
Allows to change UI language inside the emu.
  • Loading branch information
shinra-electric committed Mar 20, 2024
1 parent c50d177 commit 81ef1e0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This script will build and compile Suyu for macOS on Apple Silicon.
Get it from here!

[![Download](https://img.shields.io/badge/Download-v0.0.7-brightgreen)](https://github.com/mavethee/suyu-macos-builds-script/releases/download/0.0.7/build_suyu.sh)
[![Download](https://img.shields.io/badge/Download-v0.0.8-brightgreen)](https://github.com/mavethee/suyu-macos-builds-script/releases/download/0.0.8/build_suyu.sh)

## Usage:

Expand Down Expand Up @@ -82,8 +82,9 @@ $HOME/build_suyu.sh

### 6. Enjoy!

Note: Remember to repeat STEP 2 for future script changes. </br>

```sh
Note: Remember to repeat STEP 2 for future script changes.
```
## Special thanks to:

- Suyu's macOS build instructions archived [here](https://web.archive.org/web/20240113191459/https://yuzu-emu.org/wiki/building-for-macos/)
Expand Down
6 changes: 4 additions & 2 deletions README_pl_PL.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Ten skrypt pobierze wszystkie potrzebne rzeczy dla portu Suyu na macOS.

Weź pod uwagę, żeby nie nastawiać się na wiele, w obecnym stanie nie jest to w pełni funkcjonalny port.

[![Pobierz](https://img.shields.io/badge/Download-v0.0.7-brightgreen)](https://github.com/mavethee/suyu-macos-builds-script/releases/download/0.0.7/build_suyu.sh)
[![Pobierz](https://img.shields.io/badge/Download-v0.0.8-brightgreen)](https://github.com/mavethee/suyu-macos-builds-script/releases/download/0.0.8/build_suyu.sh)

## Użytkowanie:

Expand Down Expand Up @@ -78,7 +78,9 @@ $HOME/build_suyu.sh

### 6. Enjoy!

Notka: Pamiętaj o powtórzeniu kroku drugiego co jakiś czas, aby mieć najaktualniejszy skrypt. </br>
```sh
Notka: Pamiętaj o powtórzeniu kroku drugiego co jakiś czas, aby mieć najaktualniejszy skrypt.
```

## Podziękowania:

Expand Down
7 changes: 5 additions & 2 deletions build_suyu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ cmake .. -GNinja \
-DENABLE_LIBUSB=OFF \
-DSDL_ARMNEON=ON \
-DENABLE_QT6=ON \
-DENABLE_QT_TRANSLATION=ON \
-DSUYU_USE_EXTERNAL_VULKAN_HEADERS=OFF

echo -e "${PURPLE}Building suyu...${NC}"
Expand Down Expand Up @@ -133,11 +134,13 @@ if [ $? -eq 0 ]; then

# Remove build folder
echo -e "${PURPLE}Cleaning up build files...${NC}"
echo -e "${PURPLE}Optional, don't worry if it fails.${NC}"
echo -e "${RED}You may be asked to provide an administrator password...${NC}"
cd "$HOME/suyu"
rm -rf build
sudo rm -rf build

echo -e "${GREEN}Installation completed.${NC}"

else
echo -e "${RED}Build failed.${PURPLE}Please check the build output for errors.${NC}."
fi
fi

0 comments on commit 81ef1e0

Please sign in to comment.