# If CM256CC_DIR is specified, treat it as an explicit user override and # search that installation directly. Otherwise, use pkg-config to verify # the minimum supported libcm256cc version, since the library itself does # not expose version information through its headers or shared library. if (NOT CM256CC_FOUND) if(CM256CC_DIR) message(STATUS "Using CM256CC_DIR: ${CM256CC_DIR}") else() find_package(PkgConfig QUIET) if(NOT PKG_CONFIG_FOUND) message(STATUS "CM256CC support disabled: pkg-config is required to verify libcm256cc.") return() endif() pkg_check_modules(PC_CM256CC QUIET libcm256cc>=1.1.2) if(NOT PC_CM256CC_FOUND) message(STATUS "CM256CC support disabled: libcm256cc >= 1.1.2 was not found.") return() endif() endif() FIND_PATH(CM256CC_INCLUDE_DIR NAMES cm256cc/cm256.h HINTS ${CM256CC_DIR}/include ${PC_CM256CC_INCLUDE_DIRS} ${CMAKE_INSTALL_PREFIX}/include PATHS /usr/local/include /usr/include ) FIND_LIBRARY(CM256CC_LIBRARIES NAMES cm256cc libcm256cc HINTS ${CM256CC_DIR}/lib ${CM256CC_DIR}/lib64 ${PC_CM256CC_LIBRARY_DIRS} ${CMAKE_INSTALL_PREFIX}/lib ${CMAKE_INSTALL_PREFIX}/lib64 PATHS /usr/local/lib /usr/local/lib64 /usr/lib /usr/lib64 ) if(CM256CC_INCLUDE_DIR AND CM256CC_LIBRARIES) set(CM256CC_FOUND TRUE CACHE INTERNAL "CM256CC found") message(STATUS "Found CM256cc: ${CM256CC_INCLUDE_DIR}, ${CM256CC_LIBRARIES}") else(CM256CC_INCLUDE_DIR AND CM256CC_LIBRARIES) set(CM256CC_FOUND FALSE CACHE INTERNAL "CM256CC found") message(STATUS "CM256cc not found") endif(CM256CC_INCLUDE_DIR AND CM256CC_LIBRARIES) INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(CM256CC DEFAULT_MSG CM256CC_LIBRARIES CM256CC_INCLUDE_DIR) MARK_AS_ADVANCED(CM256CC_LIBRARIES CM256CC_INCLUDE_DIR) endif (NOT CM256CC_FOUND)