diff options
author | Liam <byteslice@airmail.cc> | 2022-05-31 14:37:37 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-06-01 02:15:15 -0400 |
commit | 989d4a7a41f449af0ea09e34bee331a3a3ac8170 (patch) | |
tree | df24bd9d7e6942b939e3ea42d08c0d65006e539f /CMakeLists.txt | |
parent | fb4b3c127f7c390358d7f4cadd2f58de116fec48 (diff) |
core/debugger: Improved stepping mechanism and misc fixes
Diffstat (limited to 'CMakeLists.txt')
-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() list(APPEND CONAN_REQUIRED_LIBS "boost/1.79.0") endif() +# boost:asio has functions that require AcceptEx et al +if (MINGW) + find_library(MSWSOCK_LIBRARY mswsock REQUIRED) +endif() + # Attempt to locate any packages that are required and report the missing ones in CONAN_REQUIRED_LIBS yuzu_find_packages() |