diff options
| -rw-r--r-- | CMakeLists.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7ac4e112d..68ae7e974 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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") |
