2 # Once done, this will define
4 # EDBUS_FOUND - system has edbus
5 # EDBUS_INCLUDE_DIRS - the edbus include directories
6 # EDBUS_LIBRARIES - link these to use edbus
10 # Use pkg-config to get hints about paths
11 libfind_pkg_check_modules(EDBUS_PKGCONF edbus)
14 find_path(EDBUS_INCLUDE_DIR
16 PATHS ${EDBUS_PKGCONF_INCLUDE_DIRS}
19 # Finally the library itself
20 find_library(EDBUS_LIBRARY
22 PATHS ${EDBUS_PKGCONF_LIBRARY_DIRS}
25 # Set the include dir variables and the libraries and let libfind_process do the rest.
26 # NOTE: Singular variables for this library, plural for libraries this this lib depends on.
27 set(EDBUS_PROCESS_INCLUDES EDBUS_INCLUDE_DIR EDBUS_INCLUDE_DIRS)
28 set(EDBUS_PROCESS_LIBS EDBUS_LIBRARY EDBUS_LIBRARIES)
29 libfind_process(EDBUS)