forked from neobrain/citra
-
Notifications
You must be signed in to change notification settings - Fork 2
OS X Build
yuriks edited this page Dec 16, 2014
·
10 revisions
It's recommended that you use homebrew to install dependencies. You'll need to download and install the following to build Citra:
-
pkg-config (
brew install pkgconfig
) -
GLFW (
brew tap homebrew/versions
,brew install glfw3
) -
Qt5 (
brew install qt5
) -
CMake (
brew install cmake
)
Should you choose not to use homebrew, type these commands in a terminal:
git clone https://github.com/glfw/glfw.git
cd glfw
mkdir build && cd build
cmake ..
make
sudo make install
git clone --recursive https://github.com/citra-emu/citra
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
In the case that you installed Qt5 with Homebrew, this path is probably something like /usr/local/Cellar/qt5/<specific version here>/clang_64/lib/cmake
.
mkdir build
cd build
cmake .. -GXcode
Optionally, you can use cmake -i .. -GXcode
or ccmake .. -GXcode
to adjust various options (e.g. disable Qt GUI).
cmake .. -GXcode -DCMAKE_BUILD_TYPE=Debug
Open the project file in Xcode, switch the target from ALL_BUILD
to citra
or citra_qt
, and press the play button.