diff options
Diffstat (limited to 'externals/CMakeLists.txt')
| -rw-r--r-- | externals/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 500eb21e3..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) |
| @@ -139,6 +140,9 @@ if (YUZU_USE_EXTERNAL_VULKAN_HEADERS) | |||
| 139 | add_subdirectory(Vulkan-Headers) | 140 | add_subdirectory(Vulkan-Headers) |
| 140 | endif() | 141 | endif() |
| 141 | 142 | ||
| 143 | # TZDB (Time Zone Database) | ||
| 144 | add_subdirectory(nx_tzdb) | ||
| 145 | |||
| 142 | if (NOT TARGET LLVM::Demangle) | 146 | if (NOT TARGET LLVM::Demangle) |
| 143 | add_library(demangle demangle/ItaniumDemangle.cpp) | 147 | add_library(demangle demangle/ItaniumDemangle.cpp) |
| 144 | target_include_directories(demangle PUBLIC ./demangle) | 148 | target_include_directories(demangle PUBLIC ./demangle) |