diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-11-18 10:55:14 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-11-18 10:55:14 +0100 |
| commit | 82bee7fa33218c75d94d682d9270d7ecac31f347 (patch) | |
| tree | 88b927ddfbac80785849314f9ca1683fbd2d5cda /CMakeLists.txt | |
| parent | 615b731783311af2564573a98e59739a281f8f91 (diff) | |
CMake: fix informative messages sent under macOS
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2fcac4269..c6ba3a069 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -246,7 +246,7 @@ else () message (STATUS " ZLIB = System") endif () -if (UNIX) +if (UNIX AND NOT (APPLE AND NOT OPTION_APPLE_X11)) if (OPTION_USE_WAYLAND) message (STATUS "Use Wayland: Yes (when available at run-time)") @@ -271,7 +271,7 @@ if (UNIX) endif (USE_XFT) endif (USE_PANGO) -endif (UNIX) +endif (UNIX AND NOT (APPLE AND NOT OPTION_APPLE_X11)) if (FLTK_HAVE_CAIROEXT) message (STATUS "Fl_Cairo_Window support: Yes (extended)") |
