summaryrefslogtreecommitdiffstats
path: root/CMakeScripts/FindSSL.cmake
blob: 7a26716997532b1f7b6f93f4db529cf27bab7c01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# - Try to find SSL
# Once done this will define
#
#  SSL_FOUND - system has SSL
#  SSL_INCLUDE_DIRS - the SSL include directory
#  SSL_LIBRARIES - Link these to use SSL
#  SSL_DEFINITIONS - Compiler switches required for using SSL
#
#  Copyright (c) 2008 Joshua L. Blocher <verbalshadow@gmail.com>
#
#  Redistribution and use is allowed according to the terms of the New
#  BSD license.
#  For details see the accompanying COPYING-CMAKE-SCRIPTS file.
#


if (SSL_LIBRARIES AND SSL_INCLUDE_DIRS)
  # in cache already
  set(SSL_FOUND TRUE)
else (SSL_LIBRARIES AND SSL_INCLUDE_DIRS)
  # use pkg-config to get the directories and then use these values
  # in the FIND_PATH() and FIND_LIBRARY() calls
  if (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4)
    include(UsePkgConfig)
    pkgconfig(libssl _SSL_INCLUDEDIR _SSL_LIBDIR _SSL_LDFLAGS _SSL_CFLAGS)
  else (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4)
    find_package(PkgConfig)
    if (PKG_CONFIG_FOUND)
      pkg_check_modules(_SSL libssl)
    endif (PKG_CONFIG_FOUND)
  endif (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4)
  find_path(SSL_INCLUDE_DIR
    NAMES
      ssl.h
    PATHS
      ${_SSL_INCLUDEDIR}
      /usr/include
      /usr/local/include
      /opt/local/include
      /sw/include
    PATH_SUFFIXES
      openssl
  )

  find_library(SSL_LIBRARY
    NAMES
      ssl
    PATHS
      ${_SSL_LIBDIR}
      /usr/lib
      /usr/local/lib
      /opt/local/lib
      /sw/lib
  )

  if (SSL_LIBRARY)
    set(SSL_FOUND TRUE)
  endif (SSL_LIBRARY)

  set(SSL_INCLUDE_DIRS
    ${SSL_INCLUDE_DIR}
  )

  if (SSL_FOUND)
    set(SSL_LIBRARIES
      ${SSL_LIBRARIES}
      ${SSL_LIBRARY}
    )
  endif (SSL_FOUND)

  if (SSL_INCLUDE_DIRS AND SSL_LIBRARIES)
     set(SSL_FOUND TRUE)
  endif (SSL_INCLUDE_DIRS AND SSL_LIBRARIES)

  if (SSL_FOUND)
    if (NOT SSL_FIND_QUIETLY)
      message(STATUS "Found SSL: ${SSL_LIBRARIES}")
    endif (NOT SSL_FIND_QUIETLY)
  else (SSL_FOUND)
    if (SSL_FIND_REQUIRED)
      message(FATAL_ERROR "Could not find SSL")
    endif (SSL_FIND_REQUIRED)
  endif (SSL_FOUND)

  # show the SSL_INCLUDE_DIRS and SSL_LIBRARIES variables only in the advanced view
  mark_as_advanced(SSL_INCLUDE_DIRS SSL_LIBRARIES)

endif (SSL_LIBRARIES AND SSL_INCLUDE_DIRS)