From 7374c4a9a37eb1bb3c950f11797f341daa280262 Mon Sep 17 00:00:00 2001 From: Alex Kremer Date: Thu, 12 Oct 2023 02:40:50 +0100 Subject: [PATCH] Add BOOST_ROOT note to README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c0e6440f..6794e90e1 100644 --- a/README.md +++ b/README.md @@ -39,11 +39,13 @@ from your `clio`. ## Usage ### Compiling +> **Note:** The migrator uses **Boost 1.75.0**. You have to point the `BOOST_ROOT` env variable to its root directory. + Git-clone this project to your server. Then from the top-level directory: ```bash mkdir build cd build -cmake .. +BOOST_ROOT=/path/to/boost_1_75_0 cmake .. cmake --build . -j 4 ```