Skip to content

Commit

Permalink
Set option cares default ON
Browse files Browse the repository at this point in the history
  • Loading branch information
hks2002 committed Mar 14, 2024
1 parent f7739d3 commit cb5f1f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -14,7 +14,7 @@ option(BUILD_TESTING "Build tests" OFF)
option(BUILD_DOC "Build Doxygen documentation" OFF)
option(BUILD_DEPENDENCIES "Fetch and build dependencies" OFF)
option(TRANTOR_USE_SPDLOG "Allow using the spdlog logging library" ON)
option(TRANTOR_USE_C-ARES "Allow using C-ARES" OFF)
option(TRANTOR_USE_C-ARES "Allow using C-ARES" ON)
set(TRANTOR_TLS_PROVIDER
"auto"
CACHE STRING "TLS(Transport Layer Security) provider for trantor. Valid options are
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -43,7 +43,7 @@ Trantor provides some building options, you can enable or disable them by settin
| BUILD_DOC | Build Doxygen documentation | OFF |
| BUILD_DEPENDENCIES | Fetch and build dependencies, this allow you use latest or change dependencies version, if you don't want to use system package manager provided | OFF |
| TRANTOR_USE_SPDLOG | Allow using the spdlog logging library | ON |
| TRANTOR_USE_C-ARES | Allow using C-ARES | OFF |
| TRANTOR_USE_C-ARES | Allow using C-ARES | ON |
| TRANTOR_TLS_PROVIDER | TLS provider for trantor. Valid options are 'none', 'openssl', 'botan-3', 'auto'. | auto |

> With option `BUILD_DEPENDENCIES` on, the related dependencies source will download and build automatically based on the options settings, this make develop more easily in `Windows`.
Expand Down

0 comments on commit cb5f1f7

Please sign in to comment.