Updated Building for macOS (markdown)
parent
d7407592bc
commit
bf39eea5b8
|
@ -5,17 +5,20 @@ This article was written for developers. yuzu support for macOS is not ready for
|
||||||
|
|
||||||
Install dependencies from Homebrew:
|
Install dependencies from Homebrew:
|
||||||
```sh
|
```sh
|
||||||
brew install autoconf automake boost@1.76 ccache ffmpeg fmt glslang hidapi libtool libusb lz4 ninja nlohmann-json openssl qt@5 sdl2 speexdsp zlib zlib zstd
|
brew install autoconf automake boost@1.76 ccache ffmpeg fmt glslang hidapi libtool libusb lz4 ninja nlohmann-json openssl pkg-config qt@5 sdl2 speexdsp zlib zlib zstd
|
||||||
```
|
```
|
||||||
|
|
||||||
Build with debug symbols (vcpkg is not currently used due to broken boost-context library):
|
Build with debug symbols (vcpkg is not currently used due to broken boost-context library):
|
||||||
```sh
|
```sh
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
export Qt5_DIR="/opt/homebrew/opt/qt@5/lib/cmake"
|
export Qt5_DIR="/opt/homebrew/opt/qt@5/lib/cmake"
|
||||||
cmake .. -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DYUZU_USE_BUNDLED_VCPKG=OFF -DYUZU_TESTS=OFF -DENABLE_WEB_SERVICE=OFF
|
cmake .. -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DYUZU_USE_BUNDLED_VCPKG=OFF -DYUZU_TESTS=OFF -DENABLE_WEB_SERVICE=OFF -DENABLE_LIBUSB=OFF
|
||||||
ninja
|
ninja
|
||||||
```
|
```
|
||||||
|
|
||||||
|
TODO: use newer vcpkg. This fixes the boost context library, and allows using the web service
|
||||||
|
TODO: figure out what's up with libusb
|
||||||
|
|
||||||
Run the output:
|
Run the output:
|
||||||
```
|
```
|
||||||
bin/yuzu.app/Contents/MacOS/yuzu
|
bin/yuzu.app/Contents/MacOS/yuzu
|
||||||
|
|
Loading…
Reference in New Issue