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.
This commit is contained in:
Xavier Del Campo Romero 2024-05-05 01:00:01 +02:00
parent b4572c6217
commit 32af8ddd3d
Signed by: xavi
GPG Key ID: 84FF3612A9BF43F2

View File

@ -90,9 +90,8 @@ $ make
#### CMake #### CMake
```sh ```sh
$ mkdir build/ $ cmake -B build
$ cmake .. $ cmake --build build/
$ cmake --build .
``` ```
### Setting up ### Setting up