From f1686147c4cb5d1675a108a0ff1558c58cb96e9e Mon Sep 17 00:00:00 2001 From: Rainer Winkler Date: Sat, 27 Feb 2021 19:39:04 +0100 Subject: [PATCH] doc: Adapt cmake -DBOOST_ROOT path in README to reflect downgrade of boost (#1153) With #775 Boost was downgraded to 1.67 (from 1.68). With pull request #807 the readme file was corrected. But this correction was not complete. The example path for the -DBOOST_ROOT parameter of cmake was left unchanged. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9cf802a3..79838920 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ Building Sourcetrail requires several dependencies to be in place on your machin $ cd Sourcetrail $ mkdir -p build/win64 $ cd build/win64 - $ cmake -G "Visual Studio 15 2017 Win64" -DBOOST_ROOT= -DQt5_DIR= ../.. + $ cmake -G "Visual Studio 15 2017 Win64" -DBOOST_ROOT= -DQt5_DIR= ../.. ``` _Hint: If you are using the CMake GUI, we recommend that you activate advanced mode. Also you may be required to add some of the defines via the "Add Entry" button._ @@ -126,7 +126,7 @@ Building Sourcetrail requires several dependencies to be in place on your machin $ cd Sourcetrail $ mkdir -p build/Release $ cd build/Release - $ cmake -DCMAKE_BUILD_TYPE="Release" -DBOOST_ROOT= -DQt5_DIR= ../.. + $ cmake -DCMAKE_BUILD_TYPE="Release" -DBOOST_ROOT= -DQt5_DIR= ../.. ``` * Now start the build with: ```