|
@@ -86,7 +86,10 @@ if (ENABLE_WEB_SERVICE)
|
|
|
set(LIBRESSL_SKIP_INSTALL ON CACHE BOOL "")
|
|
set(LIBRESSL_SKIP_INSTALL ON CACHE BOOL "")
|
|
|
add_subdirectory(libressl EXCLUDE_FROM_ALL)
|
|
add_subdirectory(libressl EXCLUDE_FROM_ALL)
|
|
|
target_include_directories(ssl INTERFACE ./libressl/include)
|
|
target_include_directories(ssl INTERFACE ./libressl/include)
|
|
|
- target_compile_definitions(ssl PRIVATE -DHAVE_INET_NTOP)
|
|
|
|
|
|
|
+ target_compile_definitions(ssl PRIVATE -DHAVE_INET_NTOP)
|
|
|
|
|
+ get_directory_property(OPENSSL_LIBRARIES
|
|
|
|
|
+ DIRECTORY libressl
|
|
|
|
|
+ DEFINITION OPENSSL_LIBS)
|
|
|
|
|
|
|
|
# lurlparser
|
|
# lurlparser
|
|
|
add_subdirectory(lurlparser EXCLUDE_FROM_ALL)
|
|
add_subdirectory(lurlparser EXCLUDE_FROM_ALL)
|
|
@@ -94,6 +97,8 @@ if (ENABLE_WEB_SERVICE)
|
|
|
# httplib
|
|
# httplib
|
|
|
add_library(httplib INTERFACE)
|
|
add_library(httplib INTERFACE)
|
|
|
target_include_directories(httplib INTERFACE ./httplib)
|
|
target_include_directories(httplib INTERFACE ./httplib)
|
|
|
|
|
+ target_compile_definitions(httplib INTERFACE -DCPPHTTPLIB_OPENSSL_SUPPORT)
|
|
|
|
|
+ target_link_libraries(httplib INTERFACE ${OPENSSL_LIBRARIES})
|
|
|
|
|
|
|
|
# JSON
|
|
# JSON
|
|
|
add_library(json-headers INTERFACE)
|
|
add_library(json-headers INTERFACE)
|