Skip to content

Commit 3e6a5b3

Browse files
CMake: Cosmetic fixes for MbedTLS
1 parent dde645f commit 3e6a5b3

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

CMakeLists.txt

+5-7
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ set(PROJECT_DESCRIPTION "C/C++ WebRTC network library featuring Data Channels, M
77
include(GNUInstallDirs)
88

99
# Options
10-
option(USE_MBEDTLS "Use Mbed TLS instead of OpenSSL" OFF)
1110
option(USE_GNUTLS "Use GnuTLS instead of OpenSSL" OFF)
11+
option(USE_MBEDTLS "Use Mbed TLS instead of OpenSSL" OFF)
1212
option(USE_NICE "Use libnice instead of libjuice" OFF)
1313
option(PREFER_SYSTEM_LIB "Prefer system libraries over deps folder" OFF)
1414
option(USE_SYSTEM_SRTP "Use system libSRTP" ${PREFER_SYSTEM_LIB})
@@ -24,11 +24,10 @@ option(WARNINGS_AS_ERRORS "Treat warnings as errors" OFF)
2424
option(CAPI_STDCALL "Set calling convention of C API callbacks stdcall" OFF)
2525
option(SCTP_DEBUG "Enable SCTP debugging output to verbose log" OFF)
2626

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")
2929
endif()
3030

31-
3231
if(USE_GNUTLS)
3332
option(USE_NETTLE "Use Nettle in libjuice" ON)
3433
else()
@@ -355,9 +354,8 @@ if (USE_GNUTLS)
355354
endif()
356355
elseif(USE_MBEDTLS)
357356
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)
361359
target_link_libraries(datachannel PRIVATE MbedTLS::MbedTLS)
362360
target_link_libraries(datachannel-static PRIVATE MbedTLS::MbedTLS)
363361
else()

0 commit comments

Comments
 (0)