aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/jsonpath/parser/ya.make
blob: 8280ec9d12b91dfd98b1cebe4c9917eefb362516 (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
31
32
33
34
35
36
37
38
39
LIBRARY()

IF (ARCH_X86_64)
    CFLAGS(
        -DYDB_REWRAPPER_LIB_ID=kHyperscan
    )
ELSE()
    CFLAGS(
        -DYDB_REWRAPPER_LIB_ID=kRe2
    )

ENDIF()

PEERDIR(
    contrib/libs/double-conversion
    library/cpp/json
    yql/essentials/minikql/jsonpath/rewrapper
    yql/essentials/minikql/jsonpath/rewrapper/re2
    yql/essentials/public/issue
    yql/essentials/ast
    yql/essentials/utils
    yql/essentials/core/issue/protos
    yql/essentials/parser/proto_ast/antlr3
    yql/essentials/parser/proto_ast/gen/jsonpath
)

SRCS(
    ast_builder.cpp
    ast_nodes.cpp
    binary.cpp
    parser.cpp
    parse_double.cpp
    type_check.cpp
)

GENERATE_ENUM_SERIALIZATION(ast_nodes.h)

END()