From 18667a77e26377b531eefb2fb1a71e64e25fbd56 Mon Sep 17 00:00:00 2001 From: Maribel Date: Sun, 6 Mar 2016 18:22:04 +0000 Subject: [PATCH] Updated for SDL2 --- Building-For-OS-X.md | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/Building-For-OS-X.md b/Building-For-OS-X.md index c526e42..7829d43 100644 --- a/Building-For-OS-X.md +++ b/Building-For-OS-X.md @@ -4,23 +4,10 @@ It's recommended that you use [homebrew](https://brew.sh) to install dependencie You'll need to download and install the following to build Citra: * [pkg-config](http://www.freedesktop.org/wiki/Software/pkg-config/) (`brew install pkgconfig`) -* [GLFW](http://www.glfw.org/download.html) (`brew tap homebrew/versions`, `brew install glfw3`) +* [SDL2](https://www.libsdl.org/download-2.0.php) (`brew install sdl2`, or download [this dmg](https://www.libsdl.org/release/SDL2-2.0.4.dmg)) * [Qt5](http://qt-project.org/downloads) (`brew install qt5`) * [CMake](http://www.cmake.org/) (`brew install cmake`) -#### Building GLFW from source: - -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 -``` - ### Cloning Citra in Git: ```