diff options
| author | 2018-11-21 02:20:22 -0500 | |
|---|---|---|
| committer | 2018-11-21 03:43:41 -0500 | |
| commit | 3533d33ff5d76afe3a8ff67f586effc5f0a1831e (patch) | |
| tree | ad6745b06b9a078a94a6cffb7e49073448d0924a /src/common/CMakeLists.txt | |
| parent | Merge pull request #1751 from bunnei/color-mask-fix (diff) | |
| download | yuzu-3533d33ff5d76afe3a8ff67f586effc5f0a1831e.tar.gz yuzu-3533d33ff5d76afe3a8ff67f586effc5f0a1831e.tar.xz yuzu-3533d33ff5d76afe3a8ff67f586effc5f0a1831e.zip | |
common: Remove dependency on xbyak
Xbyak is currently entirely unused. Rather than carting it along, remove
it and get rid of a dependency. If it's ever needed in the future, then
it can be re-added (and likely be more up to date at that point in
time).
Diffstat (limited to 'src/common/CMakeLists.txt')
| -rw-r--r-- | src/common/CMakeLists.txt | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index eccd8f64a..895ee53f1 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -95,14 +95,9 @@ if(ARCHITECTURE_x86_64) | |||
| 95 | PRIVATE | 95 | PRIVATE |
| 96 | x64/cpu_detect.cpp | 96 | x64/cpu_detect.cpp |
| 97 | x64/cpu_detect.h | 97 | x64/cpu_detect.h |
| 98 | x64/xbyak_abi.h | ||
| 99 | x64/xbyak_util.h | ||
| 100 | ) | 98 | ) |
| 101 | endif() | 99 | endif() |
| 102 | 100 | ||
| 103 | create_target_directory_groups(common) | 101 | create_target_directory_groups(common) |
| 104 | 102 | ||
| 105 | target_link_libraries(common PUBLIC Boost::boost fmt microprofile) | 103 | target_link_libraries(common PUBLIC Boost::boost fmt microprofile) |
| 106 | if (ARCHITECTURE_x86_64) | ||
| 107 | target_link_libraries(common PRIVATE xbyak) | ||
| 108 | endif() | ||