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