2018-09-16 19:05:51 +01:00
|
|
|
add_library(web_service STATIC
|
|
|
|
telemetry_json.cpp
|
|
|
|
telemetry_json.h
|
|
|
|
verify_login.cpp
|
|
|
|
verify_login.h
|
|
|
|
web_backend.cpp
|
|
|
|
web_backend.h
|
|
|
|
)
|
|
|
|
|
|
|
|
create_target_directory_groups(web_service)
|
|
|
|
|
|
|
|
get_directory_property(OPENSSL_LIBS
|
|
|
|
DIRECTORY ${CMAKE_SOURCE_DIR}/externals/libressl
|
|
|
|
DEFINITION OPENSSL_LIBS)
|
2018-10-02 15:04:10 +01:00
|
|
|
target_compile_definitions(web_service PUBLIC -DCPPHTTPLIB_OPENSSL_SUPPORT)
|
|
|
|
target_link_libraries(web_service PRIVATE common json-headers ${OPENSSL_LIBS} httplib lurlparser)
|