blob: 24bf15c70817e5ebee2559ff5394d655bca095fa (
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
|
# - Try to find avahi
# Once done this will define
#
# AVAHI_FOUND - system has avahi
# AVAHI_INCLUDE_DIRS - the avahi include directory
# AVAHI_LIBRARIES - The avahi libraries
if(PKG_CONFIG_FOUND)
pkg_check_modules (AVAHI avahi-client)
list(APPEND AVAHI_INCLUDE_DIRS ${AVAHI_INCLUDEDIR})
else()
find_path(AVAHI_CLIENT_INCLUDE_DIRS avahi-client/client.h)
find_path(AVAHI_COMMON_INCLUDE_DIRS avahi-common/defs.h)
find_library(AVAHI_COMMON_LIBRARIES avahi-common)
find_library(AVAHI_CLIENT_LIBRARIES avahi-common)
set(AVAHI_INCLUDE_DIRS ${AVAHI_CLIENT_INCLUDE_DIRS}
${AVAHI_COMMON_INCLUDE_DIRS})
set(AVAHI_LIBRARIES ${AVAHI_CLIENT_LIBRARIES}
${AVAHI_COMMON_LIBRARIES})
endif()
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Avahi DEFAULT_MSG AVAHI_INCLUDE_DIRS AVAHI_LIBRARIES)
mark_as_advanced(AVAHI_INCLUDE_DIRS AVAHI_LIBRARIES)
list(APPEND AVAHI_DEFINITIONS -DHAVE_LIBAVAHI_COMMON=1 -DHAVE_LIBAVAHI_CLIENT=1)
|