From 8543a3594e97e1fa3525f739ccb89400b037f91f Mon Sep 17 00:00:00 2001 From: shinra-electric <50119606+shinra-electric@users.noreply.github.com> Date: Fri, 22 Mar 2024 15:29:32 +0100 Subject: [PATCH] 0.0.9 - Resurrection (#21) - New repo - Make sure System MoltenVK is not used --- README.md | 2 +- README_pl_PL.md | 2 +- build_suyu.sh | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d3982dc..2e10d45 100755 --- a/README.md +++ b/README.md @@ -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.8-brightgreen)](https://github.com/mavethee/suyu-macos-builds-script/releases/download/0.0.8/build_suyu.sh) +[![Download](https://img.shields.io/badge/Download-v0.0.9-brightgreen)](https://github.com/mavethee/suyu-macos-builds-script/releases/download/0.0.9/build_suyu.sh) ## Usage: diff --git a/README_pl_PL.md b/README_pl_PL.md index fcfe1ce..6686d70 100755 --- a/README_pl_PL.md +++ b/README_pl_PL.md @@ -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.8-brightgreen)](https://github.com/mavethee/suyu-macos-builds-script/releases/download/0.0.8/build_suyu.sh) +[![Pobierz](https://img.shields.io/badge/Download-v0.0.9-brightgreen)](https://github.com/mavethee/suyu-macos-builds-script/releases/download/0.0.9/build_suyu.sh) ## Użytkowanie: diff --git a/build_suyu.sh b/build_suyu.sh index f1038bb..0352e0c 100755 --- a/build_suyu.sh +++ b/build_suyu.sh @@ -70,7 +70,7 @@ done # Clone the Suyu repository if not already cloned if [ ! -d "suyu" ]; then echo -e "${PURPLE}Cloning Suyu repository...${NC}" - git clone --recursive https://gitlab.com/suyu-emu/suyu.git/ + git clone --recursive https://git.suyu.dev/suyu/suyu cd suyu else echo -e "${PURPLE}Suyu repository already exists. Updating...${NC}" @@ -106,7 +106,8 @@ cmake .. -GNinja \ -DSDL_ARMNEON=ON \ -DENABLE_QT6=ON \ -DENABLE_QT_TRANSLATION=ON \ - -DSUYU_USE_EXTERNAL_VULKAN_HEADERS=OFF + -DSUYU_USE_EXTERNAL_VULKAN_HEADERS=OFF \ + -DUSE_SYSTEM_MOLTENVK=OFF echo -e "${PURPLE}Building suyu...${NC}"