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

cmake: apply suggestions from review

Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
This commit is contained in:
Anton Karmanov 2021-01-18 22:07:09 +05:00 committed by Starbeamrainbowlabs
parent 64d4a41efb
commit c39095a21d

View file

@ -1,16 +1,16 @@
# cmake
> Cross-platform build, testing and packaging automation system.
> CMake uses own shell-like syntax and generates recipes for several build systems.
> CMake uses its own shell-like syntax and generates recipes for many build systems.
> More information: <https://cmake.org/cmake/help/latest/manual/cmake.1.html>.
- Generate a build recipe in the current directory with CMakeLists.txt from a project directory:
- Generate a build recipe in the current directory with `CMakeLists.txt` from a project directory:
`cmake {{path/to/project_dir/}}`
`cmake {{path/to/project_directory}}`
- Build with the generated recipe in build_dir (artifacts go to build_dir):
- Build artifacts with the generated recipe in `build_directory`:
`cmake --build {{path/to/build_dir/}}`
`cmake --build {{path/to/build_directory}}`
- Install the build artifacts into /usr/local/ striping debugging symbols: