mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-03 13:35:43 +02:00
cmake: directory --> folder; fix typo
This commit is contained in:
parent
9fbc74e1de
commit
88eea86117
1 changed files with 3 additions and 3 deletions
|
@ -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):
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue