summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e208715d7..2c1c3d560 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -274,9 +274,9 @@ 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 2.0.12) 277 find_package(SDL2 2.0.14)
278 278
279 if(SDL2_FOUND) 279 if (SDL2_FOUND)
280 # Some installations don't set SDL2_LIBRARIES 280 # Some installations don't set SDL2_LIBRARIES
281 if("${SDL2_LIBRARIES}" STREQUAL "") 281 if("${SDL2_LIBRARIES}" STREQUAL "")
282 message(WARNING "SDL2_LIBRARIES wasn't set, manually setting to SDL2::SDL2") 282 message(WARNING "SDL2_LIBRARIES wasn't set, manually setting to SDL2::SDL2")
@@ -286,10 +286,10 @@ if (ENABLE_SDL2)
286 include_directories(SYSTEM ${SDL2_INCLUDE_DIRS}) 286 include_directories(SYSTEM ${SDL2_INCLUDE_DIRS})
287 add_library(SDL2 INTERFACE) 287 add_library(SDL2 INTERFACE)
288 target_link_libraries(SDL2 INTERFACE "${SDL2_LIBRARIES}") 288 target_link_libraries(SDL2 INTERFACE "${SDL2_LIBRARIES}")
289 else()
290 message(STATUS "SDL2 2.0.14 or newer not found, falling back to externals.")
289 endif() 291 endif()
290 endif() 292 endif()
291else()
292 set(SDL2_FOUND NO)
293endif() 293endif()
294 294
295# Install any missing dependencies with conan install 295# Install any missing dependencies with conan install