mirror of https://github.com/encounter/SDL.git
cmake: don't fail if Wayland is enabled but libdecor isn't found.
Instead, just disable libdecor support. This matches what the configure script does.
This commit is contained in:
parent
c308453952
commit
74aa4b635c
|
@ -698,13 +698,14 @@ macro(CheckWayland)
|
|||
endif()
|
||||
|
||||
if(WAYLAND_LIBDECOR)
|
||||
pkg_check_modules(libdecor REQUIRED libdecor-0)
|
||||
|
||||
pkg_check_modules(PKG_LIBDECOR libdecor-0)
|
||||
if(PKG_LIBDECOR_FOUND)
|
||||
set(HAVE_WAYLAND_LIBDECOR TRUE)
|
||||
FindLibraryAndSONAME(decor-0)
|
||||
set(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_LIBDECOR "\"${DECOR_0_LIB_SONAME}\"")
|
||||
|
||||
add_definitions(-DHAVE_LIBDECOR_H)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
set(SDL_VIDEO_DRIVER_WAYLAND 1)
|
||||
endif()
|
||||
|
|
Loading…
Reference in New Issue