diff options
| author | 2021-06-05 15:35:57 +0200 | |
|---|---|---|
| committer | 2021-06-06 11:28:38 +0200 | |
| commit | c7c99905f4ba5f3d7b824ec2bc6f46d755d46d80 (patch) | |
| tree | d1e170f7a1a414f03aed418579ec205ca72c5d5a /externals | |
| parent | Merge pull request #6402 from Kelebek1/UI (diff) | |
| download | yuzu-c7c99905f4ba5f3d7b824ec2bc6f46d755d46d80.tar.gz yuzu-c7c99905f4ba5f3d7b824ec2bc6f46d755d46d80.tar.xz yuzu-c7c99905f4ba5f3d7b824ec2bc6f46d755d46d80.zip | |
Add SDL2 audio backend
Diffstat (limited to 'externals')
| -rw-r--r-- | externals/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index aae0baa0b..ec3c0432b 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt | |||
| @@ -48,10 +48,10 @@ target_include_directories(unicorn-headers INTERFACE ./unicorn/include) | |||
| 48 | # SDL2 | 48 | # SDL2 |
| 49 | if (NOT SDL2_FOUND AND ENABLE_SDL2) | 49 | if (NOT SDL2_FOUND AND ENABLE_SDL2) |
| 50 | if (NOT WIN32) | 50 | if (NOT WIN32) |
| 51 | # Yuzu itself needs: Events Joystick Haptic Sensor Timers | 51 | # Yuzu itself needs: Events Joystick Haptic Sensor Timers Audio |
| 52 | # Yuzu-cmd also needs: Video (depends on Loadso/Dlopen) | 52 | # Yuzu-cmd also needs: Video (depends on Loadso/Dlopen) |
| 53 | set(SDL_UNUSED_SUBSYSTEMS | 53 | set(SDL_UNUSED_SUBSYSTEMS |
| 54 | Atomic Audio Render Power Threads | 54 | Atomic Render Power Threads |
| 55 | File CPUinfo Filesystem Locale) | 55 | File CPUinfo Filesystem Locale) |
| 56 | foreach(_SUB ${SDL_UNUSED_SUBSYSTEMS}) | 56 | foreach(_SUB ${SDL_UNUSED_SUBSYSTEMS}) |
| 57 | string(TOUPPER ${_SUB} _OPT) | 57 | string(TOUPPER ${_SUB} _OPT) |