vcpkg/ports/http-parser/CMakeLists.txt

21 lines
528 B
CMake
Raw Normal View History

cmake_minimum_required (VERSION 3.4)
2016-11-25 23:33:16 +08:00
project (http-parser)
if (BUILD_SHARED_LIBS)
SET(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
endif()
2016-11-25 23:33:16 +08:00
if(CMAKE_BUILD_TYPE MATCHES "Release")
add_definitions(-DHTTP_PARSER_STRICT=0)
endif()
add_library(http_parser http_parser.c http_parser.h)
2016-11-25 23:33:16 +08:00
install(TARGETS http_parser
RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin"
ARCHIVE DESTINATION "${CMAKE_INSTALL_PREFIX}/lib"
)
2016-11-25 23:33:16 +08:00
if (NOT SKIP_INSTALL_HEADERS)
install(FILES http_parser.h DESTINATION "${CMAKE_INSTALL_PREFIX}/include")
2016-11-25 23:33:16 +08:00
endif()