Skip to content

Commit

Permalink
Try quoting the input value in order to avoid string escaping issues
Browse files Browse the repository at this point in the history
  • Loading branch information
absurdfarce committed Nov 5, 2024
1 parent d5aa2b5 commit c0d0ca1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ endif()
if(CASS_USE_OPENSSL)
list(APPEND SOURCES ssl/ssl_openssl_impl.cpp ssl/ring_buffer_bio.cpp)
# Allow user to specify the location of applink.c. Some Windows builds require this as an
# 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/
if(WIN32 AND (NOT CASS_OPENSSL_APPLINK STREQUAL ""))
list(APPEND SOURCES ${CASS_OPENSSL_APPLINK})
list(APPEND SOURCES "${CASS_OPENSSL_APPLINK}")
endif()
else()
list(APPEND SOURCES ssl/ssl_no_impl.cpp)
Expand Down

0 comments on commit c0d0ca1

Please sign in to comment.