diff --git a/Building-For-OS-X.md b/Building-For-OS-X.md index 7829d43..c7d785b 100644 --- a/Building-For-OS-X.md +++ b/Building-For-OS-X.md @@ -20,12 +20,12 @@ cd citra First of all, you have to tell CMake where your Qt5 is installed (add this line to ~/.profile if you want to make this permanent.): ``` -export CMAKE_PREFIX_PATH=/path/to/Qt5/5.X/clang_64/lib/cmake:$CMAKE_PREFIX_PATH +export Qt5_DIR=$(brew --prefix)/opt/qt5 ``` -In the case that you installed Qt5 with Homebrew, this path is probably something like `/usr/local/Cellar/qt5//lib/cmake`. - +Now you can generate project files for the build: ``` +export MACOSX_DEPLOYMENT_TARGET=10.9 mkdir build cd build cmake .. -GXcode