16 lines
414 B
CMake
16 lines
414 B
CMake
# cpp-httplib: HTTP server library (no SSL, behind reverse proxy in prod)
|
|
|
|
add_library(httplib STATIC httplib.cpp)
|
|
target_include_directories(httplib PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
# suppress warnings in third-party code
|
|
if(MSVC)
|
|
target_compile_options(httplib PRIVATE /w)
|
|
else()
|
|
target_compile_options(httplib PRIVATE -w)
|
|
endif()
|
|
|
|
if(WIN32)
|
|
target_link_libraries(httplib PRIVATE ws2_32)
|
|
endif()
|