aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorFelix Rohrbach <fxrh@gmx.de>2016-10-02 08:01:22 +0900
committerAlexey Andreyev <aa13q@ya.ru>2019-06-25 14:48:11 +0300
commit90623dd4a191d4cce2ddd514f313f689d0a135b0 (patch)
tree13919a7663d9b773855e3d8c34897f913eef0589 /cmake
parent89e0cec42fe9538cbd170a9dc3fcf6dd18b5ac02 (diff)
downloadlibquotient-90623dd4a191d4cce2ddd514f313f689d0a135b0.tar.gz
libquotient-90623dd4a191d4cce2ddd514f313f689d0a135b0.zip
Include olm via cmake (should work on Linux and MinGW)
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindOlm.cmake30
1 files changed, 30 insertions, 0 deletions
diff --git a/cmake/FindOlm.cmake b/cmake/FindOlm.cmake
new file mode 100644
index 00000000..3fea7b46
--- /dev/null
+++ b/cmake/FindOlm.cmake
@@ -0,0 +1,30 @@
+# - Try to find LibOlm
+
+# Uses the following variables to help find libolm:
+# Olm_INCLUDE_DIR - include files
+# Olm_LIBRARY_DIR - libraries
+# Once done this will define
+# Olm_FOUND - System has olm
+# Olm_INCLUDE_DIRS - The olm include directories
+# Olm_LIBRARIES - The libraries needed to use olm
+
+find_path(Olm_INCLUDE_DIRS NAMES
+ olm/olm.h
+ olm/inbound_group_session.h
+ olm/outbound_group_session.h
+ PATHS "${Olm_INCLUDE_DIR}"
+ DOC "Path to a directory with libolm header files"
+)
+
+find_library(Olm_LIBRARIES NAMES olm
+ PATHS "${Olm_LIBRARY_DIR}"
+ DOC "Path to a directory with libolm libraries"
+)
+
+include(FindPackageHandleStandardArgs)
+# handle the QUIETLY and REQUIRED arguments and set OLM_FOUND to TRUE
+# if all listed variables are TRUE
+find_package_handle_standard_args(olm DEFAULT_MSG
+ Olm_LIBRARIES Olm_INCLUDE_DIRS)
+
+mark_as_advanced(Olm_INCLUDE_DIRS Olm_LIBRARIES)