summaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2015-11-17 17:52:49 -0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-12-16 07:59:01 -0800
commit126d9a00e41607fc4c1eb20edcbe17529c09ef38 (patch)
tree87b4574a90235fefeb583019507c7f815a109a5a /cmake
parent65cecad564929e25940ba0b5e9d61c9024da49a8 (diff)
downloadsubsurface-126d9a00e41607fc4c1eb20edcbe17529c09ef38.tar.gz
Added HandleFindLibDiveComputer.cmake
Anoter attempt to clear the Main CMakeLists.txt file Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Modules/HandleFindLibDiveComputer.cmake7
1 files changed, 7 insertions, 0 deletions
diff --git a/cmake/Modules/HandleFindLibDiveComputer.cmake b/cmake/Modules/HandleFindLibDiveComputer.cmake
new file mode 100644
index 000000000..2f5bfeb32
--- /dev/null
+++ b/cmake/Modules/HandleFindLibDiveComputer.cmake
@@ -0,0 +1,7 @@
+if(LIBDC_FROM_PKGCONFIG)
+ pkg_config_library(LIBDC libdivecomputer REQUIRED)
+ set(LIBDIVECOMPUTER_LIBRARIES "")
+else()
+ find_package(Libdivecomputer REQUIRED)
+ include_directories(${LIBDIVECOMPUTER_INCLUDE_DIR})
+endif()