aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2011-09-21 07:30:13 +0200
committerAlex Neundorf <neundorf@kde.org>2011-09-21 07:30:13 +0200
commit6e3b6f44af3650ed39e72b85cf52063b45a9dfb6 (patch)
tree057eaa586bb5ddd6716f723c4bd3dfeda35666af /modules
parent5c8d7e3bbca29dc0a7e7a220fcb0d1de440d15fe (diff)
downloadextra-cmake-modules-6e3b6f44af3650ed39e72b85cf52063b45a9dfb6.tar.gz
extra-cmake-modules-6e3b6f44af3650ed39e72b85cf52063b45a9dfb6.tar.bz2
move FindBlueZ.cmake to the official modules/ directory
Alex
Diffstat (limited to 'modules')
-rw-r--r--modules/FindBlueZ.cmake51
1 files changed, 51 insertions, 0 deletions
diff --git a/modules/FindBlueZ.cmake b/modules/FindBlueZ.cmake
new file mode 100644
index 00000000..b1577d31
--- /dev/null
+++ b/modules/FindBlueZ.cmake
@@ -0,0 +1,51 @@
+# - Try to find BlueZ
+# Once done this will define
+#
+# BLUEZ_FOUND - system has BlueZ
+# BLUEZ_INCLUDE_DIR - the BlueZ include directory
+# BLUEZ_LIBRARIES - Link these to use BlueZ
+# BLUEZ_DEFINITIONS - Compiler switches required for using BlueZ
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+#
+
+# Copyright (c) 2008, 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 ( BLUEZ_INCLUDE_DIR AND BLUEZ_LIBRARIES )
+ # in cache already
+ set(BlueZ_FIND_QUIETLY TRUE)
+endif ( BLUEZ_INCLUDE_DIR AND BLUEZ_LIBRARIES )
+
+# use pkg-config to get the directories and then use these values
+# in the FIND_PATH() and FIND_LIBRARY() calls
+if( NOT WIN32 )
+ find_package(PkgConfig)
+
+ pkg_check_modules(PC_BLUEZ QUIET bluez)
+
+ set(BLUEZ_DEFINITIONS ${PC_BLUEZ_CFLAGS_OTHER})
+endif( NOT WIN32 )
+
+find_path(BLUEZ_INCLUDE_DIR NAMES bluetooth/bluetooth.h
+ PATHS
+ ${PC_BLUEZ_INCLUDEDIR}
+ ${PC_BLUEZ_INCLUDE_DIRS}
+ /usr/X11/include
+)
+
+find_library(BLUEZ_LIBRARIES NAMES bluetooth
+ PATHS
+ ${PC_BLUEZ_LIBDIR}
+ ${PC_BLUEZ_LIBRARY_DIRS}
+)
+
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(BlueZ DEFAULT_MSG BLUEZ_INCLUDE_DIR BLUEZ_LIBRARIES )
+
+# show the BLUEZ_INCLUDE_DIR and BLUEZ_LIBRARIES variables only in the advanced view
+mark_as_advanced(BLUEZ_INCLUDE_DIR BLUEZ_LIBRARIES )
+