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 1, 2024
1 parent 0254bec commit 0833788
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -53,7 +53,7 @@ cmake --build --preset mac --config [Debug|Release]
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 spdlog-dev
cmake --preset linux -D LOGGER=[ON|OFF]
cmake --preset linux -D ENABLE_LOGGER=[ON|OFF]
cmake --build --preset linux --config [Debug|Release]
```

Expand All @@ -62,7 +62,7 @@ cmake --build --preset linux --config [Debug|Release]
sudo dnf update --refresh
sudo dnf install -y ninja-build cmake gcc-c++ SDL-devel SDL_image-devel ncurses-devel libXext.x86_64 zlib-devel spdlog-devel
sudo dnf install -y libXext.i686
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 0833788

Please sign in to comment.