]> The Tcpdump Group git mirrors - libpcap/blob - cmake/Modules/FindDAG.cmake
ATM: Simplify protocol and message type handling.
[libpcap] / cmake / Modules / FindDAG.cmake
1 #
2 # Try to find the Endace DAG library.
3 #
4
5 # Try to find the header
6 find_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 #
14 find_library(DAG_LIBRARY dag)
15 find_library(DAGCONF_LIBRARY dagconf)
16
17 #
18 # Get link information from the _LIBRARY paths.
19 #
20 get_link_info_from_library_path(DAG dag)
21 get_link_info_from_library_path(DAGCONF dagconf)
22
23 include(FindPackageHandleStandardArgs)
24 find_package_handle_standard_args(DAG
25 DEFAULT_MSG
26 DAG_INCLUDE_DIR
27 DAG_LIBRARY
28 DAGCONF_LIBRARY
29 )
30
31 mark_as_advanced(
32 DAG_INCLUDE_DIR
33 DAG_LIBRARY
34 DAGCONF_LIBRARY
35 )
36
37 set(DAG_INCLUDE_DIRS ${DAG_INCLUDE_DIR})
38 set(DAG_LIBRARIES ${DAG_LIBRARY} ${DAGCONF_LIBRARY})
39 set(DAG_STATIC_LIBRARIES ${DAG_LIBRARY} ${DAGCONF_LIBRARY})