CMakeLists.darwin-x86_64.txt 1.4 KB

123456789101112131415161718192021222324252627282930313233
  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_subdirectory(arch)
  7. add_library(contrib-libs-highwayhash)
  8. target_compile_options(contrib-libs-highwayhash PRIVATE
  9. $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything>
  10. )
  11. target_include_directories(contrib-libs-highwayhash PUBLIC
  12. ${CMAKE_SOURCE_DIR}/contrib/libs/highwayhash
  13. )
  14. target_link_libraries(contrib-libs-highwayhash PUBLIC
  15. contrib-libs-cxxsupp
  16. yutil
  17. highwayhash-arch-avx2
  18. highwayhash-arch-sse41
  19. )
  20. target_sources(contrib-libs-highwayhash PRIVATE
  21. ${CMAKE_SOURCE_DIR}/contrib/libs/highwayhash/highwayhash/arch_specific.cc
  22. ${CMAKE_SOURCE_DIR}/contrib/libs/highwayhash/highwayhash/instruction_sets.cc
  23. ${CMAKE_SOURCE_DIR}/contrib/libs/highwayhash/highwayhash/nanobenchmark.cc
  24. ${CMAKE_SOURCE_DIR}/contrib/libs/highwayhash/highwayhash/os_specific.cc
  25. ${CMAKE_SOURCE_DIR}/contrib/libs/highwayhash/highwayhash/sip_hash.cc
  26. ${CMAKE_SOURCE_DIR}/contrib/libs/highwayhash/highwayhash/scalar_sip_tree_hash.cc
  27. ${CMAKE_SOURCE_DIR}/contrib/libs/highwayhash/highwayhash/hh_portable.cc
  28. ${CMAKE_SOURCE_DIR}/contrib/libs/highwayhash/highwayhash/c_bindings.cc
  29. )