ya.make 497 B

1234567891011121314151617181920212223242526272829303132333435
  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. )
  10. PEERDIR(
  11. library/cpp/yt/assert
  12. library/cpp/yt/exception
  13. library/cpp/yt/misc
  14. library/cpp/yt/small_containers
  15. )
  16. CHECK_DEPENDENT_DIRS(
  17. ALLOW_ONLY ALL
  18. build
  19. contrib
  20. library
  21. util
  22. library/cpp/yt/assert
  23. library/cpp/yt/misc
  24. library/cpp/yt/small_containers
  25. )
  26. END()
  27. RECURSE_FOR_TESTS(
  28. unittests
  29. )