CMake: make option ENABLE_SDL work again
Broken in PR #4755 / commit f978765
This commit is contained in:
parent
bdf09c7d3b
commit
fc0d88817f
|
@ -51,6 +51,7 @@ if(UNIX)
|
||||||
set(SRCS ${SRCS} ControllerInterface/Pipes/Pipes.cpp)
|
set(SRCS ${SRCS} ControllerInterface/Pipes/Pipes.cpp)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(ENABLE_SDL)
|
||||||
find_package(SDL2)
|
find_package(SDL2)
|
||||||
if(SDL2_FOUND)
|
if(SDL2_FOUND)
|
||||||
message(STATUS "Using shared SDL2")
|
message(STATUS "Using shared SDL2")
|
||||||
|
@ -73,5 +74,6 @@ if(SDL_TARGET AND TARGET ${SDL_TARGET})
|
||||||
else()
|
else()
|
||||||
message(STATUS "SDL NOT found, disabling SDL input")
|
message(STATUS "SDL NOT found, disabling SDL input")
|
||||||
endif()
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
add_dolphin_library(inputcommon "${SRCS}" "${LIBS}")
|
add_dolphin_library(inputcommon "${SRCS}" "${LIBS}")
|
||||||
|
|
Loading…
Reference in New Issue