From 80b2e579e15f1138d7229fc050f5bf089a2a3c40 Mon Sep 17 00:00:00 2001 From: Pierre de La Morinerie Date: Sat, 1 Aug 2015 20:10:36 +0200 Subject: [PATCH] Better location for CMake instructions --- Building-for-OS-X.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Building-for-OS-X.md b/Building-for-OS-X.md index 6cc1cf1..32744d2 100644 --- a/Building-for-OS-X.md +++ b/Building-for-OS-X.md @@ -17,9 +17,7 @@ cd ~/dolphin-emu To build with CMake (optionally verbose): Download and install [CMake](http://www.cmake.org/cmake/resources/software.html) if you don't have it. -#### CMake Notes - -To build Dolphin from scratch using CMake, +Then: ```bash mkdir -p build cd build @@ -27,6 +25,8 @@ cmake .. make ``` +#### CMake Notes + The `-j` option can be passed to `make` in order to compile multiple objects at once. A good rule of thumb is number of CPU cores plus one. For example, on a quad core CPU `make -j5` would be a good choice.