mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-05 06:47:53 +00:00
ca5ed50655
This is the only place it's actively used. It's also more appropriate for web-related structures to be within the web service target. Especially given this one doesn't rely on anything in the common library.
12 lines
315 B
CMake
12 lines
315 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
|
|
web_result.h
|
|
)
|
|
|
|
create_target_directory_groups(web_service)
|
|
target_link_libraries(web_service PRIVATE common nlohmann_json::nlohmann_json httplib lurlparser)
|