From 6b21c4f6c9ab4201a6ba72f50cfa7793429273ef Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Tue, 7 Apr 2015 14:41:23 +0200 Subject: [PATCH] Fixed out-of-tree build documentation. Fixes #489. --- docs/compile.dox | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/docs/compile.dox b/docs/compile.dox index 11d3798c..b67a1346 100644 --- a/docs/compile.dox +++ b/docs/compile.dox @@ -127,15 +127,14 @@ cd cmake . @endcode -To make an out-of-tree build, make another directory, enter it and run CMake -with the (relative or absolute) path to the root of the source tree as an -argument. +To make an out-of-tree build, make a directory outside of the source tree, enter +it and run CMake with the (relative or absolute) path to the root of the source +tree as an argument. @code{.sh} -cd -mkdir build -cd build -cmake .. +mkdir glfw-build +cd glfw-build +cmake @endcode Once you have generated the project files or makefiles for your chosen