cmake: fix the help text to the static build option in CMakeLists.txt

Closes #11843
This commit is contained in:
Mathias Fuchs 2023-09-13 14:55:58 +02:00 committed by Daniel Stenberg
parent 9764bfc368
commit adbb7a030d
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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)