From 64d4a41efbda340e000b0ac69ad1c88b46e94f57 Mon Sep 17 00:00:00 2001 From: Anton Karmanov Date: Mon, 18 Jan 2021 22:02:53 +0500 Subject: [PATCH] cmake: update --install example --- pages/common/cmake.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/cmake.md b/pages/common/cmake.md index efcf23ae04..805e1c3c0c 100644 --- a/pages/common/cmake.md +++ b/pages/common/cmake.md @@ -12,9 +12,9 @@ `cmake --build {{path/to/build_dir/}}` -- Install the project: +- Install the build artifacts into /usr/local/ striping debugging symbols: -`cmake --install {{path/to/build_dir/}}` +`cmake --install {{path/to/build_directory}} --strip --prefix /usr/local/` - Run a custom build target: