Skip to content

Commit c2b4af5

Browse files
improve CMake status messages (#169)
1 parent 7d4597a commit c2b4af5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,14 @@ if(TARGET ZLIB::ZLIB)
5555
message( STATUS " ZLIB_LIBRARY : ${ZLIB_LIBRARY}" )
5656
else()
5757
message( STATUS "ZLIB was not found")
58-
message( STAUTS " ZLIB is automatically linked when using OpenEXR 3.x but CTL needs to link to ZLIB if using OpenEXR 2.x" )
58+
message( STATUS " ZLIB is automatically linked when using OpenEXR 3.x but CTL needs to link to ZLIB if using OpenEXR 2.x" )
5959
endif()
6060

6161
find_package(OpenEXR 3 CONFIG QUIET)
6262
if(OpenEXR_FOUND)
6363
message(STATUS "Found OpenEXR ${OpenEXR_VERSION}")
6464
else()
65+
message(STATUS "OpenEXR v3 not found, looking for IlmBase and OpenEXR v2")
6566
find_package(IlmBase REQUIRED)
6667
find_package(OpenEXR 2 REQUIRED)
6768
endif()

0 commit comments

Comments
 (0)