diff options
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index fe12f3d23..be70c04ae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -218,8 +218,13 @@ if (Boost_FOUND) | |||
| 218 | list(APPEND Boost_LIBRARIES Boost::context) | 218 | list(APPEND Boost_LIBRARIES Boost::context) |
| 219 | endif() | 219 | endif() |
| 220 | else() | 220 | else() |
| 221 | message(STATUS "Boost 1.73.0 or newer not found, falling back to Conan") | 221 | message(STATUS "Boost 1.79.0 or newer not found, falling back to Conan") |
| 222 | list(APPEND CONAN_REQUIRED_LIBS "boost/1.78.0") | 222 | list(APPEND CONAN_REQUIRED_LIBS "boost/1.79.0") |
| 223 | endif() | ||
| 224 | |||
| 225 | # boost:asio has functions that require AcceptEx et al | ||
| 226 | if (MINGW) | ||
| 227 | find_library(MSWSOCK_LIBRARY mswsock REQUIRED) | ||
| 223 | endif() | 228 | endif() |
| 224 | 229 | ||
| 225 | # Attempt to locate any packages that are required and report the missing ones in CONAN_REQUIRED_LIBS | 230 | # Attempt to locate any packages that are required and report the missing ones in CONAN_REQUIRED_LIBS |