diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-01-21 17:14:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-21 17:14:41 +0100 |
| commit | 1fc269b0d4c79b256cc57740d318f95dded8c340 (patch) | |
| tree | 5df94f8cb7f4e8629dbce7a36f070ea5b513d5d7 /CMake | |
| parent | 4ddcbc81de60faa0e9922db7df316f3d69cb8df7 (diff) | |
Move global FLTK options into new app fltk-admin (#560)
Diffstat (limited to 'CMake')
| -rw-r--r-- | CMake/install.cmake | 3 | ||||
| -rw-r--r-- | CMake/options.cmake | 7 |
2 files changed, 7 insertions, 3 deletions
diff --git a/CMake/install.cmake b/CMake/install.cmake index 0487f58cb..729cc5b65 100644 --- a/CMake/install.cmake +++ b/CMake/install.cmake @@ -125,6 +125,9 @@ if (UNIX OR MSYS OR MINGW) if (FLTK_BUILD_FLUID) INSTALL_MAN (fluid 1) endif (FLTK_BUILD_FLUID) + if (FLTK_BUILD_FLTK_OPTIONS) + INSTALL_MAN (fltk-options 1) + endif (FLTK_BUILD_FLTK_OPTIONS) INSTALL_MAN (fltk-config 1) INSTALL_MAN (fltk 3) diff --git a/CMake/options.cmake b/CMake/options.cmake index b45987d23..e0235236d 100644 --- a/CMake/options.cmake +++ b/CMake/options.cmake @@ -360,9 +360,10 @@ option (OPTION_BUILD_SHARED_LIBS option (OPTION_PRINT_SUPPORT "allow print support" ON) option (OPTION_FILESYSTEM_SUPPORT "allow file system support" ON) -option (FLTK_BUILD_FLUID "Build FLUID" ON) -option (FLTK_BUILD_TEST "Build test/demo programs" ON) -option (FLTK_BUILD_EXAMPLES "Build example programs" OFF) +option (FLTK_BUILD_FLUID "Build FLUID" ON) +option (FLTK_BUILD_FLTK_OPTIONS "Build fltk-options" ON) +option (FLTK_BUILD_TEST "Build test/demo programs" ON) +option (FLTK_BUILD_EXAMPLES "Build example programs" OFF) if (DEFINED OPTION_BUILD_EXAMPLES) message (WARNING |
