CMakeLists.txt 304 B

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