diff options
| author | 2018-11-21 02:20:22 -0500 | |
|---|---|---|
| committer | 2018-11-21 03:43:41 -0500 | |
| commit | 3533d33ff5d76afe3a8ff67f586effc5f0a1831e (patch) | |
| tree | ad6745b06b9a078a94a6cffb7e49073448d0924a /externals | |
| 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 'externals')
| -rw-r--r-- | externals/CMakeLists.txt | 9 | ||||
| m--------- | externals/xbyak | 0 |
2 files changed, 0 insertions, 9 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 1261062e8..e156bbece 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt | |||
| @@ -9,7 +9,6 @@ target_include_directories(catch-single-include INTERFACE catch/single_include) | |||
| 9 | 9 | ||
| 10 | # Dynarmic | 10 | # Dynarmic |
| 11 | if (ARCHITECTURE_x86_64) | 11 | if (ARCHITECTURE_x86_64) |
| 12 | add_library(xbyak INTERFACE) | ||
| 13 | set(DYNARMIC_TESTS OFF) | 12 | set(DYNARMIC_TESTS OFF) |
| 14 | set(DYNARMIC_NO_BUNDLED_FMT ON) | 13 | set(DYNARMIC_NO_BUNDLED_FMT ON) |
| 15 | add_subdirectory(dynarmic) | 14 | add_subdirectory(dynarmic) |
| @@ -53,14 +52,6 @@ target_include_directories(unicorn-headers INTERFACE ./unicorn/include) | |||
| 53 | # SoundTouch | 52 | # SoundTouch |
| 54 | add_subdirectory(soundtouch) | 53 | add_subdirectory(soundtouch) |
| 55 | 54 | ||
| 56 | # Xbyak | ||
| 57 | if (ARCHITECTURE_x86_64) | ||
| 58 | # Defined before "dynarmic" above | ||
| 59 | # add_library(xbyak INTERFACE) | ||
| 60 | target_include_directories(xbyak INTERFACE ./xbyak/xbyak) | ||
| 61 | target_compile_definitions(xbyak INTERFACE XBYAK_NO_OP_NAMES) | ||
| 62 | endif() | ||
| 63 | |||
| 64 | # Opus | 55 | # Opus |
| 65 | add_subdirectory(opus) | 56 | add_subdirectory(opus) |
| 66 | target_include_directories(opus INTERFACE ./opus/include) | 57 | target_include_directories(opus INTERFACE ./opus/include) |
diff --git a/externals/xbyak b/externals/xbyak deleted file mode 160000 | |||
| Subproject 1de435ed04c8e74775804da944d176baf0ce56e | |||