Skip to content

Commit

Permalink
Fix variable name in Linux build instructions
Browse files Browse the repository at this point in the history
0b41a1b (CMake: expose BUILD_TESTNG option, rename LOGGER to
ENABLE_LOGGER, 2024-04-29) had originally introduced this change. It
looks like d132a1c (Merge pull request #251 from
winterheart/pstring-unittests, 2024-05-01) unintentionally removed this
change.
  • Loading branch information
Jayman2000 committed May 2, 2024
1 parent 1ce01c9 commit 5780f94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -52,15 +52,15 @@ cmake --build --preset mac --config [Debug|Release]
```sh
sudo apt update
sudo apt install -y --no-install-recommends ninja-build cmake g++ libsdl1.2-dev libsdl-image1.2-dev libncurses-dev zlib1g-dev libspdlog-dev
cmake --preset linux -D LOGGER=[ON|OFF]
cmake --preset linux -D ENABLE_LOGGER=[ON|OFF]
cmake --build --preset linux --config [Debug|Release]
```

#### Building - Linux (Fedora)
```sh
sudo dnf update --refresh
sudo dnf install -y ninja-build cmake gcc-c++ SDL-devel SDL_image-devel ncurses-devel zlib-devel spdlog-devel
cmake --preset linux -D LOGGER=[ON|OFF]
cmake --preset linux -D ENABLE_LOGGER=[ON|OFF]
cmake --build --preset linux --config [Debug|Release]
```

Expand Down

0 comments on commit 5780f94

Please sign in to comment.