mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2025-01-28 10:28:23 +01:00
fedf750e1b
Neither core nor web_services use OpenSSL nor LibreSSL. However they need to link them as it's a requirement of httplib. So let's declare this within httplib instead of core and web_services.
11 lines
282 B
CMake
11 lines
282 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)
|
|
target_link_libraries(web_service PRIVATE common json-headers httplib lurlparser)
|