ya.make 520 B

123456789101112131415161718192021222324252627282930313233343536
  1. LIBRARY()
  2. INCLUDE(${ARCADIA_ROOT}/library/cpp/yt/ya_cpp.make.inc)
  3. SRCS(
  4. enum.cpp
  5. guid.cpp
  6. string.cpp
  7. format_string.cpp
  8. format.cpp
  9. string_builder.cpp
  10. )
  11. PEERDIR(
  12. library/cpp/yt/assert
  13. library/cpp/yt/exception
  14. library/cpp/yt/misc
  15. library/cpp/yt/small_containers
  16. )
  17. CHECK_DEPENDENT_DIRS(
  18. ALLOW_ONLY ALL
  19. build
  20. contrib
  21. library
  22. util
  23. library/cpp/yt/assert
  24. library/cpp/yt/misc
  25. library/cpp/yt/small_containers
  26. )
  27. END()
  28. RECURSE_FOR_TESTS(
  29. unittests
  30. )