@@ -7,8 +7,8 @@ set(PROJECT_DESCRIPTION "C/C++ WebRTC network library featuring Data Channels, M
7
7
include (GNUInstallDirs)
8
8
9
9
# Options
10
- option (USE_MBEDTLS "Use Mbed TLS instead of OpenSSL" OFF )
11
10
option (USE_GNUTLS "Use GnuTLS instead of OpenSSL" OFF )
11
+ option (USE_MBEDTLS "Use Mbed TLS instead of OpenSSL" OFF )
12
12
option (USE_NICE "Use libnice instead of libjuice" OFF )
13
13
option (PREFER_SYSTEM_LIB "Prefer system libraries over deps folder" OFF )
14
14
option (USE_SYSTEM_SRTP "Use system libSRTP" ${PREFER_SYSTEM_LIB} )
@@ -24,11 +24,10 @@ option(WARNINGS_AS_ERRORS "Treat warnings as errors" OFF)
24
24
option (CAPI_STDCALL "Set calling convention of C API callbacks stdcall" OFF )
25
25
option (SCTP_DEBUG "Enable SCTP debugging output to verbose log" OFF )
26
26
27
- if (USE_MBEDTLS AND USE_GNUTLS )
28
- message (FATAL_ERROR "Both USE_MBEDTLS and USE_GNUTLS can not be enabled at the same time" )
27
+ if (USE_GNUTLS AND USE_MBEDTLS )
28
+ message (FATAL_ERROR "Both USE_MBEDTLS and USE_GNUTLS cannot be enabled at the same time" )
29
29
endif ()
30
30
31
-
32
31
if (USE_GNUTLS)
33
32
option (USE_NETTLE "Use Nettle in libjuice" ON )
34
33
else ()
@@ -355,9 +354,8 @@ if (USE_GNUTLS)
355
354
endif ()
356
355
elseif (USE_MBEDTLS)
357
356
find_package (MbedTLS 3 REQUIRED)
358
-
359
- target_compile_definitions (datachannel PRIVATE USE_MBEDTLS)
360
- target_compile_definitions (datachannel-static PRIVATE USE_MBEDTLS)
357
+ target_compile_definitions (datachannel PRIVATE USE_MBEDTLS=1)
358
+ target_compile_definitions (datachannel-static PRIVATE USE_MBEDTLS=1)
361
359
target_link_libraries (datachannel PRIVATE MbedTLS::MbedTLS)
362
360
target_link_libraries (datachannel-static PRIVATE MbedTLS::MbedTLS)
363
361
else ()
0 commit comments