diff options
| author | 2023-06-16 00:08:53 -0400 | |
|---|---|---|
| committer | 2023-06-16 00:08:53 -0400 | |
| commit | c7fc5b934848bdb4c9ddb2fae84fa1967ce0b767 (patch) | |
| tree | 8a95e596c58f2f6778f0f783039decb65bf13228 | |
| parent | Merge pull request #10795 from german77/foomiibo (diff) | |
| parent | Re-enable SDL's CPUinfo subsystem (diff) | |
| download | yuzu-c7fc5b934848bdb4c9ddb2fae84fa1967ce0b767.tar.gz yuzu-c7fc5b934848bdb4c9ddb2fae84fa1967ce0b767.tar.xz yuzu-c7fc5b934848bdb4c9ddb2fae84fa1967ce0b767.zip | |
Merge pull request #10739 from zeltermann/sdl-cpuinfo
Re-enable SDL's `CPUinfo` subsystem
Diffstat (limited to '')
| -rw-r--r-- | externals/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index e48137080..7cce27d51 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt | |||
| @@ -63,8 +63,9 @@ if (YUZU_USE_EXTERNAL_SDL2) | |||
| 63 | # Yuzu itself needs: Atomic Audio Events Joystick Haptic Sensor Threads Timers | 63 | # Yuzu itself needs: Atomic Audio Events Joystick Haptic Sensor Threads Timers |
| 64 | # Since 2.0.18 Atomic+Threads required for HIDAPI/libusb (see https://github.com/libsdl-org/SDL/issues/5095) | 64 | # Since 2.0.18 Atomic+Threads required for HIDAPI/libusb (see https://github.com/libsdl-org/SDL/issues/5095) |
| 65 | # Yuzu-cmd also needs: Video (depends on Loadso/Dlopen) | 65 | # Yuzu-cmd also needs: Video (depends on Loadso/Dlopen) |
| 66 | # CPUinfo also required for SDL Audio, at least until 2.28.0 (see https://github.com/libsdl-org/SDL/issues/7809) | ||
| 66 | set(SDL_UNUSED_SUBSYSTEMS | 67 | set(SDL_UNUSED_SUBSYSTEMS |
| 67 | CPUinfo File Filesystem | 68 | File Filesystem |
| 68 | Locale Power Render) | 69 | Locale Power Render) |
| 69 | foreach(_SUB ${SDL_UNUSED_SUBSYSTEMS}) | 70 | foreach(_SUB ${SDL_UNUSED_SUBSYSTEMS}) |
| 70 | string(TOUPPER ${_SUB} _OPT) | 71 | string(TOUPPER ${_SUB} _OPT) |