-
Notifications
You must be signed in to change notification settings - Fork 71
/
FindBlueZ.cmake
57 lines (48 loc) · 1.84 KB
/
FindBlueZ.cmake
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
53
54
55
56
# - Try to find BlueZ
# Find BlueZ headers, libraries and the answer to all questions.
#
# BLUEZ_FOUND True if BlueZ libraries got found
# BLUEZ_INCLUDE_DIR Location of BlueZ headers
# BLUEZ_LIBRARIES List of libaries to use BlueZ
#
# Copyright (c) 2007 Daniel Gollub <[email protected]>
# Copyright (c) 2007-2009 Bjoern Ricks <[email protected]>
#
# Redistribution and use is allowed according to the terms of the New
# BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
#
INCLUDE( FindPkgConfig )
# Take care about bluez.pc settings
IF ( BlueZ_FIND_REQUIRED )
SET( _pkgconfig_REQUIRED "REQUIRED" )
ELSE( BlueZ_FIND_REQUIRED )
SET( _pkgconfig_REQUIRED "" )
ENDIF ( BlueZ_FIND_REQUIRED )
IF ( BLUEZ_MIN_VERSION )
PKG_SEARCH_MODULE( BLUEZ ${_pkgconfig_REQUIRED} bluez>=${BLUEZ_MIN_VERSION} )
ELSE ( BLUEZ_MIN_VERSION )
PKG_SEARCH_MODULE( BLUEZ ${_pkgconfig_REQUIRED} bluez )
ENDIF ( BLUEZ_MIN_VERSION )
# Look for BlueZ include dir and libraries
IF( NOT BLUEZ_FOUND AND NOT PKG_CONFIG_FOUND )
FIND_PATH( BLUEZ_INCLUDE_DIR bluetooth/bluetooth.h )
FIND_LIBRARY( BLUEZ_LIBRARIES bluetooth )
# Report results
IF ( BLUEZ_LIBRARIES AND BLUEZ_INCLUDE_DIR )
SET( BLUEZ_FOUND 1 )
IF ( NOT BlueZ_FIND_QUIETLY )
MESSAGE( STATUS "Found BlueZ: ${BLUEZ_LIBRARIES}" )
ENDIF ( NOT BlueZ_FIND_QUIETLY )
ELSE ( BLUEZ_LIBRARIES AND BLUEZ_INCLUDE_DIR )
IF ( BlueZ_FIND_REQUIRED )
MESSAGE( SEND_ERROR "Could NOT find BLUEZ" )
ELSE ( BlueZ_FIND_REQUIRED )
IF ( NOT BlueZ_FIND_QUIETLY )
MESSAGE( STATUS "Could NOT find BLUEZ" )
ENDIF ( NOT BlueZ_FIND_QUIETLY )
ENDIF ( BlueZ_FIND_REQUIRED )
ENDIF ( BLUEZ_LIBRARIES AND BLUEZ_INCLUDE_DIR )
ENDIF( NOT BLUEZ_FOUND AND NOT PKG_CONFIG_FOUND )
# Hide advanced variables from CMake GUIs
MARK_AS_ADVANCED( BLUEZ_LIBRARIES BLUEZ_INCLUDE_DIR )