An error occurred while loading the file. Please try again.
-
Peter Wu authored
Prior to commit 4e955731, ngtcp2 was built as shared library. That has changed into a static or shared library depending on the BUILD_SHARED_LIBS option, but this option was not documented and the comments were misleading. Rectify both issues. Note that autotools builds both libraries by default, but the current CMake config is only able to build one of them.
af225b59
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
CMakeOptions.txt 461 B
# Features that can be enabled for cmake (see CMakeLists.txt)
option(BUILD_SHARED_LIBS "Build using shared libraries" OFF)
option(ENABLE_WERROR "Make compiler warnings fatal" OFF)
option(ENABLE_DEBUG "Turn on debug output" OFF)
option(ENABLE_ASAN "Enable AddressSanitizer (ASAN)" OFF)
option(ENABLE_GNUTLS "Enable GnuTLS crypto backend" ON)
option(ENABLE_OPENSSL "Enable OpenSSL crypto backend (required for examples)" ON)
# vim: ft=cmake: