blob: dfeb6526ba91e50713c996407d2cd327f7d67d08 (
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
|
#
# Copyright 2018 Capitar IT Group BV <info@capitar.com>
# Copyright 2018 Staysail Systems, Inc. <info@staysail.tech>
# Copyright 2019 Devolutions <info@devolutions.net>
#
#
# This software is supplied under the terms of the MIT License, a
# copy of which should be located in the distribution where this
# file was obtained (LICENSE.txt). A copy of the license may also be
# found online at https://opensource.org/licenses/MIT.
#
set(_SRCS ${PROJECT_SOURCE_DIR}/include/nng/supplemental/tls/tls.h)
if (NNG_SUPP_TLS)
set(NNG_SUPP_TLS_MBEDTLS ON)
set(_DEFS -DNNG_SUPP_TLS)
list(APPEND _SRCS supplemental/tls/tls_common.c)
endif()
# For now we only support the ARM mbedTLS library.
if (NNG_SUPP_TLS_MBEDTLS)
message(WARNING "
************************************************************
Linking against mbedTLS changes license terms (Apache 2.0).
Consult a lawyer and the license files for details.
************************************************************")
# If mbedTLS was added by a consuming project, then we should use that
# instance of it, instead of configuring our own.
if (TARGET mbedtls)
set(_LIBS mbedtls)
else()
find_package(mbedTLS REQUIRED)
set(_LIBS ${MBEDTLS_LIBRARIES})
set(_INCS ${MBEDTLS_INCLUDE_DIR})
endif()
list(APPEND _SRCS supplemental/tls/mbedtls/tls.c)
else()
list(APPEND _SRCS supplemental/tls/none/tls.c)
endif()
list(APPEND NNG_DEFS ${_DEFS})
list(APPEND NNG_SRCS ${_SRCS})
list(APPEND NNG_LIBS ${_LIBS})
list(APPEND NNG_INCS ${_INCS})
set(NNG_DEFS ${NNG_DEFS} PARENT_SCOPE)
set(NNG_SRCS ${NNG_SRCS} PARENT_SCOPE)
set(NNG_LIBS ${NNG_LIBS} PARENT_SCOPE)
set(NNG_INCS ${NNG_INCS} PARENT_SCOPE)
|