From f8d18031eb6e679df6914c77d271e3453fbd642e Mon Sep 17 00:00:00 2001 From: Chasarr <34444482+Chasarr@users.noreply.github.com> Date: Mon, 16 Nov 2020 19:53:30 +0100 Subject: [PATCH] cmake: add missing space (#4955) --- 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 5c15a27c4..73d8bc626 100644 --- a/pages/common/cmake.md +++ b/pages/common/cmake.md @@ -2,7 +2,7 @@ > Cross-platform build system generator. > It generates Makefiles, Visual Studio projects or others, depending on the target system. -> More information: . +> More information: . - 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}}`