blob: e0483c071204cd4f67744d19b0317e369e7b5bf4 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
PROGRAM(yqlrun)
ALLOCATOR(J)
SRCS(
yqlrun.cpp
)
IF (OS_LINUX)
# prevent external python extensions to lookup protobuf symbols (and maybe
# other common stuff) in main binary
EXPORTS_SCRIPT(${ARCADIA_ROOT}/yql/essentials/tools/exports.symlist)
ENDIF()
PEERDIR(
yql/tools/yqlrun/http
yql/tools/yqlrun/lib
yt/yql/providers/yt/comp_nodes/llvm14
yt/yql/providers/yt/codec/codegen
yql/essentials/providers/common/provider
yql/essentials/providers/common/udf_resolve
yql/essentials/minikql/invoke_builtins
yql/essentials/minikql/invoke_builtins/llvm14
yql/essentials/minikql/comp_nodes/llvm14
yql/essentials/parser/pg_wrapper
yql/essentials/parser/pg_catalog
yql/essentials/core/services/mounts
yql/essentials/core/facade
yql/essentials/core/pg_ext
yql/essentials/core/file_storage
yql/essentials/core/file_storage/proto
yql/essentials/core
yql/essentials/public/udf/service/exception_policy
yql/essentials/utils/backtrace
yql/essentials/utils/log
yql/essentials/minikql
yql/essentials/protos
yql/essentials/ast
yql/essentials/sql/pg
library/cpp/getopt
library/cpp/logger
contrib/libs/protobuf
)
YQL_LAST_ABI_VERSION()
FILES(
ui.sh
uig.sh
)
END()
|