initial release
This commit is contained in:
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
# 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()
|
||||
Reference in New Issue
Block a user