diff options
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a4a6da2e1..e208715d7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -274,17 +274,19 @@ if (ENABLE_SDL2) | |||
| 274 | target_link_libraries(SDL2 INTERFACE "${SDL2_LIBRARY}") | 274 | target_link_libraries(SDL2 INTERFACE "${SDL2_LIBRARY}") |
| 275 | target_include_directories(SDL2 INTERFACE "${SDL2_INCLUDE_DIR}") | 275 | target_include_directories(SDL2 INTERFACE "${SDL2_INCLUDE_DIR}") |
| 276 | else() | 276 | else() |
| 277 | find_package(SDL2 REQUIRED) | 277 | find_package(SDL2 2.0.12) |
| 278 | 278 | ||
| 279 | # Some installations don't set SDL2_LIBRARIES | 279 | if(SDL2_FOUND) |
| 280 | if("${SDL2_LIBRARIES}" STREQUAL "") | 280 | # Some installations don't set SDL2_LIBRARIES |
| 281 | message(WARNING "SDL2_LIBRARIES wasn't set, manually setting to SDL2::SDL2") | 281 | if("${SDL2_LIBRARIES}" STREQUAL "") |
| 282 | set(SDL2_LIBRARIES "SDL2::SDL2") | 282 | message(WARNING "SDL2_LIBRARIES wasn't set, manually setting to SDL2::SDL2") |
| 283 | endif() | 283 | set(SDL2_LIBRARIES "SDL2::SDL2") |
| 284 | endif() | ||
| 284 | 285 | ||
| 285 | include_directories(SYSTEM ${SDL2_INCLUDE_DIRS}) | 286 | include_directories(SYSTEM ${SDL2_INCLUDE_DIRS}) |
| 286 | add_library(SDL2 INTERFACE) | 287 | add_library(SDL2 INTERFACE) |
| 287 | target_link_libraries(SDL2 INTERFACE "${SDL2_LIBRARIES}") | 288 | target_link_libraries(SDL2 INTERFACE "${SDL2_LIBRARIES}") |
| 289 | endif() | ||
| 288 | endif() | 290 | endif() |
| 289 | else() | 291 | else() |
| 290 | set(SDL2_FOUND NO) | 292 | set(SDL2_FOUND NO) |