File: FindcyaSSL.cmake

package info (click to toggle)
librabbitmq 0.5.2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,176 kB
  • ctags: 1,558
  • sloc: ansic: 11,692; xml: 738; python: 599; makefile: 340; sh: 120
file content (23 lines) | stat: -rw-r--r-- 597 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# - Try to find the cyaSSL SSL Library
# The module will set the following variables
#
#  CYASSL_FOUND - System has popt
#  CYASSL_INCLUDE_DIR - The popt include directory
#  CYASSL_LIBRARIES - The libraries needed to use popt

# Find the include directories
FIND_PATH(CYASSL_INCLUDE_DIR
    NAMES cyassl/ssl.h
    DOC "Path containing the cyassl/ssl.h include file"
    )

FIND_LIBRARY(CYASSL_LIBRARIES
    NAMES cyassl
    DOC "cyassl library path"
    )

include(FindPackageHandleStandardArgs)

FIND_PACKAGE_HANDLE_STANDARD_ARGS(CYASSL
    REQUIRED_VARS CYASSL_INCLUDE_DIR CYASSL_LIBRARIES
  )