summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt26
1 files changed, 19 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index eb4e8ecac..1c8f3d160 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,7 +2,7 @@
# Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org)
# Originally written by Michael Surette
#
-# Copyright 1998-2021 by Bill Spitzak and others.
+# Copyright 1998-2022 by Bill Spitzak and others.
#
# This library is free software. Distribution and use rights are outlined in
# the file "COPYING" which should have been included with this file. If this
@@ -19,12 +19,6 @@
# set CMake minimum version (must be before `project()`
#######################################################################
-# Note: previous (1.3.5) minimum version
-# cmake_minimum_required (VERSION 2.6.3)
-
-# Note: minimum CMake version required by GNUInstallDirs
-# cmake_minimum_required (VERSION 2.8.4)
-
# Minimum CMake version required by FLTK 1.4 (06/2020, work in progress)
cmake_minimum_required (VERSION 3.2.3 FATAL_ERROR)
@@ -225,5 +219,23 @@ else ()
message (STATUS "Example programs will not be built (set FLTK_BUILD_EXAMPLES=ON to build)")
endif ()
+if (FLTK_USE_BUILTIN_JPEG)
+ message (STATUS "Image Libraries: JPEG = Builtin")
+else ()
+ message (STATUS "Image Libraries: JPEG = System")
+endif ()
+
+if (FLTK_USE_BUILTIN_PNG)
+ message (STATUS " PNG = Builtin")
+else ()
+ message (STATUS " PNG = System")
+endif ()
+
+if (FLTK_USE_BUILTIN_ZLIB)
+ message (STATUS " ZLIB = Builtin")
+else ()
+ message (STATUS " ZLIB = System")
+endif ()
+
message ("")
message (STATUS "End of Configuration Summary --\n")