Skip to content

Commit c0d0ca1

Browse files
committed
Try quoting the input value in order to avoid string escaping issues
1 parent d5aa2b5 commit c0d0ca1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ endif()
1414
if(CASS_USE_OPENSSL)
1515
list(APPEND SOURCES ssl/ssl_openssl_impl.cpp ssl/ring_buffer_bio.cpp)
1616
# 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
17+
# interface into OpenSSL BIO ops. See https://docs.openssl.org/1.1.1/man3/OPENSSL_Applink/
1818
if(WIN32 AND (NOT CASS_OPENSSL_APPLINK STREQUAL ""))
19-
list(APPEND SOURCES ${CASS_OPENSSL_APPLINK})
19+
list(APPEND SOURCES "${CASS_OPENSSL_APPLINK}")
2020
endif()
2121
else()
2222
list(APPEND SOURCES ssl/ssl_no_impl.cpp)

0 commit comments

Comments
 (0)