1# 2# Try to find the Endace DAG library. 3# 4 5# Try to find the header 6find_path(DAG_INCLUDE_DIR dagapi.h) 7 8# 9# Try to find the libraries 10# 11# We assume that if we have libdag we have libdagconf, as they're 12# installed at the same time from the same package. 13# 14find_library(DAG_LIBRARY dag) 15find_library(DAGCONF_LIBRARY dagconf) 16 17include(FindPackageHandleStandardArgs) 18find_package_handle_standard_args(DAG 19 DEFAULT_MSG 20 DAG_INCLUDE_DIR 21 DAG_LIBRARY 22 DAGCONF_LIBRARY 23) 24 25mark_as_advanced( 26 DAG_INCLUDE_DIR 27 DAG_LIBRARY 28 DAGCONF_LIBRARY 29) 30 31set(DAG_INCLUDE_DIRS ${DAG_INCLUDE_DIR}) 32set(DAG_LIBRARIES ${DAG_LIBRARY} ${DAGCONF_LIBRARY}) 33