1
0
Fork 0

README.md: Add "sh" to code blocks.

This commit is contained in:
Henrik Hautakoski 2023-02-18 13:04:05 +01:00
parent 9c4c6152c9
commit d57d01c4b4

View file

@ -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