From 8b25d7cde24a8786558c88b0c19a182ed669f91a Mon Sep 17 00:00:00 2001 From: Nikolaos Pothitos Date: Sun, 17 Nov 2024 20:33:11 +0200 Subject: [PATCH] readme : indent commands in lettered list --- docs/build.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/build.md b/docs/build.md index 5465629e2..97e340ab6 100644 --- a/docs/build.md +++ b/docs/build.md @@ -26,17 +26,17 @@ cmake --build build --config Release 1. Single-config generators (e.g. default = `Unix Makefiles`; note that they just ignore the `--config` flag): - ```bash - cmake -B build -DCMAKE_BUILD_TYPE=Debug - cmake --build build - ``` + ```bash + cmake -B build -DCMAKE_BUILD_TYPE=Debug + cmake --build build + ``` 2. Multi-config generators (`-G` param set to Visual Studio, XCode...): - ```bash - cmake -B build -G "Xcode" - cmake --build build --config Debug - ``` + ```bash + cmake -B build -G "Xcode" + cmake --build build --config Debug + ``` For more details and a list of supported generators, see the [CMake documentation](https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html).