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. To build the project, you need to have [CMake](https://cmake.org/) installed.
### Linux ### Linux
```bash ```sh
mkdir build mkdir build
cd build cd build
cmake .. cmake ..
@ -13,7 +13,7 @@ make
``` ```
### Windows ### Windows
```bash ```sh
mkdir build mkdir build
cd build cd build
cmake -G "Visual Studio 17 2022" .. cmake -G "Visual Studio 17 2022" ..
@ -21,7 +21,7 @@ cmake --build . --config Release
``` ```
### macOS ### macOS
```bash ```sh
mkdir build mkdir build
cd build cd build
cmake -G "Xcode" .. cmake -G "Xcode" ..