From a79f08e07242ef46e977ef25c1b0d99c3b9d3b3c Mon Sep 17 00:00:00 2001 From: Luc Grosheintz Date: Thu, 16 Nov 2023 10:11:34 +0100 Subject: [PATCH 1/2] Typo in installation guide. --- doc/installation.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/installation.md b/doc/installation.md index 41521bba5..fc6b12efd 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -211,10 +211,13 @@ this you type Okay, on to configure, compile and install. The CMake commands are - cmake -DCMAKE_INSTALL_PREFIX=../highfive-v2.7.1 -DHIGHFIVE_USE_BOOST=Off -B build . + cmake -DCMAKE_INSTALL_PREFIX=build/install -DHIGHFIVE_USE_BOOST=Off -B build . cmake --build build --parallel cmake --install build +Later you'd the installation directory, i.e. `${PWD}/build/install`, to +`CMAKE_PREFIX_PATH`. + ### Confirming It Works We again need a dummy file called `dummy.cpp` with the following contents From bdb0fb34cd5568333749b2a808c0e9b15a29526e Mon Sep 17 00:00:00 2001 From: Luc Grosheintz Date: Thu, 16 Nov 2023 10:12:58 +0100 Subject: [PATCH 2/2] Update doc/installation.md --- doc/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/installation.md b/doc/installation.md index fc6b12efd..e9c5b2e6e 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -215,7 +215,7 @@ Okay, on to configure, compile and install. The CMake commands are cmake --build build --parallel cmake --install build -Later you'd the installation directory, i.e. `${PWD}/build/install`, to +Later you'd pass the installation directory, i.e. `${PWD}/build/install`, to `CMAKE_PREFIX_PATH`. ### Confirming It Works