summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--CMakeLists.txt5
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")
223endif() 223endif()
224 224
225# boost:asio has functions that require AcceptEx et al
226if (MINGW)
227 find_library(MSWSOCK_LIBRARY mswsock REQUIRED)
228endif()
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
226yuzu_find_packages() 231yuzu_find_packages()
227 232