aboutsummaryrefslogtreecommitdiff
path: root/modules/FindBlueZ.cmake
blob: 9435258e4563af37f05d2b8ac8b2f94bac1d4825 (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
# - Try to find BlueZ
# Once done this will define
#
#  BLUEZ_FOUND - system has BlueZ

# Copyright (c) 2006, Alexander Neundorf, <neundorf@kde.org>
# Copyright (c) 2007, Will Stephenson, <wstephenson@kde.org>
# Copyright (c) 2007, Daniel Gollub, <dgollub@suse.de>
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.


IF (NOT WIN32)
   # use pkg-config to get the directories and then use these values
   # in the FIND_PATH() and FIND_LIBRARY() calls
   INCLUDE(UsePkgConfig)
   PKGCONFIG(bluez _BlueZIncDir _BlueZLinkDir _BlueZLinkFlags _BlueZCflags)
ENDIF (NOT WIN32)

find_path(BLUEZ_INCLUDE_DIR bluetooth/bluetooth.h
    PATHS
    ${_BlueZIncDir}
    /usr/X11/include
  )

find_library(BLUEZ_LIBRARIES NAMES bluetooth
    PATHS
    ${_BlueZLinkDir}
  )

if (BLUEZ_LIBRARIES AND BLUEZ_INCLUDE_DIR)
     set(BLUEZ_FOUND TRUE)
endif (BLUEZ_LIBRARIES AND BLUEZ_INCLUDE_DIR)


IF (BLUEZ_FOUND)
   if (NOT BlueZ_FIND_QUIETLY)
      message(STATUS "Found bluez: ${BLUEZ_LIBRARIES}")
   endif (NOT BlueZ_FIND_QUIETLY)
ELSE(BLUEZ_FOUND)
   IF (BlueZ_FIND_REQUIRED)
      MESSAGE(FATAL_ERROR "Could NOT find BlueZ")
   ENDIF (BlueZ_FIND_REQUIRED)
ENDIF (BLUEZ_FOUND)

mark_as_advanced( BLUEZ_LIBRARIES BLUEZ_INCLUDE_DIR)