Update README.md

This commit is contained in:
N0ffie 2025-03-20 14:34:17 +01:00
parent d93544b846
commit c33f1528b6

View file

@ -5,7 +5,7 @@ A simple game written in C++ and using SFML.
To build the project, you need to have [CMake](https://cmake.org/) installed.
### Linux
```bash
```sh
mkdir build
cd build
cmake ..
@ -13,7 +13,7 @@ make
```
### Windows
```bash
```sh
mkdir build
cd build
cmake -G "Visual Studio 17 2022" ..
@ -21,7 +21,7 @@ cmake --build . --config Release
```
### macOS
```bash
```sh
mkdir build
cd build
cmake -G "Xcode" ..