CMakeLists.linux-aarch64.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # This file was generated 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. add_executable(grpc_cpp)
  7. target_compile_options(grpc_cpp PRIVATE
  8. -DGRPC_USE_ABSL=0
  9. $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything>
  10. )
  11. target_include_directories(grpc_cpp PRIVATE
  12. ${CMAKE_SOURCE_DIR}/contrib/libs/grpc
  13. ${CMAKE_SOURCE_DIR}/contrib/libs/grpc/include
  14. )
  15. target_link_libraries(grpc_cpp PUBLIC
  16. contrib-libs-linux-headers
  17. contrib-libs-cxxsupp
  18. yutil
  19. src-compiler-grpc_plugin_support
  20. )
  21. target_link_options(grpc_cpp PRIVATE
  22. -ldl
  23. -lrt
  24. -Wl,--no-as-needed
  25. -fPIC
  26. -fPIC
  27. -lpthread
  28. -lrt
  29. -ldl
  30. )
  31. target_sources(grpc_cpp PRIVATE
  32. ${CMAKE_SOURCE_DIR}/contrib/libs/grpc/src/compiler/cpp_plugin.cc
  33. )
  34. target_allocator(grpc_cpp
  35. cpp-malloc-jemalloc
  36. )
  37. vcs_info(grpc_cpp)