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

Commit

Permalink
0.0.6 - Minor fixes
Browse files Browse the repository at this point in the history
I need to do more careful things.
  • Loading branch information
mavethee committed Mar 7, 2024
1 parent 5b43d2b commit f8a283b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build_yuzu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ cmake .. -GNinja -DCMAKE_BUILD_TYPE=RELEASE \
-DENABLE_QT6=ON \
-DYUZU_USE_EXTERNAL_VULKAN_HEADERS=OFF

echo -e "${PURPLE}Building Suyu...${NC}"
echo -e "${PURPLE}Building yuzu...${NC}"

# Build Suyu using Ninja
ninja
Expand All @@ -96,18 +96,18 @@ if [ $? -eq 0 ]; then
echo -e "${GREEN}Build successful${NC}."

# Remove existing Suyu.app if it exists in /Applications
if [ -d "/Applications/Suyu.app" ]; then
if [ -d "/Applications/yuzu.app" ]; then
echo -e "${PURPLE}Removing existing Suyu.app in /Applications...${NC}"
rm -rf "/Applications/Suyu.app"
rm -rf "/Applications/yuzu.app"
fi

# Bundle dependencies and codesign
dylibbundler -of -cd -b -x bin/yuzu.app/Contents/MacOS/yuzu -d bin/yuzu.app/Contents/libs/

echo -e "${PURPLE}Moving Suyu.app to /Applications...${NC}"
echo -e "${PURPLE}Moving yuzu.app to /Applications...${NC}"

# Move Suyu.app to /Applications
mv bin/yuzu.app /Applications/Suyu.app
mv bin/yuzu.app /Applications/yuzu.app

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

Expand Down

0 comments on commit f8a283b

Please sign in to comment.