CMakeLists.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. # This file was gererated by the build system used internally in the Yandex monorepo.
  2. # Only simple modifications are allowed (adding source-files to targets, adding simple properties
  3. # like target_include_directories). These modifications will be ported to original
  4. # ya.make files by maintainers. Any complex modifications which can't be ported back to the
  5. # original buildsystem will not be accepted.
  6. find_package(OpenSSL REQUIRED)
  7. find_package(ZLIB REQUIRED)
  8. add_library(cpp-actors-http)
  9. target_link_libraries(cpp-actors-http PUBLIC
  10. contrib-libs-cxxsupp
  11. yutil
  12. OpenSSL::OpenSSL
  13. ZLIB::ZLIB
  14. cpp-actors-core
  15. cpp-actors-interconnect
  16. library-cpp-dns
  17. cpp-monlib-metrics
  18. cpp-string_utils-quote
  19. )
  20. target_sources(cpp-actors-http PRIVATE
  21. ${CMAKE_SOURCE_DIR}/library/cpp/actors/http/http_cache.cpp
  22. ${CMAKE_SOURCE_DIR}/library/cpp/actors/http/http_compress.cpp
  23. ${CMAKE_SOURCE_DIR}/library/cpp/actors/http/http_proxy_acceptor.cpp
  24. ${CMAKE_SOURCE_DIR}/library/cpp/actors/http/http_proxy_incoming.cpp
  25. ${CMAKE_SOURCE_DIR}/library/cpp/actors/http/http_proxy_outgoing.cpp
  26. ${CMAKE_SOURCE_DIR}/library/cpp/actors/http/http_proxy.cpp
  27. ${CMAKE_SOURCE_DIR}/library/cpp/actors/http/http_static.cpp
  28. ${CMAKE_SOURCE_DIR}/library/cpp/actors/http/http.cpp
  29. )