diff options
author | svidyuk <svidyuk@yandex-team.com> | 2023-08-30 12:12:06 +0300 |
---|---|---|
committer | svidyuk <svidyuk@yandex-team.com> | 2023-08-30 12:42:20 +0300 |
commit | cb3da9494c53283f0230ad37e4e8d0ea61b7d8fc (patch) | |
tree | 98d10bf793b8e006a638ce08ed73a53b980b3828 /library/cpp/actors/cppcoro | |
parent | d7212c5b8f972c2ad657311361a3bd1b136f2c5f (diff) | |
download | ydb-cb3da9494c53283f0230ad37e4e8d0ea61b7d8fc.tar.gz |
All .ll files support in LLVM_BC
Diffstat (limited to 'library/cpp/actors/cppcoro')
15 files changed, 0 insertions, 551 deletions
diff --git a/library/cpp/actors/cppcoro/CMakeLists.darwin-x86_64.txt b/library/cpp/actors/cppcoro/CMakeLists.darwin-x86_64.txt deleted file mode 100644 index 9795130141..0000000000 --- a/library/cpp/actors/cppcoro/CMakeLists.darwin-x86_64.txt +++ /dev/null @@ -1,24 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - -add_subdirectory(corobenchmark) -add_subdirectory(ut) - -add_library(cpp-actors-cppcoro) -target_link_libraries(cpp-actors-cppcoro PUBLIC - contrib-libs-cxxsupp - yutil - cpp-actors-core -) -target_sources(cpp-actors-cppcoro PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/await_callback.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_actor.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_group.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_result.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task.cpp -) diff --git a/library/cpp/actors/cppcoro/CMakeLists.linux-aarch64.txt b/library/cpp/actors/cppcoro/CMakeLists.linux-aarch64.txt deleted file mode 100644 index 514824dad2..0000000000 --- a/library/cpp/actors/cppcoro/CMakeLists.linux-aarch64.txt +++ /dev/null @@ -1,25 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - -add_subdirectory(corobenchmark) -add_subdirectory(ut) - -add_library(cpp-actors-cppcoro) -target_link_libraries(cpp-actors-cppcoro PUBLIC - contrib-libs-linux-headers - contrib-libs-cxxsupp - yutil - cpp-actors-core -) -target_sources(cpp-actors-cppcoro PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/await_callback.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_actor.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_group.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_result.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task.cpp -) diff --git a/library/cpp/actors/cppcoro/CMakeLists.linux-x86_64.txt b/library/cpp/actors/cppcoro/CMakeLists.linux-x86_64.txt deleted file mode 100644 index 514824dad2..0000000000 --- a/library/cpp/actors/cppcoro/CMakeLists.linux-x86_64.txt +++ /dev/null @@ -1,25 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - -add_subdirectory(corobenchmark) -add_subdirectory(ut) - -add_library(cpp-actors-cppcoro) -target_link_libraries(cpp-actors-cppcoro PUBLIC - contrib-libs-linux-headers - contrib-libs-cxxsupp - yutil - cpp-actors-core -) -target_sources(cpp-actors-cppcoro PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/await_callback.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_actor.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_group.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_result.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task.cpp -) diff --git a/library/cpp/actors/cppcoro/CMakeLists.txt b/library/cpp/actors/cppcoro/CMakeLists.txt deleted file mode 100644 index f8b31df0c1..0000000000 --- a/library/cpp/actors/cppcoro/CMakeLists.txt +++ /dev/null @@ -1,17 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - -if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA) - include(CMakeLists.linux-aarch64.txt) -elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") - include(CMakeLists.darwin-x86_64.txt) -elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA) - include(CMakeLists.windows-x86_64.txt) -elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA) - include(CMakeLists.linux-x86_64.txt) -endif() diff --git a/library/cpp/actors/cppcoro/CMakeLists.windows-x86_64.txt b/library/cpp/actors/cppcoro/CMakeLists.windows-x86_64.txt deleted file mode 100644 index 9795130141..0000000000 --- a/library/cpp/actors/cppcoro/CMakeLists.windows-x86_64.txt +++ /dev/null @@ -1,24 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - -add_subdirectory(corobenchmark) -add_subdirectory(ut) - -add_library(cpp-actors-cppcoro) -target_link_libraries(cpp-actors-cppcoro PUBLIC - contrib-libs-cxxsupp - yutil - cpp-actors-core -) -target_sources(cpp-actors-cppcoro PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/await_callback.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_actor.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_group.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_result.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task.cpp -) diff --git a/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.darwin-x86_64.txt b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.darwin-x86_64.txt deleted file mode 100644 index 1b98f8aac0..0000000000 --- a/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.darwin-x86_64.txt +++ /dev/null @@ -1,31 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - - -add_executable(corobenchmark) -target_link_libraries(corobenchmark PUBLIC - contrib-libs-cxxsupp - yutil - library-cpp-cpuid_check - testing-benchmark-main - cpp-actors-cppcoro -) -target_link_options(corobenchmark PRIVATE - -Wl,-platform_version,macos,11.0,11.0 - -fPIC - -fPIC - -framework - CoreFoundation -) -target_sources(corobenchmark PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/corobenchmark/main.cpp -) -target_allocator(corobenchmark - system_allocator -) -vcs_info(corobenchmark) diff --git a/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.linux-aarch64.txt b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.linux-aarch64.txt deleted file mode 100644 index f12dfdad8d..0000000000 --- a/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.linux-aarch64.txt +++ /dev/null @@ -1,34 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - - -add_executable(corobenchmark) -target_link_libraries(corobenchmark PUBLIC - contrib-libs-linux-headers - contrib-libs-cxxsupp - yutil - testing-benchmark-main - cpp-actors-cppcoro -) -target_link_options(corobenchmark PRIVATE - -ldl - -lrt - -Wl,--no-as-needed - -fPIC - -fPIC - -lpthread - -lrt - -ldl -) -target_sources(corobenchmark PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/corobenchmark/main.cpp -) -target_allocator(corobenchmark - cpp-malloc-jemalloc -) -vcs_info(corobenchmark) diff --git a/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.linux-x86_64.txt b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.linux-x86_64.txt deleted file mode 100644 index e5b37926d1..0000000000 --- a/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.linux-x86_64.txt +++ /dev/null @@ -1,36 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - - -add_executable(corobenchmark) -target_link_libraries(corobenchmark PUBLIC - contrib-libs-linux-headers - contrib-libs-cxxsupp - yutil - library-cpp-cpuid_check - testing-benchmark-main - cpp-actors-cppcoro -) -target_link_options(corobenchmark PRIVATE - -ldl - -lrt - -Wl,--no-as-needed - -fPIC - -fPIC - -lpthread - -lrt - -ldl -) -target_sources(corobenchmark PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/corobenchmark/main.cpp -) -target_allocator(corobenchmark - cpp-malloc-tcmalloc - libs-tcmalloc-no_percpu_cache -) -vcs_info(corobenchmark) diff --git a/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.txt b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.txt deleted file mode 100644 index f8b31df0c1..0000000000 --- a/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.txt +++ /dev/null @@ -1,17 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - -if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA) - include(CMakeLists.linux-aarch64.txt) -elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") - include(CMakeLists.darwin-x86_64.txt) -elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA) - include(CMakeLists.windows-x86_64.txt) -elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA) - include(CMakeLists.linux-x86_64.txt) -endif() diff --git a/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.windows-x86_64.txt b/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.windows-x86_64.txt deleted file mode 100644 index c9a8359b4b..0000000000 --- a/library/cpp/actors/cppcoro/corobenchmark/CMakeLists.windows-x86_64.txt +++ /dev/null @@ -1,24 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - - -add_executable(corobenchmark) -target_link_libraries(corobenchmark PUBLIC - contrib-libs-cxxsupp - yutil - library-cpp-cpuid_check - testing-benchmark-main - cpp-actors-cppcoro -) -target_sources(corobenchmark PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/corobenchmark/main.cpp -) -target_allocator(corobenchmark - system_allocator -) -vcs_info(corobenchmark) diff --git a/library/cpp/actors/cppcoro/ut/CMakeLists.darwin-x86_64.txt b/library/cpp/actors/cppcoro/ut/CMakeLists.darwin-x86_64.txt deleted file mode 100644 index 7cebff01de..0000000000 --- a/library/cpp/actors/cppcoro/ut/CMakeLists.darwin-x86_64.txt +++ /dev/null @@ -1,69 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - - -add_executable(library-cpp-actors-cppcoro-ut) -target_include_directories(library-cpp-actors-cppcoro-ut PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro -) -target_link_libraries(library-cpp-actors-cppcoro-ut PUBLIC - contrib-libs-cxxsupp - yutil - library-cpp-cpuid_check - cpp-testing-unittest_main - cpp-actors-cppcoro - cpp-actors-testlib -) -target_link_options(library-cpp-actors-cppcoro-ut PRIVATE - -Wl,-platform_version,macos,11.0,11.0 - -fPIC - -fPIC - -framework - CoreFoundation -) -target_sources(library-cpp-actors-cppcoro-ut PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_ut.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_actor_ut.cpp -) -set_property( - TARGET - library-cpp-actors-cppcoro-ut - PROPERTY - SPLIT_FACTOR - 1 -) -add_yunittest( - NAME - library-cpp-actors-cppcoro-ut - TEST_TARGET - library-cpp-actors-cppcoro-ut - TEST_ARG - --print-before-suite - --print-before-test - --fork-tests - --print-times - --show-fails -) -set_yunittest_property( - TEST - library-cpp-actors-cppcoro-ut - PROPERTY - LABELS - SMALL -) -set_yunittest_property( - TEST - library-cpp-actors-cppcoro-ut - PROPERTY - PROCESSORS - 1 -) -target_allocator(library-cpp-actors-cppcoro-ut - system_allocator -) -vcs_info(library-cpp-actors-cppcoro-ut) diff --git a/library/cpp/actors/cppcoro/ut/CMakeLists.linux-aarch64.txt b/library/cpp/actors/cppcoro/ut/CMakeLists.linux-aarch64.txt deleted file mode 100644 index 4a11af3456..0000000000 --- a/library/cpp/actors/cppcoro/ut/CMakeLists.linux-aarch64.txt +++ /dev/null @@ -1,72 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - - -add_executable(library-cpp-actors-cppcoro-ut) -target_include_directories(library-cpp-actors-cppcoro-ut PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro -) -target_link_libraries(library-cpp-actors-cppcoro-ut PUBLIC - contrib-libs-linux-headers - contrib-libs-cxxsupp - yutil - cpp-testing-unittest_main - cpp-actors-cppcoro - cpp-actors-testlib -) -target_link_options(library-cpp-actors-cppcoro-ut PRIVATE - -ldl - -lrt - -Wl,--no-as-needed - -fPIC - -fPIC - -lpthread - -lrt - -ldl -) -target_sources(library-cpp-actors-cppcoro-ut PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_ut.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_actor_ut.cpp -) -set_property( - TARGET - library-cpp-actors-cppcoro-ut - PROPERTY - SPLIT_FACTOR - 1 -) -add_yunittest( - NAME - library-cpp-actors-cppcoro-ut - TEST_TARGET - library-cpp-actors-cppcoro-ut - TEST_ARG - --print-before-suite - --print-before-test - --fork-tests - --print-times - --show-fails -) -set_yunittest_property( - TEST - library-cpp-actors-cppcoro-ut - PROPERTY - LABELS - SMALL -) -set_yunittest_property( - TEST - library-cpp-actors-cppcoro-ut - PROPERTY - PROCESSORS - 1 -) -target_allocator(library-cpp-actors-cppcoro-ut - cpp-malloc-jemalloc -) -vcs_info(library-cpp-actors-cppcoro-ut) diff --git a/library/cpp/actors/cppcoro/ut/CMakeLists.linux-x86_64.txt b/library/cpp/actors/cppcoro/ut/CMakeLists.linux-x86_64.txt deleted file mode 100644 index 2e2412f989..0000000000 --- a/library/cpp/actors/cppcoro/ut/CMakeLists.linux-x86_64.txt +++ /dev/null @@ -1,74 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - - -add_executable(library-cpp-actors-cppcoro-ut) -target_include_directories(library-cpp-actors-cppcoro-ut PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro -) -target_link_libraries(library-cpp-actors-cppcoro-ut PUBLIC - contrib-libs-linux-headers - contrib-libs-cxxsupp - yutil - library-cpp-cpuid_check - cpp-testing-unittest_main - cpp-actors-cppcoro - cpp-actors-testlib -) -target_link_options(library-cpp-actors-cppcoro-ut PRIVATE - -ldl - -lrt - -Wl,--no-as-needed - -fPIC - -fPIC - -lpthread - -lrt - -ldl -) -target_sources(library-cpp-actors-cppcoro-ut PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_ut.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_actor_ut.cpp -) -set_property( - TARGET - library-cpp-actors-cppcoro-ut - PROPERTY - SPLIT_FACTOR - 1 -) -add_yunittest( - NAME - library-cpp-actors-cppcoro-ut - TEST_TARGET - library-cpp-actors-cppcoro-ut - TEST_ARG - --print-before-suite - --print-before-test - --fork-tests - --print-times - --show-fails -) -set_yunittest_property( - TEST - library-cpp-actors-cppcoro-ut - PROPERTY - LABELS - SMALL -) -set_yunittest_property( - TEST - library-cpp-actors-cppcoro-ut - PROPERTY - PROCESSORS - 1 -) -target_allocator(library-cpp-actors-cppcoro-ut - cpp-malloc-tcmalloc - libs-tcmalloc-no_percpu_cache -) -vcs_info(library-cpp-actors-cppcoro-ut) diff --git a/library/cpp/actors/cppcoro/ut/CMakeLists.txt b/library/cpp/actors/cppcoro/ut/CMakeLists.txt deleted file mode 100644 index f8b31df0c1..0000000000 --- a/library/cpp/actors/cppcoro/ut/CMakeLists.txt +++ /dev/null @@ -1,17 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - -if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA) - include(CMakeLists.linux-aarch64.txt) -elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") - include(CMakeLists.darwin-x86_64.txt) -elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA) - include(CMakeLists.windows-x86_64.txt) -elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA) - include(CMakeLists.linux-x86_64.txt) -endif() diff --git a/library/cpp/actors/cppcoro/ut/CMakeLists.windows-x86_64.txt b/library/cpp/actors/cppcoro/ut/CMakeLists.windows-x86_64.txt deleted file mode 100644 index e3b8b019c8..0000000000 --- a/library/cpp/actors/cppcoro/ut/CMakeLists.windows-x86_64.txt +++ /dev/null @@ -1,62 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - - -add_executable(library-cpp-actors-cppcoro-ut) -target_include_directories(library-cpp-actors-cppcoro-ut PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro -) -target_link_libraries(library-cpp-actors-cppcoro-ut PUBLIC - contrib-libs-cxxsupp - yutil - library-cpp-cpuid_check - cpp-testing-unittest_main - cpp-actors-cppcoro - cpp-actors-testlib -) -target_sources(library-cpp-actors-cppcoro-ut PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_ut.cpp - ${CMAKE_SOURCE_DIR}/library/cpp/actors/cppcoro/task_actor_ut.cpp -) -set_property( - TARGET - library-cpp-actors-cppcoro-ut - PROPERTY - SPLIT_FACTOR - 1 -) -add_yunittest( - NAME - library-cpp-actors-cppcoro-ut - TEST_TARGET - library-cpp-actors-cppcoro-ut - TEST_ARG - --print-before-suite - --print-before-test - --fork-tests - --print-times - --show-fails -) -set_yunittest_property( - TEST - library-cpp-actors-cppcoro-ut - PROPERTY - LABELS - SMALL -) -set_yunittest_property( - TEST - library-cpp-actors-cppcoro-ut - PROPERTY - PROCESSORS - 1 -) -target_allocator(library-cpp-actors-cppcoro-ut - system_allocator -) -vcs_info(library-cpp-actors-cppcoro-ut) |