From 2d1fd1f6a47383619055cc6f0ed37d29283df055 Mon Sep 17 00:00:00 2001 From: Maufeat Date: Sun, 22 Jun 2025 02:25:45 +0000 Subject: [PATCH] Needs Qt6 instead of Qt5 --- Building-for-macOS.-.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Building-for-macOS.-.md b/Building-for-macOS.-.md index cea5b5d..6cb6227 100644 --- a/Building-for-macOS.-.md +++ b/Building-for-macOS.-.md @@ -8,7 +8,7 @@ If you are compiling on Intel Mac or are using a Rosetta Homebrew installation, Install dependencies from Homebrew: ```sh -brew install autoconf automake boost ccache ffmpeg fmt glslang hidapi libtool libusb lz4 ninja nlohmann-json openssl pkg-config qt@5 sdl2 speexdsp zlib zlib zstd cmake Catch2 molten-vk vulkan-loader +brew install autoconf automake boost ccache ffmpeg fmt glslang hidapi libtool libusb lz4 ninja nlohmann-json openssl pkg-config qt@6 sdl2 speexdsp zlib zlib zstd cmake Catch2 molten-vk vulkan-loader ``` Clone the repo @@ -22,7 +22,7 @@ Build for release ```sh mkdir build && cd build -export Qt5_DIR="/opt/homebrew/opt/qt@5/lib/cmake" +export Qt6_DIR="/opt/homebrew/opt/qt@6/lib/cmake" export LIBVULKAN_PATH=/opt/homebrew/lib/libvulkan.dylib @@ -36,7 +36,7 @@ You may also want to include support for Discord Rich Presence by adding `-DUSE_ Build with debug symbols (vcpkg is not currently used due to broken boost-context library): ```sh mkdir build && cd build -export Qt5_DIR="/opt/homebrew/opt/qt@5/lib/cmake" +export Qt6_DIR="/opt/homebrew/opt/qt@6/lib/cmake" cmake .. -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DYUZU_USE_BUNDLED_VCPKG=OFF -DYUZU_TESTS=OFF -DENABLE_WEB_SERVICE=OFF -DENABLE_LIBUSB=OFF ninja ``` @@ -53,7 +53,7 @@ If you are compiling on Intel Mac or are using a Rosetta Homebrew installation, Install dependencies from Homebrew: ```sh -brew install autoconf automake boost ccache ffmpeg fmt glslang hidapi libtool libusb lz4 ninja nlohmann-json openssl pkg-config qt@5 sdl2 speexdsp zlib zlib zstd cmake Catch2 molten-vk vulkan-loader +brew install autoconf automake boost ccache ffmpeg fmt glslang hidapi libtool libusb lz4 ninja nlohmann-json openssl pkg-config qt@6 sdl2 speexdsp zlib zlib zstd cmake Catch2 molten-vk vulkan-loader ``` Clone the repo @@ -67,7 +67,7 @@ Build for release ```sh mkdir build && cd build -export Qt5_DIR="/opt/homebrew/opt/qt@5/lib/cmake" +export Qt6_DIR="/opt/homebrew/opt/qt@6/lib/cmake" export LIBVULKAN_PATH=/opt/homebrew/lib/libvulkan.dylib @@ -81,7 +81,7 @@ You may also want to include support for Discord Rich Presence by adding `-DUSE_ Build with debug symbols (vcpkg is not currently used due to broken boost-context library): ```sh mkdir build && cd build -export Qt5_DIR="/opt/homebrew/opt/qt@5/lib/cmake" +export Qt6_DIR="/opt/homebrew/opt/qt@6/lib/cmake" cmake .. -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DYUZU_USE_BUNDLED_VCPKG=OFF -DYUZU_TESTS=OFF -DENABLE_WEB_SERVICE=OFF -DENABLE_LIBUSB=OFF ninja ```