summaryrefslogtreecommitdiff
path: root/cmake/modules/FindAIRPCAP.cmake
blob: bbba66a444eaf3b4120c9569a6e65f59b31e8415 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# $Id$
#
# - Find airpcap
# Find the native AIRPCAP includes and library
#
#  AIRPCAP_INCLUDE_DIRS - where to find pcap.h, etc.
#  AIRPCAP_LIBRARIES    - List of libraries when using pcap.
#  AIRPCAP_FOUND        - True if pcap found.

include( FindWSWinLibs )
FindWSWinLibs( "AirPcap" AIRPCAP_TMP_HINTS )
#message( STATUS "AIRPCAP TMP HINTS: ${AIRPCAP_TMP_HINTS}" )
FindWSWinLibs( "Airpcap_" AIRPCAP_HINTS "${AIRPCAP_TMP_HINTS}" )
#message( STATUS "AIRPCAP HINTS: ${AIRPCAP_HINTS}" )

find_path( AIRPCAP_INCLUDE_DIR
  NAMES
  airpcap.h
  pcap.h
  HINTS
    "${AIRPCAP_HINTS}/include"
)

find_library( AIRPCAP_LIBRARY
  NAMES
    airpcap
  HINTS
    "${AIRPCAP_HINTS}/lib"
)


include( FindPackageHandleStandardArgs )
find_package_handle_standard_args( AIRPCAP DEFAULT_MSG AIRPCAP_INCLUDE_DIR AIRPCAP_LIBRARY )

if( AIRPCAP_FOUND )
  set( AIRPCAP_INCLUDE_DIRS ${AIRPCAP_INCLUDE_DIR} )
  set( AIRPCAP_LIBRARIES ${AIRPCAP_LIBRARY} )
else()
  set( AIRPCAP_INCLUDE_DIRS )
  set( AIRPCAP_LIBRARIES )
endif()

mark_as_advanced( AIRPCAP_LIBRARIES AIRPCAP_INCLUDE_DIRS )