Updated Building for macOS (markdown)

Merry 2017-11-11 13:51:26 +00:00
parent aade2c0e12
commit 3d21eeea92

@ -24,25 +24,18 @@ First of all, you have to tell CMake where your Qt5 is installed (add this line
export Qt5_DIR=$(brew --prefix)/opt/qt5 export Qt5_DIR=$(brew --prefix)/opt/qt5
``` ```
Now you can generate project files for the build: Now you can generate makefiles for the build:
``` ```
export MACOSX_DEPLOYMENT_TARGET=10.9 export MACOSX_DEPLOYMENT_TARGET=10.9
mkdir build mkdir build
cd build cd build
cmake .. -GXcode cmake .. -DUSE_SYSTEM_CURL=ON -DCMAKE_OSX_ARCHITECTURES="x86_64;x86_64h" -DCMAKE_BUILD_TYPE=Release
```
Optionally, you can use `cmake -i .. -GXcode` or `ccmake .. -GXcode` to adjust various options (e.g. disable Qt GUI).
#### Building with debug symbols:
```
cmake .. -GXcode -DCMAKE_BUILD_TYPE=Debug
``` ```
### Building Citra: This builds a fat binary that has slices targeting early and late x64 machines.
Open the project file in Xcode, switch the target from `ALL_BUILD` to `citra` or `citra_qt`, and press the play button. The project can also be built via: ### Building Citra
``` ```
xcodebuild -config Release -project citra.xcodeproj -target citra-qt make -j4
``` ```