blob: 7f0a2e1e9a64ce1483c9fd05599bdc3474f2af3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Features that can be enabled for cmake (see CMakeLists.txt)
option(ENABLE_WERROR "Make compiler warnings fatal" OFF)
option(ENABLE_DEBUG "Turn on debug output")
option(ENABLE_ASAN "Enable AddressSanitizer (ASAN)" OFF)
option(ENABLE_LIB_ONLY "Build libnghttp3 only" OFF)
option(ENABLE_STATIC_LIB "Build libnghttp3 as a static library" ON)
option(ENABLE_SHARED_LIB "Build libnghttp3 as a shared library" ON)
option(ENABLE_STATIC_CRT "Build libnghttp3 against the MS LIBCMT[d]")
# vim: ft=cmake:
|