diff options
author | shadchin <shadchin@yandex-team.ru> | 2022-06-02 14:31:54 +0300 |
---|---|---|
committer | shadchin <shadchin@yandex-team.ru> | 2022-06-02 14:31:54 +0300 |
commit | 814752b8b0b48c20f0843b1023bbc25f991d082e (patch) | |
tree | 87be56d354a36cb63d5380b8ff5afac1da0679e4 | |
parent | c81361f6627975b0f12338545dd1b6a146215173 (diff) | |
download | ydb-814752b8b0b48c20f0843b1023bbc25f991d082e.tar.gz |
Fix debug build for OPENSOURCE
ref:b8e29ea2b703f4611ddea9c0275740ff02f28dcf
5 files changed, 14 insertions, 0 deletions
diff --git a/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.darwin.txt index 58dd67a79a..008f21ae44 100644 --- a/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.darwin.txt @@ -21,6 +21,9 @@ target_link_libraries(ydb-core-tx-schemeshard-ut_ru_calculator PUBLIC cpp-testing-unittest_main core-tx-schemeshard cpp-testing-unittest + core-tx-tx_proxy + udf-service-stub + yql-sql-pg_dummy ) target_link_options(ydb-core-tx-schemeshard-ut_ru_calculator PRIVATE -Wl,-no_deduplicate diff --git a/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.linux.txt index 9b9fb675f2..a25d9b63ec 100644 --- a/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.linux.txt @@ -22,6 +22,9 @@ target_link_libraries(ydb-core-tx-schemeshard-ut_ru_calculator PUBLIC cpp-testing-unittest_main core-tx-schemeshard cpp-testing-unittest + core-tx-tx_proxy + udf-service-stub + yql-sql-pg_dummy ) target_link_options(ydb-core-tx-schemeshard-ut_ru_calculator PRIVATE -ldl diff --git a/ydb/library/yql/dq/actors/compute/ut/CMakeLists.darwin.txt b/ydb/library/yql/dq/actors/compute/ut/CMakeLists.darwin.txt index dc02f80664..060134b4cc 100644 --- a/ydb/library/yql/dq/actors/compute/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/actors/compute/ut/CMakeLists.darwin.txt @@ -18,6 +18,9 @@ target_link_libraries(ydb-library-yql-dq-actors-compute-ut PUBLIC cpp-testing-unittest_main dq-actors-compute cpp-testing-unittest + yql-dq-actors + udf-service-stub + yql-sql-pg_dummy ) target_link_options(ydb-library-yql-dq-actors-compute-ut PRIVATE -Wl,-no_deduplicate diff --git a/ydb/library/yql/dq/actors/compute/ut/CMakeLists.linux.txt b/ydb/library/yql/dq/actors/compute/ut/CMakeLists.linux.txt index 694ebe8cdf..43a761bf3f 100644 --- a/ydb/library/yql/dq/actors/compute/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/actors/compute/ut/CMakeLists.linux.txt @@ -19,6 +19,9 @@ target_link_libraries(ydb-library-yql-dq-actors-compute-ut PUBLIC cpp-testing-unittest_main dq-actors-compute cpp-testing-unittest + yql-dq-actors + udf-service-stub + yql-sql-pg_dummy ) target_link_options(ydb-library-yql-dq-actors-compute-ut PRIVATE -ldl diff --git a/ydb/library/yql/dq/type_ann/CMakeLists.txt b/ydb/library/yql/dq/type_ann/CMakeLists.txt index 66b394e5c7..cac69d010a 100644 --- a/ydb/library/yql/dq/type_ann/CMakeLists.txt +++ b/ydb/library/yql/dq/type_ann/CMakeLists.txt @@ -16,8 +16,10 @@ target_link_libraries(yql-dq-type_ann PUBLIC yutil library-yql-ast library-yql-core + yql-core-type_ann yql-dq-expr_nodes yql-dq-proto + providers-common-provider ) target_sources(yql-dq-type_ann PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/dq/type_ann/dq_type_ann.cpp |