ya.make 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. LIBRARY()
  2. SRCS(
  3. udf_allocator.cpp
  4. udf_allocator.h
  5. udf_counter.cpp
  6. udf_counter.h
  7. udf_data_type.cpp
  8. udf_data_type.h
  9. udf_helpers.cpp
  10. udf_helpers.h
  11. udf_pg_type_description.h
  12. udf_ptr.h
  13. udf_registrator.cpp
  14. udf_registrator.h
  15. udf_static_registry.cpp
  16. udf_static_registry.h
  17. udf_string.cpp
  18. udf_string.h
  19. udf_type_builder.cpp
  20. udf_type_builder.h
  21. udf_type_inspection.cpp
  22. udf_type_inspection.h
  23. udf_type_ops.h
  24. udf_type_printer.cpp
  25. udf_type_printer.h
  26. udf_type_size_check.h
  27. udf_types.cpp
  28. udf_types.h
  29. udf_ut_helpers.h
  30. udf_validate.cpp
  31. udf_validate.h
  32. udf_value.cpp
  33. udf_value.h
  34. udf_value_builder.cpp
  35. udf_value_builder.h
  36. udf_value_inl.h
  37. udf_version.cpp
  38. udf_version.h
  39. )
  40. PEERDIR(
  41. library/cpp/deprecated/enum_codegen
  42. library/cpp/resource
  43. yql/essentials/public/decimal
  44. yql/essentials/public/types
  45. library/cpp/deprecated/atomic
  46. )
  47. YQL_LAST_ABI_VERSION()
  48. PROVIDES(YqlUdfSdk)
  49. END()
  50. RECURSE(
  51. arrow
  52. service
  53. support
  54. tz
  55. )
  56. RECURSE_FOR_TESTS(
  57. ut
  58. )