summaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
authorGravatar Morph2022-06-01 20:46:10 -0400
committerGravatar GitHub2022-06-01 20:46:10 -0400
commit858f8ac6d9f39a1be95dc2f5e83c752b725136ad (patch)
tree26d5733fe69193e76402bad78b1a3a8b791b6095 /src/video_core
parentMerge pull request #8400 from Docteh/fullscreen_glitch (diff)
parentcore/debugger: Improved stepping mechanism and misc fixes (diff)
downloadyuzu-858f8ac6d9f39a1be95dc2f5e83c752b725136ad.tar.gz
yuzu-858f8ac6d9f39a1be95dc2f5e83c752b725136ad.tar.xz
yuzu-858f8ac6d9f39a1be95dc2f5e83c752b725136ad.zip
Merge pull request #8402 from liamwhite/better-step
core/debugger: Improved stepping mechanism and misc fixes
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/CMakeLists.txt4
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 )
279endif() 279endif()
280
281if (ARCHITECTURE_x86_64)
282 target_link_libraries(video_core PRIVATE dynarmic)
283endif()