diff options
| author | 2022-11-06 16:45:36 -0500 | |
|---|---|---|
| committer | 2022-11-09 16:58:49 -0500 | |
| commit | cbaf642ffe4b05f8796798ebdc5c6892605928cc (patch) | |
| tree | 8ac4094f709da71b334c152e111247c89c958cee /CMakeLists.txt | |
| parent | Merge pull request #9215 from liamwhite/swordfight (diff) | |
| download | yuzu-cbaf642ffe4b05f8796798ebdc5c6892605928cc.tar.gz yuzu-cbaf642ffe4b05f8796798ebdc5c6892605928cc.tar.xz yuzu-cbaf642ffe4b05f8796798ebdc5c6892605928cc.zip | |
Initial ARM64 support
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c6fc5dd9e..1d13dc74e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -133,13 +133,13 @@ if (NOT ENABLE_GENERIC) | |||
| 133 | if (MSVC) | 133 | if (MSVC) |
| 134 | detect_architecture("_M_AMD64" x86_64) | 134 | detect_architecture("_M_AMD64" x86_64) |
| 135 | detect_architecture("_M_IX86" x86) | 135 | detect_architecture("_M_IX86" x86) |
| 136 | detect_architecture("_M_ARM" ARM) | 136 | detect_architecture("_M_ARM" arm) |
| 137 | detect_architecture("_M_ARM64" ARM64) | 137 | detect_architecture("_M_ARM64" arm64) |
| 138 | else() | 138 | else() |
| 139 | detect_architecture("__x86_64__" x86_64) | 139 | detect_architecture("__x86_64__" x86_64) |
| 140 | detect_architecture("__i386__" x86) | 140 | detect_architecture("__i386__" x86) |
| 141 | detect_architecture("__arm__" ARM) | 141 | detect_architecture("__arm__" arm) |
| 142 | detect_architecture("__aarch64__" ARM64) | 142 | detect_architecture("__aarch64__" arm64) |
| 143 | endif() | 143 | endif() |
| 144 | endif() | 144 | endif() |
| 145 | 145 | ||