@ -274,17 +274,19 @@ if (ENABLE_SDL2)
target_link_libraries ( SDL2 INTERFACE "${SDL2_LIBRARY}" )
target_link_libraries ( SDL2 INTERFACE "${SDL2_LIBRARY}" )
target_include_directories ( SDL2 INTERFACE "${SDL2_INCLUDE_DIR}" )
target_include_directories ( SDL2 INTERFACE "${SDL2_INCLUDE_DIR}" )
else ( )
else ( )
find_package ( SDL2 REQUIRED )
find_package ( SDL2 2.0.12 )
# S o m e i n s t a l l a t i o n s d o n ' t s e t S D L 2 _ L I B R A R I E S
if ( "${SDL2_LIBRARIES}" STREQUAL "" )
message ( WARNING "SDL2_LIBRARIES wasn't set, manually setting to SDL2::SDL2" )
set ( SDL2_LIBRARIES "SDL2::SDL2" )
endif ( )
if ( SDL2_FOUND )
# S o m e i n s t a l l a t i o n s d o n ' t s e t S D L 2 _ L I B R A R I E S
if ( "${SDL2_LIBRARIES}" STREQUAL "" )
message ( WARNING "SDL2_LIBRARIES wasn't set, manually setting to SDL2::SDL2" )
set ( SDL2_LIBRARIES "SDL2::SDL2" )
endif ( )
include_directories ( SYSTEM ${ SDL2_INCLUDE_DIRS } )
add_library ( SDL2 INTERFACE )
target_link_libraries ( SDL2 INTERFACE "${SDL2_LIBRARIES}" )
include_directories ( SYSTEM ${ SDL2_INCLUDE_DIRS } )
add_library ( SDL2 INTERFACE )
target_link_libraries ( SDL2 INTERFACE "${SDL2_LIBRARIES}" )
endif ( )
endif ( )
endif ( )
else ( )
else ( )
set ( SDL2_FOUND NO )
set ( SDL2_FOUND NO )