CMakeLists.txt 138 Bytes
Newer Older
1 2
file(GLOB SRC_HTTP "*.c" "*.h")
list(SORT SRC_HTTP)
3

4
add_library(http-parser OBJECT ${SRC_HTTP})
5

6
enable_warnings(implicit-fallthrough=1)