diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2026-01-04 19:34:14 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2026-01-04 19:34:14 +0100 |
| commit | 811a188bbf276841365f2ad4b11197f5820fe571 (patch) | |
| tree | e0786e12f2525d9c60379884f6447c1003415519 /CMakeLists.txt | |
| parent | 68d2c48514fcb1161da3bf9db0d385faf650b2a1 (diff) | |
Add FLTK_BUILD_SCREENSHOTS option info to CMake build summary
+ build screenshot programs if option FLTK_BUILD_SCREENSHOTS=ON:
don't `EXCLUDE_FROM_ALL` because the option must be set anyway.
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 75878202e..d3ccbc6fc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -400,8 +400,9 @@ fl_summary_build("The OpenGL library" lib FLTK_USE_GL FLTK_BUI fl_summary_build("fluid" bin FLTK_BUILD_FLUID FLTK_BUILD_FLUID) fl_summary_build("fltk-options" bin FLTK_BUILD_FLTK_OPTIONS FLTK_BUILD_FLTK_OPTIONS) -fl_summary_build("Test programs" bin/test FLTK_BUILD_TEST FLTK_BUILD_TEST) -fl_summary_build("Example programs" bin/examples FLTK_BUILD_EXAMPLES FLTK_BUILD_EXAMPLES) +fl_summary_build("Test programs" bin/test FLTK_BUILD_TEST FLTK_BUILD_TEST) +fl_summary_build("Example programs" bin/examples FLTK_BUILD_EXAMPLES FLTK_BUILD_EXAMPLES) +fl_summary_build("Screenshot programs" bin/screenshots FLTK_BUILD_SCREENSHOTS FLTK_BUILD_SCREENSHOTS) message(STATUS "") |
