aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/sql/v0/ya.make
blob: 381f3fa77b1fb6275a29b11c27da72eaecf8be0c (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
40
41
42
LIBRARY()

PEERDIR(
    library/cpp/charset/lite
    library/cpp/enumbitset
    yql/essentials/minikql
    yql/essentials/public/udf
    yql/essentials/sql/settings
    yql/essentials/core/sql_types
    yql/essentials/core/issue
    yql/essentials/core/issue/protos
    yql/essentials/parser/proto_ast/collect_issues
    yql/essentials/parser/proto_ast/gen/v0
    yql/essentials/sql/v0/lexer
)

SRCS(
    aggregation.cpp
    builtin.cpp
    context.cpp
    join.cpp
    insert.cpp
    list_builtin.cpp
    node.cpp
    select.cpp
    sql.cpp
    query.cpp
)

YQL_LAST_ABI_VERSION()

GENERATE_ENUM_SERIALIZATION(node.h)

END()

RECURSE(
    lexer
)

RECURSE_FOR_TESTS(
    ut
)