forked from ngtcp2/ngtcp2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeOptions.txt
More file actions
17 lines (13 loc) · 745 Bytes
/
CMakeOptions.txt
File metadata and controls
17 lines (13 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Features that can be enabled for cmake (see CMakeLists.txt)
option(ENABLE_STATIC_LIB "Build as static libraries" ON)
option(ENABLE_SHARED_LIB "Build as shared libraries" ON)
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_JEMALLOC "Enable Jemalloc" OFF)
option(ENABLE_GNUTLS "Enable GnuTLS crypto backend" OFF)
option(ENABLE_OPENSSL "Enable OpenSSL crypto backend (required for examples)" ON)
option(ENABLE_BORINGSSL "Enable BoringSSL crypto backend" OFF)
option(ENABLE_PICOTLS "Enable Picotls crypto backend" OFF)
option(ENABLE_WOLFSSL "Enable wolfSSL crypto backend" OFF)
# vim: ft=cmake: