CMakeLists.txt 364 B

1234567891011121314
  1. add_library(web_service STATIC
  2. announce_room_json.cpp
  3. announce_room_json.h
  4. telemetry_json.cpp
  5. telemetry_json.h
  6. verify_login.cpp
  7. verify_login.h
  8. web_backend.cpp
  9. web_backend.h
  10. web_result.h
  11. )
  12. create_target_directory_groups(web_service)
  13. target_link_libraries(web_service PRIVATE common network nlohmann_json::nlohmann_json httplib)