diff options
| author | 2022-05-31 14:37:37 -0400 | |
|---|---|---|
| committer | 2022-06-01 02:15:15 -0400 | |
| commit | 989d4a7a41f449af0ea09e34bee331a3a3ac8170 (patch) | |
| tree | df24bd9d7e6942b939e3ea42d08c0d65006e539f /src/video_core | |
| 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 'src/video_core')
| -rw-r--r-- | src/video_core/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index 6a6325e38..256695804 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt | |||
| @@ -277,3 +277,7 @@ else() | |||
| 277 | $<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-variable> | 277 | $<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-variable> |
| 278 | ) | 278 | ) |
| 279 | endif() | 279 | endif() |
| 280 | |||
| 281 | if (ARCHITECTURE_x86_64) | ||
| 282 | target_link_libraries(video_core PRIVATE dynarmic) | ||
| 283 | endif() | ||