diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-06-01 20:46:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-01 20:46:10 -0400 |
commit | 858f8ac6d9f39a1be95dc2f5e83c752b725136ad (patch) | |
tree | 26d5733fe69193e76402bad78b1a3a8b791b6095 /src/yuzu | |
parent | af418eb6662bcb859e7922105d9ad6ba50dec3ac (diff) | |
parent | 989d4a7a41f449af0ea09e34bee331a3a3ac8170 (diff) |
Merge pull request #8402 from liamwhite/better-step
core/debugger: Improved stepping mechanism and misc fixes
Diffstat (limited to 'src/yuzu')
-rw-r--r-- | src/yuzu/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index 404acdd05..07df9675d 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt @@ -319,3 +319,7 @@ endif() if (NOT APPLE) target_compile_definitions(yuzu PRIVATE HAS_OPENGL) endif() + +if (ARCHITECTURE_x86_64) + target_link_libraries(yuzu PRIVATE dynarmic) +endif() |