summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar Liam2022-05-31 14:37:37 -0400
committerGravatar Liam2022-06-01 02:15:15 -0400
commit989d4a7a41f449af0ea09e34bee331a3a3ac8170 (patch)
treedf24bd9d7e6942b939e3ea42d08c0d65006e539f /CMakeLists.txt
parentcore/debugger: Implement new GDB stub debugger (diff)
downloadyuzu-989d4a7a41f449af0ea09e34bee331a3a3ac8170.tar.gz
yuzu-989d4a7a41f449af0ea09e34bee331a3a3ac8170.tar.xz
yuzu-989d4a7a41f449af0ea09e34bee331a3a3ac8170.zip
core/debugger: Improved stepping mechanism and misc fixes
Diffstat (limited to 'CMakeLists.txt')
-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