diff options
| -rw-r--r-- | CMakeLists.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 36908006a..21ef377d7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -249,6 +249,16 @@ else () message (STATUS "Example programs will not be built (set FLTK_BUILD_EXAMPLES=ON to build)") endif () +message (STATUS "") + +if (CMAKE_BUILD_TYPE STREQUAL "") + message (STATUS "Build configuration : <unspecified>") +else () + message (STATUS "Build configuration : ${CMAKE_BUILD_TYPE}") +endif () + +message (STATUS "") + if (FLTK_USE_BUILTIN_JPEG) message (STATUS "Image Libraries : JPEG = Builtin") else () |
