From c39095a21da3d1ac458200d426d993975e10c944 Mon Sep 17 00:00:00 2001 From: Anton Karmanov Date: Mon, 18 Jan 2021 22:07:09 +0500 Subject: [PATCH] cmake: apply suggestions from review Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> --- pages/common/cmake.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/common/cmake.md b/pages/common/cmake.md index 805e1c3c0c..5f2ac7e96e 100644 --- a/pages/common/cmake.md +++ b/pages/common/cmake.md @@ -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: . -- 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: