From 82e9b9b5f2b62f5eb7b0381d65e69da2b974100b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Thu, 8 Feb 2024 22:05:08 +0100 Subject: [PATCH] Update CMake build instructions for current CMake version --- 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 bc492e17..a1bb4358 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 -B build -S . -DBUILD_TESTING=OFF $ sudo cmake --build build/ --target install ```