diff options
| author | 2021-01-21 21:47:35 +0300 | |
|---|---|---|
| committer | 2021-01-21 21:47:35 +0300 | |
| commit | 46dda011510533670c176e5da8305c846e1ac28f (patch) | |
| tree | dbf101ac738bd1114b7965f54743dbff4a18633e | |
| parent | Merge pull request #5270 from german77/multiTouch (diff) | |
| download | yuzu-46dda011510533670c176e5da8305c846e1ac28f.tar.gz yuzu-46dda011510533670c176e5da8305c846e1ac28f.tar.xz yuzu-46dda011510533670c176e5da8305c846e1ac28f.zip | |
Bump conan SDL2 version to 2.0.14
Update conan package version used for building.
A couple of new joystick-related functions might pose interest to yuzu's input system. Some sort of LED management have been added, but it doesn't seem to support leds used for player number indication JoyCons/ProCons use.
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index aaf3a90cf..27aa56780 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -261,7 +261,7 @@ if(ENABLE_SDL2) | |||
| 261 | find_package(SDL2) | 261 | find_package(SDL2) |
| 262 | if (NOT SDL2_FOUND) | 262 | if (NOT SDL2_FOUND) |
| 263 | # otherwise add this to the list of libraries to install | 263 | # otherwise add this to the list of libraries to install |
| 264 | list(APPEND CONAN_REQUIRED_LIBS "sdl2/2.0.12@bincrafters/stable") | 264 | list(APPEND CONAN_REQUIRED_LIBS "sdl2/2.0.14@bincrafters/stable") |
| 265 | endif() | 265 | endif() |
| 266 | endif() | 266 | endif() |
| 267 | 267 | ||