From d57d01c4b4fd934be31c59f4c8fb340183b20725 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sat, 18 Feb 2023 13:04:05 +0100 Subject: [PATCH] README.md: Add "sh" to code blocks. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c79c540..e1a511b 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ This project uses [cmake](https://cmake.org) build system (Version 3.15 or greater) to compile the engine. ### Linux with make. -``` +```sh $ mkdir build $ cd build $ cmake .. -G "Unix Makefiles" @@ -16,7 +16,7 @@ $ make ``` ### Windows using NMake -``` +```sh $ mkdir build $ cd build $ cmake .. -G "NMake Makefiles" @@ -25,7 +25,7 @@ $ nmake ### Or the best way (in my opinion) install [Ninja](https://ninja-build.org) and run -``` +```sh $ mkdir build $ cd build $ cmake .. -G Ninja