From 07e835c1b5a410765c341dba7fcfccbd991d118a Mon Sep 17 00:00:00 2001 From: LaneRendell Date: Wed, 11 Jun 2025 09:24:17 -0400 Subject: [PATCH] Fixing ReadMe, quotes needed or it wont put the install for SDL in the right spot. (At least in Windows Terminal). --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7afba6f..a0e74f2 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,11 @@ Download and build [SDL3](https://github.com/libsdl-org/SDL) which we will be us ``` # Builds and installs Debug libraries -cmake -S . -B build/debug -G "Visual Studio 17 2022" -DCMAKE_INSTALL_PREFIX=./install -DCMAKE_BUILD_TYPE=Debug +cmake -S . -B build/debug -G "Visual Studio 17 2022" -DCMAKE_INSTALL_PREFIX="./install" -DCMAKE_BUILD_TYPE=Debug cmake --build build/debug --target install --config Debug # Builds and installs Release libraries -cmake -S . -B build/release -G "Visual Studio 17 2022" -DCMAKE_INSTALL_PREFIX=./install -DCMAKE_BUILD_TYPE=Release +cmake -S . -B build/release -G "Visual Studio 17 2022" -DCMAKE_INSTALL_PREFIX="./install" -DCMAKE_BUILD_TYPE=Release cmake --build build/release --target install --config Release ```