1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:22:09 +02:00

cmake: add missing space (#4955)

This commit is contained in:
Chasarr 2020-11-16 19:53:30 +01:00 committed by GitHub
parent 640ffc1d5d
commit f8d18031eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
> Cross-platform build system generator.
> It generates Makefiles, Visual Studio projects or others, depending on the target system.
> More information: <https://cmake.org/cmake/help/v3.2/manual/cmake.1.html>.
> More information: <https://cmake.org/cmake/help/latest/manual/cmake.1.html>.
- Generate a Makefile and use it to compile a project in the same directory as the source:
@ -10,4 +10,4 @@
- Generate a Makefile and use it to compile a project in a separate "build" directory (out-of-source build):
`cmake -H. -B{{build}} && make -C {{build}}`
`cmake -H. -B {{build}} && make -C {{build}}`