summaryrefslogtreecommitdiff
path: root/CMake
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-02-05 16:34:42 +0000
committerManolo Gouy <Manolo>2016-02-05 16:34:42 +0000
commita8a777ff26dede82ff1b450806608851f63cb79f (patch)
tree20cb34a900305355f953d10a00e0de68169eb6f8 /CMake
parent254cb01f542b554b63c143718215b23f8151080c (diff)
New CMake option OPTION_PRINT_SUPPORT turned ON by default
When the option is off, file config.h defines NO_PRINT_SUPPORT which in turn produces a library without print support, that is, class Fl_Printer does nothing. When off, the FLTK library is somewhat smaller. Can be turned off only when the X11 library is used. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11127 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'CMake')
-rw-r--r--CMake/options.cmake8
1 files changed, 8 insertions, 0 deletions
diff --git a/CMake/options.cmake b/CMake/options.cmake
index 2725d6c79..0ae0195b8 100644
--- a/CMake/options.cmake
+++ b/CMake/options.cmake
@@ -78,6 +78,7 @@ option(OPTION_BUILD_SHARED_LIBS
#######################################################################
option(OPTION_BUILD_EXAMPLES "build example programs" ON)
+option(OPTION_PRINT_SUPPORT "allow print support" ON)
#######################################################################
if(DOXYGEN_FOUND)
@@ -355,6 +356,13 @@ else()
endif(OPTION_USE_XDBE AND HAVE_XDBE_H)
#######################################################################
+set(NO_PRINT_SUPPORT FALSE)
+if(X11_FOUND AND NOT OPTION_PRINT_SUPPORT)
+ set(NO_PRINT_SUPPORT TRUE)
+endif(X11_FOUND AND NOT OPTION_PRINT_SUPPORT)
+#######################################################################
+
+#######################################################################
# prior to CMake 3.0 this feature was buggy
if(NOT CMAKE_VERSION VERSION_LESS 3.0.0)
option(CMAKE_SUPPRESS_REGENERATION