This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2017-12-10 23:55:03 +00:00
|
|
|
add_library(web_service STATIC
|
2017-10-31 09:02:42 +00:00
|
|
|
announce_room_json.cpp
|
|
|
|
announce_room_json.h
|
2017-12-10 23:55:03 +00:00
|
|
|
telemetry_json.cpp
|
|
|
|
telemetry_json.h
|
|
|
|
verify_login.cpp
|
|
|
|
verify_login.h
|
|
|
|
web_backend.cpp
|
|
|
|
web_backend.h
|
|
|
|
)
|
2017-06-28 03:01:49 +00:00
|
|
|
|
2017-12-10 23:55:03 +00:00
|
|
|
create_target_directory_groups(web_service)
|
2017-06-28 03:01:49 +00:00
|
|
|
|
2018-03-24 19:19:35 +00:00
|
|
|
get_directory_property(OPENSSL_LIBS
|
|
|
|
DIRECTORY ${CMAKE_SOURCE_DIR}/externals/libressl
|
|
|
|
DEFINITION OPENSSL_LIBS)
|
2018-10-20 14:47:17 +00:00
|
|
|
target_compile_definitions(web_service PRIVATE -DCPPHTTPLIB_OPENSSL_SUPPORT)
|
2018-10-02 14:04:10 +00:00
|
|
|
target_link_libraries(web_service PRIVATE common json-headers ${OPENSSL_LIBS} httplib lurlparser)
|