From f2cd04bde821178305b7ca13117ab3438d51d9b8 Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Thu, 16 Jun 2022 14:58:36 +0300 Subject: [PATCH] Fix another shell example --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 90a32b6..c5040a9 100644 --- a/README.md +++ b/README.md @@ -147,7 +147,10 @@ Dependencies: To build standalone version: - cmake . && make +```shell +cmake . +cmake --build . +``` Following variables may be supplied to CMake to affect build: @@ -163,7 +166,7 @@ Following variables may be supplied to CMake to affect build: To install the library system-wide, run: -```sh +```shell cmake . cmake --build . cmake --install . @@ -172,7 +175,7 @@ cmake --install . You can change installation prefix with CMAKE_INSTALL_PREFIX cmake variable: -```sh +```shell cmake -DCMAKE_INSTALL_PREFIX=/usr/local . cmake --build . cmake --install .