From aa2107a698582e0ff835280fde3d8c457982618a Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Thu, 24 Nov 2022 11:05:53 -0800 Subject: [PATCH] Fixed install instructions --- INSTALL.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/INSTALL.txt b/INSTALL.txt index 01fc2b554a..5e0a70159a 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -5,19 +5,19 @@ To compile and install SDL: * Read ./docs/README-visualc.md Windows building with mingw64 for x86: - * Run: cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=build-scripts/cmake-toolchain-mingw64-i686.cmake && cmake --build build && cmake --install install + * Run: cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=build-scripts/cmake-toolchain-mingw64-i686.cmake && cmake --build build && cmake --install build Windows building with mingw64 for x64: - * Run: cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=build-scripts/cmake-toolchain-mingw64-x86_64.cmake && cmake --build build && cmake --install install + * Run: cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=build-scripts/cmake-toolchain-mingw64-x86_64.cmake && cmake --build build && cmake --install build macOS with Xcode: * Read docs/README-macosx.md macOS from the command line: - * Run: cmake -S . -B build && cmake --build build && cmake --install install + * Run: cmake -S . -B build && cmake --build build && cmake --install build Linux and other UNIX systems: - * Run: cmake -S . -B build && cmake --build build && cmake --install install + * Run: cmake -S . -B build && cmake --build build && cmake --install build Android: * Read docs/README-android.md