diff options
Diffstat (limited to '')
| -rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8e3de90ff..be70c04ae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -222,6 +222,11 @@ else() | |||
| 222 | list(APPEND CONAN_REQUIRED_LIBS "boost/1.79.0") | 222 | list(APPEND CONAN_REQUIRED_LIBS "boost/1.79.0") |
| 223 | endif() | 223 | endif() |
| 224 | 224 | ||
| 225 | # boost:asio has functions that require AcceptEx et al | ||
| 226 | if (MINGW) | ||
| 227 | find_library(MSWSOCK_LIBRARY mswsock REQUIRED) | ||
| 228 | endif() | ||
| 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 |
| 226 | yuzu_find_packages() | 231 | yuzu_find_packages() |
| 227 | 232 | ||