Skip to content

Commit

Permalink
Update Getting-Started.md
Browse files Browse the repository at this point in the history
Correct boost version to 1.83.0
  • Loading branch information
lo-simon authored Feb 12, 2024
1 parent 02094f6 commit 5081f99
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Documents/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. *``<home-dir>``*``/boost_1_80_0``
and *``<home-dir>``*``/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. *``<home-dir>``*``/boost_1_83_0``
and *``<home-dir>``*``/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*
Expand Down Expand Up @@ -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="<home-dir>/boost_1_80_0" ^
-DBOOST_LIBRARYDIR:PATH="<home-dir>/boost_1_80_0/x64/lib" ^
-DBOOST_INCLUDEDIR:PATH="<home-dir>/boost_1_83_0" ^
-DBOOST_LIBRARYDIR:PATH="<home-dir>/boost_1_83_0/x64/lib" ^
-DWEBSOCKETPP_INCLUDE_DIR:PATH="<home-dir>/cpprestsdk/Release/libs/websocketpp"
```

Expand Down

0 comments on commit 5081f99

Please sign in to comment.