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