Skip to content
Snippets Groups Projects
  • Peter Wu's avatar
    Add CMake build system support · a671f091
    Peter Wu authored
    Based on nghttp2 cmake build system. Advantage of this is a faster build
    (cmake runs faster than configure and ninja is faster than make).
    
    Changes from autotools:
    * Warnings are enabled by default (independent of ENABLE_WERROR).
    * ENABLE_WERROR has changed meaning (it just controls -Werror).
    * include/ngtcp2/{version,ngtcp2}.h header files are installed.
    a671f091
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
CMakeOptions.txt 189 B
# 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")

# vim: ft=cmake: