blob: cb942202e396b66c1e275b263224a1eacd59581f (
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
45
46
47
48
49
50
51
52
|
# Try to find the GLib binding of the DBus library
# DBUS_GLIB_FOUND - system has dbus-glib
# DBUS_GLIB_INCLUDE_DIR - the dbus-glib include directory
# DBUS_GLIB_LIBRARIES - Link these to use dbus-glib
# Copyright (c) 2008, Allen Winter <winter@kde.org>
# Copyright (c) 2009, Andre Moreira Magalhaes <andrunko@gmail.com>
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
set(DBUS_GLIB_FIND_REQUIRED ${DBusGLib_FIND_REQUIRED})
if(DBUS_GLIB_INCLUDE_DIR AND DBUS_GLIB_LIBRARIES)
# Already in cache, be silent
set(DBUS_GLIB_FIND_QUIETLY TRUE)
endif(DBUS_GLIB_INCLUDE_DIR AND DBUS_GLIB_LIBRARIES)
find_package(PkgConfig)
if(PKG_CONFIG_FOUND)
if (DBusGLib_FIND_VERSION_EXACT)
pkg_check_modules(PC_DBUS_GLIB QUIET dbus-glib-1=${DBusGLib_FIND_VERSION})
else (DBusGLib_FIND_VERSION_EXACT)
if (DBusGLib_FIND_VERSION)
pkg_check_modules(PC_DBUS_GLIB REQUIRED dbus-glib-1>=${DBusGLib_FIND_VERSION})
else (DBusGLib_FIND_VERSION)
pkg_check_modules(PC_DBUS_GLIB REQUIRED dbus-glib-1)
endif (DBusGLib_FIND_VERSION)
endif (DBusGLib_FIND_VERSION_EXACT)
endif(PKG_CONFIG_FOUND)
find_path(DBUS_GLIB_INCLUDE_DIR
NAMES dbus-1.0/dbus/dbus-glib.h
HINTS
${PC_DBUS_GLIB_INCLUDEDIR}
${PC_DBUS_GLIB_INCLUDE_DIRS}
)
# HACK! Workaround appending "/dbus-1.0" to the HINTS above not working for some reason.
set (DBUS_GLIB_INCLUDE_DIR
"${DBUS_GLIB_INCLUDE_DIR}/dbus-1.0"
)
find_library(DBUS_GLIB_LIBRARIES
NAMES dbus-glib-1
HINTS
${PC_DBUS_GLIB_LIBDIR}
${PC_DBUS_GLIB_LIBRARY_DIRS}
)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(DBUS_GLIB DEFAULT_MSG
DBUS_GLIB_LIBRARIES DBUS_GLIB_INCLUDE_DIR)
|