Skip to content

Commit 5081f99

Browse files
authored
Update Getting-Started.md
Correct boost version to 1.83.0
1 parent 02094f6 commit 5081f99

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Documents/Getting-Started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Notes:
3232

3333
- If CMake cannot find it automatically, set hints for [finding Boost](https://cmake.org/cmake/help/latest/module/FindBoost.html), for example:
3434
- *Either* set ``Boost_DIR`` (PATH) to the location of the installed *BoostConfig.cmake* (since Boost 1.70.0)
35-
- *Or* set ``BOOST_INCLUDEDIR`` (PATH) and ``BOOST_LIBRARYDIR`` (PATH) to the appropriate full paths, e.g. *``<home-dir>``*``/boost_1_80_0``
36-
and *``<home-dir>``*``/boost_1_80_0/x64/lib`` respectively to match the suggested ``b2`` command
35+
- *Or* set ``BOOST_INCLUDEDIR`` (PATH) and ``BOOST_LIBRARYDIR`` (PATH) to the appropriate full paths, e.g. *``<home-dir>``*``/boost_1_83_0``
36+
and *``<home-dir>``*``/boost_1_83_0/x64/lib`` respectively to match the suggested ``b2`` command
3737
- If CMake cannot find them automatically, set hints for finding the C++ REST SDK and WebSocket++, for example:
3838
- Set ``cpprestsdk_DIR`` (PATH) to the location of the installed *cpprestsdk-config.cmake*
3939
- *Either* set ``websocketpp_DIR`` (PATH) to the location of the installed *websocketpp-config.cmake*
@@ -75,8 +75,8 @@ cmake .. ^
7575
-G "Visual Studio 16 2019" ^
7676
-DCMAKE_CONFIGURATION_TYPES:STRING="Debug;Release" ^
7777
-DBoost_USE_STATIC_LIBS:BOOL="1" ^
78-
-DBOOST_INCLUDEDIR:PATH="<home-dir>/boost_1_80_0" ^
79-
-DBOOST_LIBRARYDIR:PATH="<home-dir>/boost_1_80_0/x64/lib" ^
78+
-DBOOST_INCLUDEDIR:PATH="<home-dir>/boost_1_83_0" ^
79+
-DBOOST_LIBRARYDIR:PATH="<home-dir>/boost_1_83_0/x64/lib" ^
8080
-DWEBSOCKETPP_INCLUDE_DIR:PATH="<home-dir>/cpprestsdk/Release/libs/websocketpp"
8181
```
8282

0 commit comments

Comments
 (0)