Skip to content

Commit ebf638f

Browse files
mvgorbunovSammyVimes
authored andcommitted
Update CMakeLists
1 parent 40926e4 commit ebf638f

5 files changed

+60
-0
lines changed

ydb/core/kqp/executer_actor/CMakeLists.darwin-arm64.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77

88

99
add_subdirectory(ut)
10+
get_built_tool_path(
11+
TOOL_enum_parser_bin
12+
TOOL_enum_parser_dependency
13+
tools/enum_parser/enum_parser
14+
enum_parser
15+
)
1016

1117
add_library(core-kqp-executer_actor)
1218
target_compile_options(core-kqp-executer_actor PRIVATE
@@ -36,6 +42,7 @@ target_link_libraries(core-kqp-executer_actor PUBLIC
3642
yql-dq-runtime
3743
yql-dq-tasks
3844
providers-common-http_gateway
45+
tools-enum_parser-enum_serialization_runtime
3946
)
4047
target_sources(core-kqp-executer_actor PRIVATE
4148
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_data_executer.cpp
@@ -54,3 +61,8 @@ target_sources(core-kqp-executer_actor PRIVATE
5461
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_tasks_graph.cpp
5562
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_tasks_validate.cpp
5663
)
64+
generate_enum_serilization(core-kqp-executer_actor
65+
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_executer.h
66+
INCLUDE_HEADERS
67+
ydb/core/kqp/executer_actor/kqp_executer.h
68+
)

ydb/core/kqp/executer_actor/CMakeLists.darwin-x86_64.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77

88

99
add_subdirectory(ut)
10+
get_built_tool_path(
11+
TOOL_enum_parser_bin
12+
TOOL_enum_parser_dependency
13+
tools/enum_parser/enum_parser
14+
enum_parser
15+
)
1016

1117
add_library(core-kqp-executer_actor)
1218
target_compile_options(core-kqp-executer_actor PRIVATE
@@ -36,6 +42,7 @@ target_link_libraries(core-kqp-executer_actor PUBLIC
3642
yql-dq-runtime
3743
yql-dq-tasks
3844
providers-common-http_gateway
45+
tools-enum_parser-enum_serialization_runtime
3946
)
4047
target_sources(core-kqp-executer_actor PRIVATE
4148
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_data_executer.cpp
@@ -54,3 +61,8 @@ target_sources(core-kqp-executer_actor PRIVATE
5461
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_tasks_graph.cpp
5562
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_tasks_validate.cpp
5663
)
64+
generate_enum_serilization(core-kqp-executer_actor
65+
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_executer.h
66+
INCLUDE_HEADERS
67+
ydb/core/kqp/executer_actor/kqp_executer.h
68+
)

ydb/core/kqp/executer_actor/CMakeLists.linux-aarch64.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77

88

99
add_subdirectory(ut)
10+
get_built_tool_path(
11+
TOOL_enum_parser_bin
12+
TOOL_enum_parser_dependency
13+
tools/enum_parser/enum_parser
14+
enum_parser
15+
)
1016

1117
add_library(core-kqp-executer_actor)
1218
target_compile_options(core-kqp-executer_actor PRIVATE
@@ -37,6 +43,7 @@ target_link_libraries(core-kqp-executer_actor PUBLIC
3743
yql-dq-runtime
3844
yql-dq-tasks
3945
providers-common-http_gateway
46+
tools-enum_parser-enum_serialization_runtime
4047
)
4148
target_sources(core-kqp-executer_actor PRIVATE
4249
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_data_executer.cpp
@@ -55,3 +62,8 @@ target_sources(core-kqp-executer_actor PRIVATE
5562
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_tasks_graph.cpp
5663
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_tasks_validate.cpp
5764
)
65+
generate_enum_serilization(core-kqp-executer_actor
66+
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_executer.h
67+
INCLUDE_HEADERS
68+
ydb/core/kqp/executer_actor/kqp_executer.h
69+
)

ydb/core/kqp/executer_actor/CMakeLists.linux-x86_64.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77

88

99
add_subdirectory(ut)
10+
get_built_tool_path(
11+
TOOL_enum_parser_bin
12+
TOOL_enum_parser_dependency
13+
tools/enum_parser/enum_parser
14+
enum_parser
15+
)
1016

1117
add_library(core-kqp-executer_actor)
1218
target_compile_options(core-kqp-executer_actor PRIVATE
@@ -37,6 +43,7 @@ target_link_libraries(core-kqp-executer_actor PUBLIC
3743
yql-dq-runtime
3844
yql-dq-tasks
3945
providers-common-http_gateway
46+
tools-enum_parser-enum_serialization_runtime
4047
)
4148
target_sources(core-kqp-executer_actor PRIVATE
4249
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_data_executer.cpp
@@ -55,3 +62,8 @@ target_sources(core-kqp-executer_actor PRIVATE
5562
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_tasks_graph.cpp
5663
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_tasks_validate.cpp
5764
)
65+
generate_enum_serilization(core-kqp-executer_actor
66+
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_executer.h
67+
INCLUDE_HEADERS
68+
ydb/core/kqp/executer_actor/kqp_executer.h
69+
)

ydb/core/kqp/executer_actor/CMakeLists.windows-x86_64.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77

88

99
add_subdirectory(ut)
10+
get_built_tool_path(
11+
TOOL_enum_parser_bin
12+
TOOL_enum_parser_dependency
13+
tools/enum_parser/enum_parser
14+
enum_parser
15+
)
1016

1117
add_library(core-kqp-executer_actor)
1218
target_compile_options(core-kqp-executer_actor PRIVATE
@@ -36,6 +42,7 @@ target_link_libraries(core-kqp-executer_actor PUBLIC
3642
yql-dq-runtime
3743
yql-dq-tasks
3844
providers-common-http_gateway
45+
tools-enum_parser-enum_serialization_runtime
3946
)
4047
target_sources(core-kqp-executer_actor PRIVATE
4148
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_data_executer.cpp
@@ -54,3 +61,8 @@ target_sources(core-kqp-executer_actor PRIVATE
5461
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_tasks_graph.cpp
5562
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_tasks_validate.cpp
5663
)
64+
generate_enum_serilization(core-kqp-executer_actor
65+
${CMAKE_SOURCE_DIR}/ydb/core/kqp/executer_actor/kqp_executer.h
66+
INCLUDE_HEADERS
67+
ydb/core/kqp/executer_actor/kqp_executer.h
68+
)

0 commit comments

Comments
 (0)