mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-20 14:48:56 +02:00
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)
|