blob: 33cba76e33e661282c68d12e187b35e06a38f98a (
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
|
PROGRAM()
ALLOCATOR(J)
SRCS(
ytrun.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(
yt/yql/tools/ytrun/lib
yt/yql/providers/yt/codec/codegen
yt/yql/providers/yt/comp_nodes/llvm16
yql/essentials/minikql/invoke_builtins/llvm16
yql/essentials/minikql/comp_nodes/llvm16
yql/essentials/parser/pg_wrapper
yql/essentials/public/udf/service/terminate_policy
yql/essentials/sql/pg
)
YQL_LAST_ABI_VERSION()
RESOURCE(
yql/essentials/cfg/tests/gateways.conf gateways.conf
yql/essentials/cfg/tests/fs.conf fs.conf
yql/essentials/cfg/tests/fs_arc.conf fs_arc.conf
yql/essentials/cfg/tests/fs_http.conf fs_http.conf
)
END()
|