From f0b370716b9175125e24d0f16ba43de9322370e3 Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Sat, 16 Apr 2022 16:33:27 -0400 Subject: [PATCH] don't use make in cmake instructions (closes #236) --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b5935d9..9c53df2 100644 --- a/README.md +++ b/README.md @@ -38,9 +38,8 @@ For compilation of the C library, run `make`. You can also install the library Alternatively, you can compile with `cmake`, e.g. by ```sh mkdir build -cd build -cmake .. -make +cmake -S . -B build +cmake --build build ``` ### Using other compilers