aboutsummaryrefslogtreecommitdiff
path: root/attic/modules/FindAvahi.cmake
blob: c6e055f033eaa6ce6c2e1b96d5db34f0a5b310d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Find Avahi. Only avahi-common/defs.h is really needed

# Copyright (c) 2007, Jakub Stachowski, <qbast@go2.pl>
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.


find_path(AVAHI_INCLUDE_DIR avahi-common/defs.h)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Avahi DEFAULT_MSG
                                  AVAHI_INCLUDE_DIR)

mark_as_advanced(AVAHI_INCLUDE_DIR)