Update README.md - consistency

This commit is contained in:
Jeod 2024-04-24 14:18:40 -04:00 committed by GitHub
parent aab8fbb3c9
commit d3312b7f57
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,14 +28,14 @@ Build steps below assume you have already cloned the repository and entered it l
Requires Visual Studio C++ Tools (cmake and vcpkg)
```sh
cmake --preset win
cmake --build --preset win --config [Debug/Release] -D LOGGER=[ON|OFF]
cmake --build --preset win --config [Debug|Release] -D LOGGER=[ON|OFF]
```
#### Building - MacOS
```sh
brew bundle install
cmake --preset mac
cmake --build --preset mac --config [Debug/Release] -D LOGGER=[ON|OFF]
cmake --build --preset mac --config [Debug|Release] -D LOGGER=[ON|OFF]
```
#### Building - Linux
@ -44,7 +44,7 @@ sudo dpkg --add-architecture i386
sudo apt update
sudo apt install -y --no-install-recommends ninja-build cmake g++ libsdl1.2-dev libsdl-image1.2-dev libncurses-dev libxext6:i386 zlib1g-dev
cmake --preset linux
cmake --build --preset linux --config [Debug/Release] -D LOGGER=[ON|OFF]
cmake --build --preset linux --config [Debug|Release] -D LOGGER=[ON|OFF]
```
## Contributing