summaryrefslogtreecommitdiffstats
path: root/cmake/FindDEXELA.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/FindDEXELA.cmake')
-rw-r--r--cmake/FindDEXELA.cmake19
1 files changed, 0 insertions, 19 deletions
diff --git a/cmake/FindDEXELA.cmake b/cmake/FindDEXELA.cmake
deleted file mode 100644
index a68bf6c..0000000
--- a/cmake/FindDEXELA.cmake
+++ /dev/null
@@ -1,19 +0,0 @@
-# Try to find libdexela.so
-#
-# Defines
-#
-# DEXELA_FOUND - system has libdexela
-# DEXELA_INCLUDE_DIRS - libdexela include directory
-# DEXELA_LIBRARIES - dexela library
-
-find_package(PackageHandleStandardArgs)
-
-find_path(DEXELA_INCLUDE_DIRS dexela_api.h PATHS /usr/include /usr/include/dexela)
-find_library(DEXELA_LIBRARIES dexela)
-
-find_package_handle_standard_args(DEXELA DEFAULT_MSG DEXELA_LIBRARIES DEXELA_INCLUDE_DIRS)
-
-mark_as_advanced(
- DEXELA_INCLUDE_DIRS
- DEXELA_LIBRARIES
-)