diff options
| author | arcadia-devtools <[email protected]> | 2022-03-01 20:45:28 +0300 | 
|---|---|---|
| committer | arcadia-devtools <[email protected]> | 2022-03-01 20:45:28 +0300 | 
| commit | c71dfbc7a152b6f951bca559dcfa23af6d3952a3 (patch) | |
| tree | fe52870e806f35cce8853bd4a0e0b6ec3619bf10 /library/cpp/testing | |
| parent | 05995d9c65035b08087f9971beea7a009b2b1872 (diff) | |
intermediate changes
ref:1bd5d52142d3b1cd797d1dcc1dc7c82ea4a091be
Diffstat (limited to 'library/cpp/testing')
| -rw-r--r-- | library/cpp/testing/benchmark/CMakeLists.txt | 24 | ||||
| -rw-r--r-- | library/cpp/testing/benchmark/main/CMakeLists.txt | 25 | 
2 files changed, 49 insertions, 0 deletions
| diff --git a/library/cpp/testing/benchmark/CMakeLists.txt b/library/cpp/testing/benchmark/CMakeLists.txt new file mode 100644 index 00000000000..2df1ac1d915 --- /dev/null +++ b/library/cpp/testing/benchmark/CMakeLists.txt @@ -0,0 +1,24 @@ + +# This file was gererated 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_library(cpp-testing-benchmark) +target_link_libraries(cpp-testing-benchmark PUBLIC +  contrib-libs-cxxsupp +  yutil +  contrib-libs-re2 +  library-cpp-colorizer +  cpp-getopt-small +  library-cpp-json +  library-cpp-linear_regression +  cpp-threading-poor_man_openmp +) +target_sources(cpp-testing-benchmark PRIVATE +  ${CMAKE_SOURCE_DIR}/library/cpp/testing/benchmark/bench.cpp +  ${CMAKE_SOURCE_DIR}/library/cpp/testing/benchmark/dummy.cpp +) diff --git a/library/cpp/testing/benchmark/main/CMakeLists.txt b/library/cpp/testing/benchmark/main/CMakeLists.txt new file mode 100644 index 00000000000..3a0ffe92418 --- /dev/null +++ b/library/cpp/testing/benchmark/main/CMakeLists.txt @@ -0,0 +1,25 @@ + +# This file was gererated 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_library(testing-benchmark-main INTERFACE) +target_link_libraries(testing-benchmark-main INTERFACE +  contrib-libs-cxxsupp +  yutil +  cpp-testing-benchmark +) + +add_global_library_for(testing-benchmark-main.global testing-benchmark-main) +target_link_libraries(testing-benchmark-main.global PUBLIC +  contrib-libs-cxxsupp +  yutil +  cpp-testing-benchmark +) +target_sources(testing-benchmark-main.global PRIVATE +  ${CMAKE_SOURCE_DIR}/library/cpp/testing/benchmark/main/main.cpp +) | 
