diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2026-01-05 17:55:27 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2026-01-05 17:55:27 +0100 |
| commit | 5f10939cfa0fc943dfc28b441efa9e9028eef5e5 (patch) | |
| tree | 796c3192e92c39918302f6c7e6c6a4afc4ec79e6 | |
| parent | 6c670e12c38a5b530a4ceecde31cb031a41df607 (diff) | |
Restore building with CMake option FLTK_BUILD_FLUID=0
| -rw-r--r-- | CMake/install.cmake | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CMake/install.cmake b/CMake/install.cmake index 9dfe6566f..abd80c5c6 100644 --- a/CMake/install.cmake +++ b/CMake/install.cmake @@ -126,7 +126,10 @@ INSTALL_MAN (fltk 3) if(FLTK_BUILD_TEST) # "OR FLTK_BUILD_GAMES" (not yet implemented) - set(games_ blocks checkers sudoku) + set(games_ blocks sudoku) + if(FLTK_BUILD_FLUID) + list(APPEND games_ checkers) + endif(FLTK_BUILD_FLUID) if(FLTK_USE_GL) list(APPEND games_ glpuzzle) endif() |
