ya.make 479 B

123456789101112131415161718192021222324252627282930
  1. # NO_BUILD_IF does not like logical expressions by now
  2. # see DEVTOOLSSUPPORT-44378
  3. IF (NOT OS_LINUX OR NOT CLANG)
  4. SET(DISABLE_HYPERSCAN_BUILD)
  5. ENDIF()
  6. NO_BUILD_IF(DISABLE_HYPERSCAN_BUILD)
  7. YQL_UDF_CONTRIB(hyperscan_udf)
  8. YQL_ABI_VERSION(
  9. 2
  10. 27
  11. 0
  12. )
  13. SRCS(
  14. hyperscan_udf.cpp
  15. )
  16. PEERDIR(
  17. library/cpp/regex/hyperscan
  18. library/cpp/regex/pcre
  19. )
  20. END()
  21. RECURSE_FOR_TESTS(
  22. test
  23. )