File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -264,12 +264,16 @@ else()
264264 message (STATUS "Using src/deps/rapidjson by default" )
265265endif ()
266266
267- #----- zlib
267+ #----- zlib and minizip
268268if (OTIO_FIND_ZLIB)
269269 find_package (ZLIB CONFIG REQUIRED)
270+ find_package (minizip CONFIG REQUIRED)
270271 if (ZLIB_FOUND)
271272 message (STATUS "Found zlib at ${ZLIB_CONFIG} " )
272273 endif ()
274+ if (minizip_FOUND)
275+ message (STATUS "Found minizip at ${minizip_CONFIG} " )
276+ endif ()
273277else ()
274278 message (STATUS "Using src/deps/zlib by default" )
275279endif ()
Original file line number Diff line number Diff line change @@ -4,5 +4,6 @@ include(CMakeFindDependencyMacro)
44find_dependency(OpenTime)
55find_dependency(Imath)
66find_dependency(ZLIB)
7+ find_dependency(minizip)
78
89include ("${CMAKE_CURRENT_LIST_DIR} /OpenTimelineIOTargets.cmake" )
You can’t perform that action at this time.
0 commit comments