aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorAlexey Andreyev <aa13q@ya.ru>2019-06-26 16:36:45 +0300
committerAlexey Andreyev <aa13q@ya.ru>2019-07-04 15:26:34 +0300
commitb5f9e1bd20f985c18ec630fa496510018547b728 (patch)
treedba4e2813ddc5da9e2c2ebc111b18c52f9ab6fb4 /cmake
parente1bee9d71d88d6500d2c6124689a0e8685aeab90 (diff)
downloadlibquotient-b5f9e1bd20f985c18ec630fa496510018547b728.tar.gz
libquotient-b5f9e1bd20f985c18ec630fa496510018547b728.zip
Change libQtOlm location. Fix .travis.yml and .appveyor.yml
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindOlm.cmake30
1 files changed, 0 insertions, 30 deletions
diff --git a/cmake/FindOlm.cmake b/cmake/FindOlm.cmake
deleted file mode 100644
index 3fea7b46..00000000
--- a/cmake/FindOlm.cmake
+++ /dev/null
@@ -1,30 +0,0 @@
-# - 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)