diff options
author | WaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com> | 2021-05-02 12:53:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-02 12:53:34 +0000 |
commit | 6a655447d4c45d600793ba2d0872787d56645121 (patch) | |
tree | a901dd8154479f78556e80ca836bd7be024591f2 | |
parent | 1004ff7fb3800344e5a97317277c3bdb1af4bf5d (diff) |
Update README instructions to use Qt 6 on macOS
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -88,7 +88,7 @@ If everything went well, melonDS should now be in the `dist` folder. ### macOS: 1. Install the [Homebrew Package Manager](https://brew.sh) -2. Install dependencies: `brew install git pkg-config cmake sdl2 qt@5 libslirp libarchive libepoxy` +2. Install dependencies: `brew install git pkg-config cmake sdl2 qt@6 libslirp libarchive libepoxy` 3. Download the melonDS repository and prepare: ```zsh git clone https://github.com/Arisotura/melonDS @@ -97,7 +97,7 @@ If everything went well, melonDS should now be in the `dist` folder. ``` 4. Compile: ```zsh - cmake .. -DCMAKE_PREFIX_PATH="$(brew --prefix qt@5);$(brew --prefix libarchive)" -DMACOS_BUNDLE_LIBS=ON + cmake .. -DCMAKE_PREFIX_PATH="$(brew --prefix qt@6);$(brew --prefix libarchive)" -DMACOS_BUNDLE_LIBS=ON make -j$(sysctl -n hw.logicalcpu) ``` If everything went well, melonDS.app should now be in the curent directory. |