diff options
author | Liam <byteslice@airmail.cc> | 2022-05-31 20:37:37 +0200 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-06-01 08:15:15 +0200 |
commit | 989d4a7a41f449af0ea09e34bee331a3a3ac8170 (patch) | |
tree | df24bd9d7e6942b939e3ea42d08c0d65006e539f /src/video_core/CMakeLists.txt | |
parent | core/debugger: Implement new GDB stub debugger (diff) | |
download | yuzu-989d4a7a41f449af0ea09e34bee331a3a3ac8170.tar yuzu-989d4a7a41f449af0ea09e34bee331a3a3ac8170.tar.gz yuzu-989d4a7a41f449af0ea09e34bee331a3a3ac8170.tar.bz2 yuzu-989d4a7a41f449af0ea09e34bee331a3a3ac8170.tar.lz yuzu-989d4a7a41f449af0ea09e34bee331a3a3ac8170.tar.xz yuzu-989d4a7a41f449af0ea09e34bee331a3a3ac8170.tar.zst yuzu-989d4a7a41f449af0ea09e34bee331a3a3ac8170.zip |
Diffstat (limited to 'src/video_core/CMakeLists.txt')
-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() $<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-variable> ) endif() + +if (ARCHITECTURE_x86_64) + target_link_libraries(video_core PRIVATE dynarmic) +endif() |