# 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 in static mode also")

# vim: ft=cmake:
