Browse Source
Merge pull request #10739 from zeltermann/sdl-cpuinfo
Re-enable SDL's `CPUinfo` subsystem
pull/15/merge
liamwhite
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
externals/CMakeLists.txt
|
|
@ -63,8 +63,9 @@ if (YUZU_USE_EXTERNAL_SDL2) |
|
|
# Yuzu itself needs: Atomic Audio Events Joystick Haptic Sensor Threads Timers |
|
|
# Yuzu itself needs: Atomic Audio Events Joystick Haptic Sensor Threads Timers |
|
|
# Since 2.0.18 Atomic+Threads required for HIDAPI/libusb (see https://github.com/libsdl-org/SDL/issues/5095) |
|
|
# Since 2.0.18 Atomic+Threads required for HIDAPI/libusb (see https://github.com/libsdl-org/SDL/issues/5095) |
|
|
# Yuzu-cmd also needs: Video (depends on Loadso/Dlopen) |
|
|
# Yuzu-cmd also needs: Video (depends on Loadso/Dlopen) |
|
|
|
|
|
# CPUinfo also required for SDL Audio, at least until 2.28.0 (see https://github.com/libsdl-org/SDL/issues/7809) |
|
|
set(SDL_UNUSED_SUBSYSTEMS |
|
|
set(SDL_UNUSED_SUBSYSTEMS |
|
|
CPUinfo File Filesystem |
|
|
|
|
|
|
|
|
File Filesystem |
|
|
Locale Power Render) |
|
|
Locale Power Render) |
|
|
foreach(_SUB ${SDL_UNUSED_SUBSYSTEMS}) |
|
|
foreach(_SUB ${SDL_UNUSED_SUBSYSTEMS}) |
|
|
string(TOUPPER ${_SUB} _OPT) |
|
|
string(TOUPPER ${_SUB} _OPT) |
|
|
|