We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5aa2b5 commit c0d0ca1Copy full SHA for c0d0ca1
src/CMakeLists.txt
@@ -14,9 +14,9 @@ endif()
14
if(CASS_USE_OPENSSL)
15
list(APPEND SOURCES ssl/ssl_openssl_impl.cpp ssl/ring_buffer_bio.cpp)
16
# Allow user to specify the location of applink.c. Some Windows builds require this as an
17
- # interface into OpenSSL BIO ops. See https://docs.openssl.org/1.1.1/man3/OPENSSL_Applink/#synopsis
+ # interface into OpenSSL BIO ops. See https://docs.openssl.org/1.1.1/man3/OPENSSL_Applink/
18
if(WIN32 AND (NOT CASS_OPENSSL_APPLINK STREQUAL ""))
19
- list(APPEND SOURCES ${CASS_OPENSSL_APPLINK})
+ list(APPEND SOURCES "${CASS_OPENSSL_APPLINK}")
20
endif()
21
else()
22
list(APPEND SOURCES ssl/ssl_no_impl.cpp)
0 commit comments