From 5081f9996ba65a5611e11aa2011c64dcf82175f3 Mon Sep 17 00:00:00 2001 From: Simon Lo Date: Mon, 12 Feb 2024 15:14:51 +0000 Subject: [PATCH] Update Getting-Started.md Correct boost version to 1.83.0 --- Documents/Getting-Started.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Documents/Getting-Started.md b/Documents/Getting-Started.md index f5bd80f2a..ac5c9f1cf 100644 --- a/Documents/Getting-Started.md +++ b/Documents/Getting-Started.md @@ -32,8 +32,8 @@ Notes: - If CMake cannot find it automatically, set hints for [finding Boost](https://cmake.org/cmake/help/latest/module/FindBoost.html), for example: - *Either* set ``Boost_DIR`` (PATH) to the location of the installed *BoostConfig.cmake* (since Boost 1.70.0) - - *Or* set ``BOOST_INCLUDEDIR`` (PATH) and ``BOOST_LIBRARYDIR`` (PATH) to the appropriate full paths, e.g. *````*``/boost_1_80_0`` - and *````*``/boost_1_80_0/x64/lib`` respectively to match the suggested ``b2`` command + - *Or* set ``BOOST_INCLUDEDIR`` (PATH) and ``BOOST_LIBRARYDIR`` (PATH) to the appropriate full paths, e.g. *````*``/boost_1_83_0`` + and *````*``/boost_1_83_0/x64/lib`` respectively to match the suggested ``b2`` command - If CMake cannot find them automatically, set hints for finding the C++ REST SDK and WebSocket++, for example: - Set ``cpprestsdk_DIR`` (PATH) to the location of the installed *cpprestsdk-config.cmake* - *Either* set ``websocketpp_DIR`` (PATH) to the location of the installed *websocketpp-config.cmake* @@ -75,8 +75,8 @@ cmake .. ^ -G "Visual Studio 16 2019" ^ -DCMAKE_CONFIGURATION_TYPES:STRING="Debug;Release" ^ -DBoost_USE_STATIC_LIBS:BOOL="1" ^ - -DBOOST_INCLUDEDIR:PATH="/boost_1_80_0" ^ - -DBOOST_LIBRARYDIR:PATH="/boost_1_80_0/x64/lib" ^ + -DBOOST_INCLUDEDIR:PATH="/boost_1_83_0" ^ + -DBOOST_LIBRARYDIR:PATH="/boost_1_83_0/x64/lib" ^ -DWEBSOCKETPP_INCLUDE_DIR:PATH="/cpprestsdk/Release/libs/websocketpp" ```