zeek/auxil/vcpkg/ports/lcms/lcms-config.cmake
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

12 lines
308 B
CMake

if(NOT TARGET lcms::lcms)
include(CMakeFindDependencyMacro)
find_dependency(lcms2 CONFIG)
# Create imported target lcms::lcms
add_library(lcms::lcms INTERFACE IMPORTED)
set_target_properties(lcms::lcms PROPERTIES
INTERFACE_LINK_LIBRARIES "lcms2::lcms2"
)
endif()