From: Mathias Fuchs Date: Wed, 13 Sep 2023 12:55:58 +0000 (+0200) Subject: cmake: fix the help text to the static build option in CMakeLists.txt X-Git-Tag: curl-8_4_0~188 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=adbb7a030dc4d9008a8e28714cd3526db327f716;p=thirdparty%2Fcurl.git cmake: fix the help text to the static build option in CMakeLists.txt Closes #11843 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index bc42c6a628..876e1294b5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -102,7 +102,7 @@ option(CURL_WERROR "Turn compiler warnings into errors" OFF) option(PICKY_COMPILER "Enable picky compiler options" ON) option(BUILD_CURL_EXE "Set to ON to build curl executable." ON) option(BUILD_SHARED_LIBS "Build shared libraries" ON) -option(BUILD_STATIC_LIBS "Build shared libraries" OFF) +option(BUILD_STATIC_LIBS "Build static libraries" OFF) option(BUILD_STATIC_CURL "Build curl executable with static libcurl" OFF) option(ENABLE_ARES "Set to ON to enable c-ares support" OFF) if(WIN32)