From e534213a5b89597af6a3af9dfc269e2965282e09 Mon Sep 17 00:00:00 2001 From: Chris Hennes Date: Sun, 23 Jun 2024 21:40:23 -0500 Subject: [PATCH] Update README.rst Update the build instructions for the C++ library. --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 689f3a9f..28e4cdad 100644 --- a/README.rst +++ b/README.rst @@ -199,9 +199,9 @@ Make sure you have a compiler, git, cmake and Boost installed (or simply downloa cd opencamlib mkdir build cd build - cmake .. -D CXX_LIB="ON" - make . # try make -j4 for a faster build if you have a multi-core machine - make install . + cmake .. -D BUILD_CXX_LIB="ON" + cmake --build . # try make --parallel for a faster build if you have a multi-core machine + cmake --install . When boost is not in a standard location, you can add the ``-D BOOST_ROOT=/path/to/boost`` option to the cmake command.