diff options
author | svidyuk <svidyuk@yandex-team.com> | 2023-05-29 10:25:39 +0300 |
---|---|---|
committer | svidyuk <svidyuk@yandex-team.com> | 2023-05-29 10:25:39 +0300 |
commit | 48333f6d85dd05e428bbea51030c458cb29e302a (patch) | |
tree | 3097b83ac3981e378a2910bcc2a12c091fe38e1b | |
parent | bc30b7302696803f29eb5f80bb662a259791a0e8 (diff) | |
download | ydb-48333f6d85dd05e428bbea51030c458cb29e302a.tar.gz |
Workaround for exported cmake target names
4 files changed, 27 insertions, 27 deletions
diff --git a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.darwin-x86_64.txt b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.darwin-x86_64.txt index 395bf9e931..c75b5b70db 100644 --- a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.darwin-x86_64.txt +++ b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.darwin-x86_64.txt @@ -7,11 +7,11 @@ -add_executable(benchmark) -target_compile_options(benchmark PRIVATE +add_executable(jsonpath-benchmark) +target_compile_options(jsonpath-benchmark PRIVATE -DUSE_CURRENT_UDF_ABI_VERSION ) -target_link_libraries(benchmark PUBLIC +target_link_libraries(jsonpath-benchmark PUBLIC contrib-libs-cxxsupp yutil library-cpp-cpuid_check @@ -26,15 +26,15 @@ target_link_libraries(benchmark PUBLIC udf-service-exception_policy yql-sql-pg_dummy ) -target_link_options(benchmark PRIVATE +target_link_options(jsonpath-benchmark PRIVATE -Wl,-platform_version,macos,11.0,11.0 -fPIC -fPIC ) -target_sources(benchmark PRIVATE +target_sources(jsonpath-benchmark PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/minikql/jsonpath/benchmark/main.cpp ) -target_allocator(benchmark +target_allocator(jsonpath-benchmark system_allocator ) -vcs_info(benchmark) +vcs_info(jsonpath-benchmark) diff --git a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.linux-aarch64.txt index 1ce06d09e2..eca16433d8 100644 --- a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.linux-aarch64.txt @@ -7,11 +7,11 @@ -add_executable(benchmark) -target_compile_options(benchmark PRIVATE +add_executable(jsonpath-benchmark) +target_compile_options(jsonpath-benchmark PRIVATE -DUSE_CURRENT_UDF_ABI_VERSION ) -target_link_libraries(benchmark PUBLIC +target_link_libraries(jsonpath-benchmark PUBLIC contrib-libs-linux-headers contrib-libs-cxxsupp yutil @@ -26,7 +26,7 @@ target_link_libraries(benchmark PUBLIC udf-service-exception_policy yql-sql-pg_dummy ) -target_link_options(benchmark PRIVATE +target_link_options(jsonpath-benchmark PRIVATE -ldl -lrt -Wl,--no-as-needed @@ -36,10 +36,10 @@ target_link_options(benchmark PRIVATE -lrt -ldl ) -target_sources(benchmark PRIVATE +target_sources(jsonpath-benchmark PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/minikql/jsonpath/benchmark/main.cpp ) -target_allocator(benchmark +target_allocator(jsonpath-benchmark cpp-malloc-jemalloc ) -vcs_info(benchmark) +vcs_info(jsonpath-benchmark) diff --git a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.linux-x86_64.txt b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.linux-x86_64.txt index ef5b508643..a038a8b8fa 100644 --- a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.linux-x86_64.txt +++ b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.linux-x86_64.txt @@ -7,11 +7,11 @@ -add_executable(benchmark) -target_compile_options(benchmark PRIVATE +add_executable(jsonpath-benchmark) +target_compile_options(jsonpath-benchmark PRIVATE -DUSE_CURRENT_UDF_ABI_VERSION ) -target_link_libraries(benchmark PUBLIC +target_link_libraries(jsonpath-benchmark PUBLIC contrib-libs-linux-headers contrib-libs-cxxsupp yutil @@ -27,7 +27,7 @@ target_link_libraries(benchmark PUBLIC udf-service-exception_policy yql-sql-pg_dummy ) -target_link_options(benchmark PRIVATE +target_link_options(jsonpath-benchmark PRIVATE -ldl -lrt -Wl,--no-as-needed @@ -37,11 +37,11 @@ target_link_options(benchmark PRIVATE -lrt -ldl ) -target_sources(benchmark PRIVATE +target_sources(jsonpath-benchmark PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/minikql/jsonpath/benchmark/main.cpp ) -target_allocator(benchmark +target_allocator(jsonpath-benchmark cpp-malloc-tcmalloc libs-tcmalloc-no_percpu_cache ) -vcs_info(benchmark) +vcs_info(jsonpath-benchmark) diff --git a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.windows-x86_64.txt b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.windows-x86_64.txt index cf486b2a2e..42b31ff296 100644 --- a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.windows-x86_64.txt +++ b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.windows-x86_64.txt @@ -7,11 +7,11 @@ -add_executable(benchmark) -target_compile_options(benchmark PRIVATE +add_executable(jsonpath-benchmark) +target_compile_options(jsonpath-benchmark PRIVATE -DUSE_CURRENT_UDF_ABI_VERSION ) -target_link_libraries(benchmark PUBLIC +target_link_libraries(jsonpath-benchmark PUBLIC contrib-libs-cxxsupp yutil library-cpp-cpuid_check @@ -26,10 +26,10 @@ target_link_libraries(benchmark PUBLIC udf-service-exception_policy yql-sql-pg_dummy ) -target_sources(benchmark PRIVATE +target_sources(jsonpath-benchmark PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/minikql/jsonpath/benchmark/main.cpp ) -target_allocator(benchmark +target_allocator(jsonpath-benchmark system_allocator ) -vcs_info(benchmark) +vcs_info(jsonpath-benchmark) |