diff options
| author | 2022-12-06 00:44:52 +0100 | |
|---|---|---|
| committer | 2022-12-06 01:26:30 +0100 | |
| commit | e6ae720c339f8ca97e0dbffe09f6c6b871bb82e0 (patch) | |
| tree | bc1508702cbeb633a311c2d40530b0b7893aee36 /src/audio_core | |
| parent | Merge pull request #9388 from lioncash/fix-msvc (diff) | |
| download | yuzu-e6ae720c339f8ca97e0dbffe09f6c6b871bb82e0.tar.gz yuzu-e6ae720c339f8ca97e0dbffe09f6c6b871bb82e0.tar.xz yuzu-e6ae720c339f8ca97e0dbffe09f6c6b871bb82e0.zip | |
cmake: use sdl2 imported target
Diffstat (limited to 'src/audio_core')
| -rw-r--r-- | src/audio_core/CMakeLists.txt | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/audio_core/CMakeLists.txt b/src/audio_core/CMakeLists.txt index f573a23e6..420ba62e0 100644 --- a/src/audio_core/CMakeLists.txt +++ b/src/audio_core/CMakeLists.txt | |||
| @@ -227,11 +227,7 @@ if(ENABLE_CUBEB) | |||
| 227 | target_compile_definitions(audio_core PRIVATE -DHAVE_CUBEB=1) | 227 | target_compile_definitions(audio_core PRIVATE -DHAVE_CUBEB=1) |
| 228 | endif() | 228 | endif() |
| 229 | if(ENABLE_SDL2) | 229 | if(ENABLE_SDL2) |
| 230 | if (YUZU_USE_EXTERNAL_SDL2) | 230 | target_link_libraries(audio_core PRIVATE SDL2::SDL2) |
| 231 | target_link_libraries(audio_core PRIVATE SDL2-static) | ||
| 232 | else() | ||
| 233 | target_link_libraries(audio_core PRIVATE SDL2) | ||
| 234 | endif() | ||
| 235 | target_compile_definitions(audio_core PRIVATE HAVE_SDL2) | 231 | target_compile_definitions(audio_core PRIVATE HAVE_SDL2) |
| 236 | endif() | 232 | endif() |
| 237 | 233 | ||