mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-14 23:09:28 +00:00
9 lines
247 B
CMake
9 lines
247 B
CMake
file(GLOB SRC_LLHTTP "*.c" "*.h")
|
|
list(SORT SRC_LLHTTP)
|
|
|
|
add_library(llhttp OBJECT ${SRC_LLHTTP})
|
|
|
|
if(NOT MSVC)
|
|
set_source_files_properties(api.c http.c llhttp.c PROPERTIES COMPILE_FLAGS "-Wno-unused-parameter -Wno-missing-declarations")
|
|
endif()
|