mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-09 21:29:58 +00: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.
12 lines
282 B
CMake
12 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)
|