diff options
| author | 2022-05-31 14:37:37 -0400 | |
|---|---|---|
| committer | 2022-06-01 02:15:15 -0400 | |
| commit | 989d4a7a41f449af0ea09e34bee331a3a3ac8170 (patch) | |
| tree | df24bd9d7e6942b939e3ea42d08c0d65006e539f /CMakeLists.txt | |
| parent | core/debugger: Implement new GDB stub debugger (diff) | |
| download | yuzu-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.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 | ||