2023-12-06 15:12:34 +01:00
|
|
|
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
|
|
|
|
|
|
|
|
add_library(happyhttp STATIC
|
|
|
|
./happyhttp/happyhttp.h
|
|
|
|
./happyhttp/happyhttp.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
target_include_directories(happyhttp PUBLIC .)
|
|
|
|
target_compile_features(happyhttp PUBLIC cxx_std_11)
|
2024-04-07 11:02:12 +02:00
|
|
|
if(WIN32)
|
|
|
|
target_link_libraries(happyhttp iphlpapi ws2_32)
|
|
|
|
endif()
|
2023-12-06 15:12:34 +01:00
|
|
|
|