adb9eda105
Given we link in httplib privately, we can also make the definition enabling OpenSSL support private as well. Prevents leaking a definition into other libraries that link with this one, like the core library.
16 lines
502 B
CMake
16 lines
502 B
CMake
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 PRIVATE -DCPPHTTPLIB_OPENSSL_SUPPORT)
|
|
target_link_libraries(web_service PRIVATE common json-headers ${OPENSSL_LIBS} httplib lurlparser)
|