diff options
| author | 2024-01-29 22:17:00 +0100 | |
|---|---|---|
| committer | 2024-01-30 02:57:50 +0100 | |
| commit | 73e7a259fde9c121adae915986c5f1f9e6fc5d54 (patch) | |
| tree | d8d7d4532faba411fde01188da85664b75ca8bb1 /CMakeLists.txt | |
| parent | Merge pull request #12846 from german77/mii_const (diff) | |
| download | yuzu-73e7a259fde9c121adae915986c5f1f9e6fc5d54.tar.gz yuzu-73e7a259fde9c121adae915986c5f1f9e6fc5d54.tar.xz yuzu-73e7a259fde9c121adae915986c5f1f9e6fc5d54.zip | |
cmake: prefer system oaknut library
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index eb26fbfd8..f4b64544f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -322,6 +322,10 @@ if (ARCHITECTURE_x86 OR ARCHITECTURE_x86_64) | |||
| 322 | find_package(xbyak 6 CONFIG) | 322 | find_package(xbyak 6 CONFIG) |
| 323 | endif() | 323 | endif() |
| 324 | 324 | ||
| 325 | if (ARCHITECTURE_arm64) | ||
| 326 | find_package(oaknut 2.0.1 CONFIG) | ||
| 327 | endif() | ||
| 328 | |||
| 325 | if (ARCHITECTURE_x86_64 OR ARCHITECTURE_arm64) | 329 | if (ARCHITECTURE_x86_64 OR ARCHITECTURE_arm64) |
| 326 | find_package(dynarmic 6.4.0 CONFIG) | 330 | find_package(dynarmic 6.4.0 CONFIG) |
| 327 | endif() | 331 | endif() |