Skip to content

Commit 64e3f1a

Browse files
authored
chore: update boost version in CMakeLists.txt (#200)
The documented minimum version of boost is 1.81. The `CMakeLists.txt` erroneously specified 1.80, which could potentially lead to 1.80 being selected and the build failing. This commit bumps it to 1.81, which includes the necessary `url` library.
1 parent 53aac7c commit 64e3f1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ endif ()
6969

7070
set(Boost_USE_MULTITHREADED ON)
7171
set(Boost_USE_STATIC_RUNTIME OFF)
72-
find_package(Boost 1.80 REQUIRED COMPONENTS json url coroutine)
72+
find_package(Boost 1.81 REQUIRED COMPONENTS json url coroutine)
7373
message(STATUS "LaunchDarkly: using Boost v${Boost_VERSION}")
7474

7575
add_subdirectory(libs/client-sdk)

0 commit comments

Comments
 (0)