diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2022-11-29 05:20:04 +0100 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2022-11-29 05:21:14 +0100 |
commit | 0941ae0b617839a724a62c0a69914686e81f053f (patch) | |
tree | 28c379025386165643e3d9677f29ff13ff4b6d47 /src/input_common/CMakeLists.txt | |
parent | CMakeLists: Bump minimum required CMake version to 3.22 (diff) | |
download | yuzu-0941ae0b617839a724a62c0a69914686e81f053f.tar yuzu-0941ae0b617839a724a62c0a69914686e81f053f.tar.gz yuzu-0941ae0b617839a724a62c0a69914686e81f053f.tar.bz2 yuzu-0941ae0b617839a724a62c0a69914686e81f053f.tar.lz yuzu-0941ae0b617839a724a62c0a69914686e81f053f.tar.xz yuzu-0941ae0b617839a724a62c0a69914686e81f053f.tar.zst yuzu-0941ae0b617839a724a62c0a69914686e81f053f.zip |
Diffstat (limited to 'src/input_common/CMakeLists.txt')
-rw-r--r-- | src/input_common/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/input_common/CMakeLists.txt b/src/input_common/CMakeLists.txt index cc6f0ffc0..193127d0a 100644 --- a/src/input_common/CMakeLists.txt +++ b/src/input_common/CMakeLists.txt @@ -55,7 +55,11 @@ if (ENABLE_SDL2) drivers/sdl_driver.cpp drivers/sdl_driver.h ) - target_link_libraries(input_common PRIVATE SDL2) + if (YUZU_USE_EXTERNAL_SDL2) + target_link_libraries(input_common PRIVATE SDL2-static) + else() + target_link_libraries(input_common PRIVATE SDL2) + endif() target_compile_definitions(input_common PRIVATE HAVE_SDL2) endif() |