From 88eea8611789b901988bfbd7b7ad5342b174f947 Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Tue, 16 May 2017 11:37:47 +0100 Subject: [PATCH] cmake: directory --> folder; fix typo --- pages/common/cmake.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/common/cmake.md b/pages/common/cmake.md index c4e511f48..f07ce03ac 100644 --- a/pages/common/cmake.md +++ b/pages/common/cmake.md @@ -3,13 +3,13 @@ > Cross-platform build system generator. > It generates Makefiles, Visual Studio projects or others, depending on the target system. -- Generate a Makefile and use it to compile a project in the same directory as the source: +- Generate a Makefile and use it to compile a project in the same folder as the source: `cmake && make` -- Generate a Makefule and use it to compile a project in a separate directory (out-of-source build): +- Generate a Makefile and use it to compile a project in a separate folder (out-of-source build): -`cd {{build_dir}} && cmake ../ && make` +`cd {{build_folder}} && cmake ../ && make` - Run cmake in interactive mode (it will ask for each variable, instead of using defaults):