From 32af8ddd3d63fe0936f9ae5b6ca09285bed1baff Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Sun, 5 May 2024 01:00:01 +0200 Subject: README.md: Fix CMake build instructions The previous instructions were simply wrong because `cmake ..` would attempt to configure the project from the parent directory, instead of the build directory. --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3138817..46cfae2 100644 --- a/README.md +++ b/README.md @@ -90,9 +90,8 @@ $ make #### CMake ```sh -$ mkdir build/ -$ cmake .. -$ cmake --build . +$ cmake -B build +$ cmake --build build/ ``` ### Setting up -- cgit v1.2.3