Output build configuration in CMake report (#838)

This commit is contained in:
Albrecht Schlosser 2023-11-17 19:44:29 +01:00
parent 367d302b5f
commit d446059766
1 changed files with 10 additions and 0 deletions

View File

@ -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 ()