CMake-based build under Linux shows whether X11 is used
This commit is contained in:
parent
40aa9c8609
commit
69df45d38b
@ -311,15 +311,19 @@ endif()
|
||||
if(UNIX AND NOT (APPLE AND NOT FLTK_BACKEND_X11))
|
||||
|
||||
if(FLTK_BACKEND_WAYLAND)
|
||||
message(STATUS "Use Wayland : Yes (if available at run-time)")
|
||||
if(FLTK_BACKEND_X11)
|
||||
message(STATUS "Use Wayland : Yes (can also run as X11 client)")
|
||||
else()
|
||||
message(STATUS "Use Wayland : Yes (cannot run as X11 client)")
|
||||
endif(FLTK_BACKEND_X11)
|
||||
if(USE_SYSTEM_LIBDECOR)
|
||||
message(STATUS "Use system libdecor : Yes")
|
||||
else()
|
||||
message(STATUS "Use system libdecor : No")
|
||||
endif()
|
||||
endif(USE_SYSTEM_LIBDECOR)
|
||||
else()
|
||||
message(STATUS "Use Wayland : No (therefore, X11 is used)")
|
||||
endif()
|
||||
endif(FLTK_BACKEND_WAYLAND)
|
||||
|
||||
if(FLTK_USE_CAIRO)
|
||||
message(STATUS "All drawing uses Cairo : Yes")
|
||||
|
Loading…
Reference in New Issue
Block a user