Explain to the build system that we would like to use MacPorts versions of these libraries, not the bundled ones which may become out of date. --- code/CMakeLists.txt.orig 2024-08-30 13:35:01.000000000 -0500 +++ code/CMakeLists.txt 2026-04-06 07:25:28.000000000 -0500 @@ -1050,8 +1050,7 @@ ENDIF() # IF (ASSIMP_BUILD_USD_IMPORTER) # pugixml -IF(ASSIMP_HUNTER_ENABLED) - hunter_add_package(pugixml) +IF(TRUE) find_package(pugixml CONFIG REQUIRED) ELSE() SET( Pugixml_SRCS @@ -1104,9 +1103,9 @@ #ENDIF() # minizip/unzip -IF(ASSIMP_HUNTER_ENABLED) - hunter_add_package(minizip) - find_package(minizip CONFIG REQUIRED) +IF(TRUE) + #minizip does not ship with CMake files + #find_package(minizip CONFIG REQUIRED) ELSE() SET( unzip_SRCS ../contrib/unzip/crypt.h @@ -1435,7 +1434,7 @@ target_link_libraries(assimp PRIVATE ${draco_LIBRARIES}) endif() ELSE() - TARGET_LINK_LIBRARIES(assimp ${ZLIB_LIBRARIES} ${OPENDDL_PARSER_LIBRARIES}) + TARGET_LINK_LIBRARIES(assimp ${ZLIB_LIBRARIES} ${OPENDDL_PARSER_LIBRARIES} minizip pugixml) if (ASSIMP_BUILD_DRACO) target_link_libraries(assimp ${draco_LIBRARIES}) endif()