diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-07-14 19:03:31 +0000 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-07-14 19:03:31 +0000 |
commit | a8ea1e9ef4ec959cfe95193318a05688f4610841 (patch) | |
tree | c336fdf5cb277cad0bb61adda2e42ac61da551a9 /CMakeLists.txt | |
parent | 6dade671adac2a02f1a5d68046e844967a4e639b (diff) | |
download | curl-a8ea1e9ef4ec959cfe95193318a05688f4610841.tar.gz |
ENH: add optional support for c-ares
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3663e454f..51349657a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,6 +68,17 @@ endif() option(BUILD_CURL_EXE "Set to ON to build cURL executable." ON) option(BUILD_CURL_TESTS "Set to ON to build cURL tests." ON) option(CURL_STATICLIB "Set to ON to build libcurl with static linking." OFF) +option(CURL_USE_ARES "Set to ON to enable c-ares support" OFF) +# initialize CURL_LIBS +set(CURL_LIBS "") + +if(CURL_USE_ARES) + set(USE_ARES ${CURL_USE_ARES}) + find_package(CARES REQUIRED) + list(APPEND CURL_LIBS ${CARES_LIBRARY} ) + message("CURL_LIBS = ${CURL_LIBS}") + set(CURL_LIBS ${CURL_LIBS} ${CARES_LIBRARY}) +endif() option(BUILD_DASHBOARD_REPORTS "Set to ON to activate reporting of cURL builds here http://www.cdash.org/CDashPublic/index.php?project=CURL" OFF) if(BUILD_DASHBOARD_REPORTS) @@ -188,7 +199,6 @@ endif(WIN32) # This macro checks if the symbol exists in the library and if it # does, it appends library to the list. -set(CURL_LIBS "") macro(CHECK_LIBRARY_EXISTS_CONCAT LIBRARY SYMBOL VARIABLE) check_library_exists("${LIBRARY};${CURL_LIBS}" ${SYMBOL} "" ${VARIABLE}) |