From beb3aeebd7b5bd51e02537dcd8adf3c11245f309 Mon Sep 17 00:00:00 2001 From: archshift Date: Sun, 7 Dec 2014 19:22:50 -0800 Subject: [PATCH] Added step where you tell cmake where Qt5 lives. --- OS-X-Build.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/OS-X-Build.md b/OS-X-Build.md index f3fcae1..5b1d747 100644 --- a/OS-X-Build.md +++ b/OS-X-Build.md @@ -30,6 +30,14 @@ cd citra ### Using CMake: +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 +``` + +In the case that you installed Qt5 with Homebrew, this path is probably something like `/usr/local/Cellar/qt5//clang_64/lib/cmake`. + ``` mkdir build cd build