From 521b9ba3edc0de5459eeb8e844afc6cb9ce2553e Mon Sep 17 00:00:00 2001 From: Daniel Way Date: Fri, 5 Jan 2024 16:20:20 -0700 Subject: [PATCH] Update CMake configure command Need to use `-S` instead of `-H` --- docs/cmake-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cmake-integration.md b/docs/cmake-integration.md index 86666efe..c0f3059e 100644 --- a/docs/cmake-integration.md +++ b/docs/cmake-integration.md @@ -384,7 +384,7 @@ install it to the default location, like so: ``` $ git clone https://github.com/catchorg/Catch2.git $ cd Catch2 -$ cmake -Bbuild -H. -DBUILD_TESTING=OFF +$ cmake -Bbuild -S. -DBUILD_TESTING=OFF $ sudo cmake --build build/ --target install ```