summaryrefslogtreecommitdiff
path: root/cmake/FindPolarSSL.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/FindPolarSSL.cmake')
-rw-r--r--cmake/FindPolarSSL.cmake23
1 files changed, 0 insertions, 23 deletions
diff --git a/cmake/FindPolarSSL.cmake b/cmake/FindPolarSSL.cmake
deleted file mode 100644
index b9d04ef..0000000
--- a/cmake/FindPolarSSL.cmake
+++ /dev/null
@@ -1,23 +0,0 @@
-# - Try to find the PolarSSL SSL Library
-# The module will set the following variables
-#
-# POLARSSL_FOUND - System has popt
-# POLARSSL_INCLUDE_DIR - The popt include directory
-# POLARSSL_LIBRARIES - The libraries needed to use popt
-
-# Find the include directories
-FIND_PATH(POLARSSL_INCLUDE_DIR
- NAMES polarssl/ssl.h
- DOC "Path containing the polarssl/ssl.h include file"
- )
-
-FIND_LIBRARY(POLARSSL_LIBRARIES
- NAMES polarssl
- DOC "polarssl library path"
- )
-
-include(FindPackageHandleStandardArgs)
-
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(POLARSSL
- REQUIRED_VARS POLARSSL_INCLUDE_DIR POLARSSL_LIBRARIES
- )