summaryrefslogtreecommitdiffstats
path: root/src/web_service/CMakeLists.txt
blob: 1c83e9c34beca714879830d196570f8cf73a33a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)
target_compile_definitions(web_service PUBLIC -DCPPHTTPLIB_OPENSSL_SUPPORT)
target_link_libraries(web_service PRIVATE common json-headers ${OPENSSL_LIBS} httplib lurlparser)