Skip to content

Commit

Permalink
cmake: directory --> folder; fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
waldyrious authored May 16, 2017
1 parent 9fbc74e commit 88eea86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pages/common/cmake.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):

Expand Down

0 comments on commit 88eea86

Please sign in to comment.