2 # Try to find the Endace DAG library.
5 # Try to find the header
6 find_path(DAG_INCLUDE_DIR dagapi.h)
8 # Try to find the library
9 find_library(DAG_LIBRARY dag)
11 include(FindPackageHandleStandardArgs)
12 find_package_handle_standard_args(DAG
23 set(DAG_INCLUDE_DIRS ${DAG_INCLUDE_DIR})
24 set(DAG_LIBRARIES ${DAG_LIBRARY})