Skip to content
Snippets Groups Projects
Commit c0ab8591 authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'FindCURL-pkg-config'


ab6b44b1 FindCURL: Fix parsing protocols/features from pkg-config output

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !9090
parents 3df386a7 ab6b44b1
No related branches found
No related tags found
No related merge requests found
......@@ -94,8 +94,10 @@ find_package(PkgConfig QUIET)
if(PKG_CONFIG_FOUND)
pkg_check_modules(PC_CURL QUIET libcurl)
if(PC_CURL_FOUND)
pkg_get_variable(CURL_SUPPORTED_PROTOCOLS libcurl supported_protocols)
pkg_get_variable(CURL_SUPPORTED_FEATURES libcurl supported_features)
pkg_get_variable(CURL_SUPPORTED_PROTOCOLS_STRING libcurl supported_protocols)
string(REPLACE " " ";" CURL_SUPPORTED_PROTOCOLS "${CURL_SUPPORTED_PROTOCOLS_STRING}")
pkg_get_variable(CURL_SUPPORTED_FEATURES_STRING libcurl supported_features)
string(REPLACE " " ";" CURL_SUPPORTED_FEATURES "${CURL_SUPPORTED_FEATURES_STRING}")
endif()
endif()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment