diff options
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c8f3d160..c871386e7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,6 +48,7 @@ project (FLTK VERSION 1.4.0) ####################################################################### include (CMake/fl_debug_var.cmake) +include (CMake/fl_debug_pkg.cmake) include (CMake/fl_add_library.cmake) include (CMake/compatibility.cmake) @@ -237,5 +238,34 @@ else () message (STATUS " ZLIB = System") endif () +if (UNIX) + + if (OPTION_USE_WAYLAND) + message (STATUS "Use Wayland: Yes") + else () + message (STATUS "Use Wayland: No") + endif () + + if (USE_PANGO) + message (STATUS "Use Pango: Yes") + else (USE_PANGO) + message (STATUS "Use Pango: No") + if (USE_XFT) + message (STATUS "Use Xft: Yes") + else () + message (STATUS "Use Xft: No") + endif (USE_XFT) + endif (USE_PANGO) + +endif (UNIX) + +if (FLTK_HAVE_CAIROEXT) + message (STATUS "Cairo support: Yes (extended)") +elseif (FLTK_HAVE_CAIRO) + message (STATUS "Cairo support: Yes (standard)") +else () + message (STATUS "Cairo support: No") +endif () + message ("") message (STATUS "End of Configuration Summary --\n") |
