cmake: fix quotes when appending multiple options (SecureTransport)

Copied from a vcpkg distro patch:
02745e0f47/ports/curl/dependencies.patch (L43C38-L44)

Ref: https://github.com/microsoft/vcpkg/pull/38847
Ref: 795f2f137e
Ref: https://github.com/microsoft/vcpkg/pull/38847/commits/36f0c917de5319e95361451fc0aef0698b264874#diff-ab5c23e5dc5df412539cc93e24b37abbc588e1918236f8abc019d676b270c85fR39 (sub-commit)

Authored-by: Kai Pastor
Closes #13953
This commit is contained in:
Viktor Szakats 2024-06-14 13:10:10 +02:00
parent 66c4a398d7
commit b37040dd60
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -465,7 +465,7 @@ if(use_core_foundation_and_core_services)
message(FATAL_ERROR "CoreServices framework not found")
endif()
list(APPEND CURL_LIBS "-framework CoreFoundation -framework CoreServices")
list(APPEND CURL_LIBS "-framework CoreFoundation" "-framework CoreServices")
endif()
if(CURL_USE_OPENSSL)