diff --git a/README.md b/README.md index 9c18d01..89e2db2 100644 --- a/README.md +++ b/README.md @@ -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" ..