diff options
author | robot-ya-builder <robot-ya-builder@yandex-team.com> | 2023-01-17 13:48:00 +0300 |
---|---|---|
committer | robot-ya-builder <robot-ya-builder@yandex-team.com> | 2023-01-17 13:48:00 +0300 |
commit | 58a117b001b63f06104246f6a89c60128596b391 (patch) | |
tree | 7c545e74e01edfc7a6b67a04b4ef5b0eee77e08d | |
parent | 51674dac4bb91435ef6009fa104dfb835e158780 (diff) | |
download | ydb-58a117b001b63f06104246f6a89c60128596b391.tar.gz |
External build system generator release 8
Update tools: yexport
6116 files changed, 6221 insertions, 6114 deletions
diff --git a/CMakeLists.darwin.txt b/CMakeLists.darwin.txt index cd6d87e652..fa276972cd 100644 --- a/CMakeLists.darwin.txt +++ b/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/CMakeLists.linux-aarch64.txt b/CMakeLists.linux-aarch64.txt index cd6d87e652..fa276972cd 100644 --- a/CMakeLists.linux-aarch64.txt +++ b/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/CMakeLists.linux.txt b/CMakeLists.linux.txt index cd6d87e652..fa276972cd 100644 --- a/CMakeLists.linux.txt +++ b/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/CMakeLists.txt b/CMakeLists.txt index c7c7d91ae2..7ecf95a741 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/build/scripts/split_unittest.py b/build/scripts/split_unittest.py new file mode 100644 index 0000000000..613bf507ad --- /dev/null +++ b/build/scripts/split_unittest.py @@ -0,0 +1,62 @@ +import argparse +import tempfile +import shlex +import subprocess + + +def parse_args(): + parser = argparse.ArgumentParser() + parser.add_argument("--split-factor", type=int, default=0) + parser.add_argument("--shard", type=int, default=0) + parser.add_argument("command", nargs=argparse.REMAINDER) + return parser.parse_args() + + +def list_tests(binary): + with tempfile.NamedTemporaryFile() as tmpfile: + cmd = [binary, "--list-verbose", "--list-path", tmpfile.name] + subprocess.check_call(cmd) + + with open(tmpfile.name) as afile: + lines = afile.read().strip().split("\n") + lines = [x.strip() for x in lines] + return [x for x in lines if x] + + +def get_shard_tests(args): + test_names = list_tests(args.command[0]) + test_names = sorted(test_names) + + chunk_size = len(test_names) // args.split_factor + not_used = len(test_names) % args.split_factor + shift = chunk_size + (args.shard < not_used) + start = chunk_size * args.shard + min(args.shard, not_used) + end = start + shift + return [] if end > len(test_names) else test_names[start:end] + + +def get_shard_cmd_args(args): + return ["+{}".format(x) for x in get_shard_tests(args)] + + +def main(): + args = parse_args() + + if args.split_factor: + shard_cmd = get_shard_cmd_args(args) + if shard_cmd: + cmd = args.command + shard_cmd + else: + print("No tests for {} shard".format(args.shard)) + return 0 + else: + cmd = args.command + + rc = subprocess.call(cmd) + if rc: + print("Some tests failed. To reproduce run: {}".format(shlex.join(cmd))) + return rc + + +if __name__ == "__main__": + exit(main()) diff --git a/certs/CMakeLists.darwin.txt b/certs/CMakeLists.darwin.txt index 299a37ddfe..b5a2ab96e5 100644 --- a/certs/CMakeLists.darwin.txt +++ b/certs/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/certs/CMakeLists.linux-aarch64.txt b/certs/CMakeLists.linux-aarch64.txt index eeb7fdf63e..0ec74bc5fc 100644 --- a/certs/CMakeLists.linux-aarch64.txt +++ b/certs/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/certs/CMakeLists.linux.txt b/certs/CMakeLists.linux.txt index eeb7fdf63e..0ec74bc5fc 100644 --- a/certs/CMakeLists.linux.txt +++ b/certs/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/certs/CMakeLists.txt b/certs/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/certs/CMakeLists.txt +++ b/certs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/cmake/common.cmake b/cmake/common.cmake index aedd887a20..3b31911776 100644 --- a/cmake/common.cmake +++ b/cmake/common.cmake @@ -210,3 +210,48 @@ function(use_export_script Target ExportFile) LINK_DEPENDS ${OutPath} ) endfunction() + +function(add_yunittest) + set(opts "") + set(oneval_args NAME TEST_TARGET) + set(multival_args TEST_ARG) + cmake_parse_arguments(YUNITTEST_ARGS + "${opts}" + "${oneval_args}" + "${multival_args}" + ${ARGN} + ) + get_property(SPLIT_FACTOR TARGET ${YUNITTEST_ARGS_TEST_TARGET} PROPERTY SPLIT_FACTOR) + if (${SPLIT_FACTOR} EQUAL 1) + add_test(NAME ${YUNITTEST_ARGS_NAME} COMMAND ${YUNITTEST_ARGS_TARGET} ${YUNITTEST_ARGS_TEST_ARG}) + return() + endif() + + foreach(Idx RANGE ${SPLIT_FACTOR}) + add_test(NAME ${YUNITTEST_ARGS_NAME}_${Idx} + COMMAND Python3::Interpreter ${CMAKE_SOURCE_DIR}/build/scripts/split_unittest.py --split-factor ${SPLIT_FACTOR} --shard ${Idx} + $<TARGET_FILE:${YUNITTEST_ARGS_TEST_TARGET}> ${YUNITTEST_ARGS_TEST_ARG}) + endforeach() +endfunction() + +function(set_yunittest_property) + set(opts "") + set(oneval_args TEST PROPERTY) + set(multival_args ) + cmake_parse_arguments(YUNITTEST_ARGS + "${opts}" + "${oneval_args}" + "${multival_args}" + ${ARGN} + ) + get_property(SPLIT_FACTOR TARGET ${YUNITTEST_ARGS_TEST} PROPERTY SPLIT_FACTOR) + + if (${SPLIT_FACTOR} EQUAL 1) + set_property(TEST ${YUNITTEST_ARGS_TEST} PROPERTY ${YUNITTEST_ARGS_PROPERTY} ${YUNITTEST_ARGS_UNPARSED_ARGUMENTS}) + return() + endif() + + foreach(Idx RANGE ${SPLIT_FACTOR}) + set_property(TEST ${YUNITTEST_ARGS_TEST}_${Idx} PROPERTY ${YUNITTEST_ARGS_PROPERTY} ${YUNITTEST_ARGS_UNPARSED_ARGUMENTS}) + endforeach() +endfunction() diff --git a/cmake/global_vars.cmake b/cmake/global_vars.cmake index 311a9af8e9..6ba78b9749 100644 --- a/cmake/global_vars.cmake +++ b/cmake/global_vars.cmake @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/CMakeLists.txt b/contrib/CMakeLists.txt index 180cdc8bdc..8ff9dff700 100644 --- a/contrib/CMakeLists.txt +++ b/contrib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/CMakeLists.darwin.txt b/contrib/libs/CMakeLists.darwin.txt index 2c5a43d6f3..2fb1191e81 100644 --- a/contrib/libs/CMakeLists.darwin.txt +++ b/contrib/libs/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/CMakeLists.linux-aarch64.txt b/contrib/libs/CMakeLists.linux-aarch64.txt index 6ddbb48e28..45a9446c60 100644 --- a/contrib/libs/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/CMakeLists.linux.txt b/contrib/libs/CMakeLists.linux.txt index 84b291269c..664626ecec 100644 --- a/contrib/libs/CMakeLists.linux.txt +++ b/contrib/libs/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/CMakeLists.txt b/contrib/libs/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/CMakeLists.txt +++ b/contrib/libs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/antlr3_cpp_runtime/CMakeLists.darwin.txt b/contrib/libs/antlr3_cpp_runtime/CMakeLists.darwin.txt index 2a62e4ab87..d144df133c 100644 --- a/contrib/libs/antlr3_cpp_runtime/CMakeLists.darwin.txt +++ b/contrib/libs/antlr3_cpp_runtime/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/antlr3_cpp_runtime/CMakeLists.linux-aarch64.txt b/contrib/libs/antlr3_cpp_runtime/CMakeLists.linux-aarch64.txt index e9fcca6db1..a61e7837dd 100644 --- a/contrib/libs/antlr3_cpp_runtime/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/antlr3_cpp_runtime/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/antlr3_cpp_runtime/CMakeLists.linux.txt b/contrib/libs/antlr3_cpp_runtime/CMakeLists.linux.txt index e9fcca6db1..a61e7837dd 100644 --- a/contrib/libs/antlr3_cpp_runtime/CMakeLists.linux.txt +++ b/contrib/libs/antlr3_cpp_runtime/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/antlr3_cpp_runtime/CMakeLists.txt b/contrib/libs/antlr3_cpp_runtime/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/antlr3_cpp_runtime/CMakeLists.txt +++ b/contrib/libs/antlr3_cpp_runtime/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/apache/CMakeLists.txt b/contrib/libs/apache/CMakeLists.txt index e1bf69d210..3eb38d86db 100644 --- a/contrib/libs/apache/CMakeLists.txt +++ b/contrib/libs/apache/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/apache/arrow/CMakeLists.darwin.txt b/contrib/libs/apache/arrow/CMakeLists.darwin.txt index 0bf52780a4..3ff1d72955 100644 --- a/contrib/libs/apache/arrow/CMakeLists.darwin.txt +++ b/contrib/libs/apache/arrow/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/apache/arrow/CMakeLists.linux-aarch64.txt b/contrib/libs/apache/arrow/CMakeLists.linux-aarch64.txt index 8b0cfa1e52..04459c6f61 100644 --- a/contrib/libs/apache/arrow/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/apache/arrow/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/apache/arrow/CMakeLists.linux.txt b/contrib/libs/apache/arrow/CMakeLists.linux.txt index 8b0cfa1e52..04459c6f61 100644 --- a/contrib/libs/apache/arrow/CMakeLists.linux.txt +++ b/contrib/libs/apache/arrow/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/apache/arrow/CMakeLists.txt b/contrib/libs/apache/arrow/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/apache/arrow/CMakeLists.txt +++ b/contrib/libs/apache/arrow/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/apache/avro/CMakeLists.darwin.txt b/contrib/libs/apache/avro/CMakeLists.darwin.txt index 1a3c44dd73..46dbb79110 100644 --- a/contrib/libs/apache/avro/CMakeLists.darwin.txt +++ b/contrib/libs/apache/avro/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/apache/avro/CMakeLists.linux-aarch64.txt b/contrib/libs/apache/avro/CMakeLists.linux-aarch64.txt index 7d6a284e05..d5a801c6d7 100644 --- a/contrib/libs/apache/avro/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/apache/avro/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/apache/avro/CMakeLists.linux.txt b/contrib/libs/apache/avro/CMakeLists.linux.txt index 7d6a284e05..d5a801c6d7 100644 --- a/contrib/libs/apache/avro/CMakeLists.linux.txt +++ b/contrib/libs/apache/avro/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/apache/avro/CMakeLists.txt b/contrib/libs/apache/avro/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/apache/avro/CMakeLists.txt +++ b/contrib/libs/apache/avro/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/apache/orc/CMakeLists.darwin.txt b/contrib/libs/apache/orc/CMakeLists.darwin.txt index a567c02173..e4facddb81 100644 --- a/contrib/libs/apache/orc/CMakeLists.darwin.txt +++ b/contrib/libs/apache/orc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/apache/orc/CMakeLists.linux-aarch64.txt b/contrib/libs/apache/orc/CMakeLists.linux-aarch64.txt index b071555444..a8443547cc 100644 --- a/contrib/libs/apache/orc/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/apache/orc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/apache/orc/CMakeLists.linux.txt b/contrib/libs/apache/orc/CMakeLists.linux.txt index b071555444..a8443547cc 100644 --- a/contrib/libs/apache/orc/CMakeLists.linux.txt +++ b/contrib/libs/apache/orc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/apache/orc/CMakeLists.txt b/contrib/libs/apache/orc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/apache/orc/CMakeLists.txt +++ b/contrib/libs/apache/orc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/aws-sdk-cpp/CMakeLists.txt b/contrib/libs/aws-sdk-cpp/CMakeLists.txt index cbf8273ba6..13822480e0 100644 --- a/contrib/libs/aws-sdk-cpp/CMakeLists.txt +++ b/contrib/libs/aws-sdk-cpp/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.darwin.txt b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.darwin.txt index b1eec87634..fe44f3d04c 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.darwin.txt +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.linux-aarch64.txt b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.linux-aarch64.txt index 7f0cdff794..4cd52c4c77 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.linux.txt b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.linux.txt index 7f0cdff794..4cd52c4c77 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.linux.txt +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.txt b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.txt +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.darwin.txt b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.darwin.txt index ee3354ad41..9fcf24d815 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.darwin.txt +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.linux-aarch64.txt b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.linux-aarch64.txt index 868172cd2d..fb1657a6bb 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.linux.txt b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.linux.txt index 868172cd2d..fb1657a6bb 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.linux.txt +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.txt b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.txt +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/CMakeLists.txt b/contrib/libs/base64/CMakeLists.txt index 5744b7efd3..4ba8c1c26d 100644 --- a/contrib/libs/base64/CMakeLists.txt +++ b/contrib/libs/base64/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/avx2/CMakeLists.darwin.txt b/contrib/libs/base64/avx2/CMakeLists.darwin.txt index 085333714b..b2e29c7a01 100644 --- a/contrib/libs/base64/avx2/CMakeLists.darwin.txt +++ b/contrib/libs/base64/avx2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/avx2/CMakeLists.linux-aarch64.txt b/contrib/libs/base64/avx2/CMakeLists.linux-aarch64.txt index 014802f5fc..e4b15909e4 100644 --- a/contrib/libs/base64/avx2/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/base64/avx2/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/avx2/CMakeLists.linux.txt b/contrib/libs/base64/avx2/CMakeLists.linux.txt index 81a527ae86..b528c1f599 100644 --- a/contrib/libs/base64/avx2/CMakeLists.linux.txt +++ b/contrib/libs/base64/avx2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/avx2/CMakeLists.txt b/contrib/libs/base64/avx2/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/base64/avx2/CMakeLists.txt +++ b/contrib/libs/base64/avx2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/neon32/CMakeLists.darwin.txt b/contrib/libs/base64/neon32/CMakeLists.darwin.txt index bac3853cce..a7ec94e9d0 100644 --- a/contrib/libs/base64/neon32/CMakeLists.darwin.txt +++ b/contrib/libs/base64/neon32/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/neon32/CMakeLists.linux-aarch64.txt b/contrib/libs/base64/neon32/CMakeLists.linux-aarch64.txt index 75f58705cd..2b3ad9b62d 100644 --- a/contrib/libs/base64/neon32/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/base64/neon32/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/neon32/CMakeLists.linux.txt b/contrib/libs/base64/neon32/CMakeLists.linux.txt index 75f58705cd..2b3ad9b62d 100644 --- a/contrib/libs/base64/neon32/CMakeLists.linux.txt +++ b/contrib/libs/base64/neon32/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/neon32/CMakeLists.txt b/contrib/libs/base64/neon32/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/base64/neon32/CMakeLists.txt +++ b/contrib/libs/base64/neon32/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/neon64/CMakeLists.darwin.txt b/contrib/libs/base64/neon64/CMakeLists.darwin.txt index 0f8d09e758..732c4dd375 100644 --- a/contrib/libs/base64/neon64/CMakeLists.darwin.txt +++ b/contrib/libs/base64/neon64/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/neon64/CMakeLists.linux-aarch64.txt b/contrib/libs/base64/neon64/CMakeLists.linux-aarch64.txt index cdb2e412f5..e0e65d6da7 100644 --- a/contrib/libs/base64/neon64/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/base64/neon64/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/neon64/CMakeLists.linux.txt b/contrib/libs/base64/neon64/CMakeLists.linux.txt index 7109824b91..e4923670c8 100644 --- a/contrib/libs/base64/neon64/CMakeLists.linux.txt +++ b/contrib/libs/base64/neon64/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/neon64/CMakeLists.txt b/contrib/libs/base64/neon64/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/base64/neon64/CMakeLists.txt +++ b/contrib/libs/base64/neon64/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/plain32/CMakeLists.darwin.txt b/contrib/libs/base64/plain32/CMakeLists.darwin.txt index 102333bbae..d06a76d91a 100644 --- a/contrib/libs/base64/plain32/CMakeLists.darwin.txt +++ b/contrib/libs/base64/plain32/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/plain32/CMakeLists.linux-aarch64.txt b/contrib/libs/base64/plain32/CMakeLists.linux-aarch64.txt index ae4a3843ca..edca2dcad4 100644 --- a/contrib/libs/base64/plain32/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/base64/plain32/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/plain32/CMakeLists.linux.txt b/contrib/libs/base64/plain32/CMakeLists.linux.txt index ae4a3843ca..edca2dcad4 100644 --- a/contrib/libs/base64/plain32/CMakeLists.linux.txt +++ b/contrib/libs/base64/plain32/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/plain32/CMakeLists.txt b/contrib/libs/base64/plain32/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/base64/plain32/CMakeLists.txt +++ b/contrib/libs/base64/plain32/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/plain64/CMakeLists.darwin.txt b/contrib/libs/base64/plain64/CMakeLists.darwin.txt index 2756edf7ca..9ccfdf670c 100644 --- a/contrib/libs/base64/plain64/CMakeLists.darwin.txt +++ b/contrib/libs/base64/plain64/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/plain64/CMakeLists.linux-aarch64.txt b/contrib/libs/base64/plain64/CMakeLists.linux-aarch64.txt index 0cabb60bfc..722ac9fd40 100644 --- a/contrib/libs/base64/plain64/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/base64/plain64/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/plain64/CMakeLists.linux.txt b/contrib/libs/base64/plain64/CMakeLists.linux.txt index 0cabb60bfc..722ac9fd40 100644 --- a/contrib/libs/base64/plain64/CMakeLists.linux.txt +++ b/contrib/libs/base64/plain64/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/plain64/CMakeLists.txt b/contrib/libs/base64/plain64/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/base64/plain64/CMakeLists.txt +++ b/contrib/libs/base64/plain64/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/ssse3/CMakeLists.darwin.txt b/contrib/libs/base64/ssse3/CMakeLists.darwin.txt index b8150d469c..e1d78be6e0 100644 --- a/contrib/libs/base64/ssse3/CMakeLists.darwin.txt +++ b/contrib/libs/base64/ssse3/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/ssse3/CMakeLists.linux-aarch64.txt b/contrib/libs/base64/ssse3/CMakeLists.linux-aarch64.txt index d3cd89135a..9a8344da0f 100644 --- a/contrib/libs/base64/ssse3/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/base64/ssse3/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/ssse3/CMakeLists.linux.txt b/contrib/libs/base64/ssse3/CMakeLists.linux.txt index 248b36d71c..f019ec569f 100644 --- a/contrib/libs/base64/ssse3/CMakeLists.linux.txt +++ b/contrib/libs/base64/ssse3/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/base64/ssse3/CMakeLists.txt b/contrib/libs/base64/ssse3/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/base64/ssse3/CMakeLists.txt +++ b/contrib/libs/base64/ssse3/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/brotli/CMakeLists.txt b/contrib/libs/brotli/CMakeLists.txt index 69449669e8..7b303ded8d 100644 --- a/contrib/libs/brotli/CMakeLists.txt +++ b/contrib/libs/brotli/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/brotli/common/CMakeLists.darwin.txt b/contrib/libs/brotli/common/CMakeLists.darwin.txt index b4230ac043..493d1aa481 100644 --- a/contrib/libs/brotli/common/CMakeLists.darwin.txt +++ b/contrib/libs/brotli/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/brotli/common/CMakeLists.linux-aarch64.txt b/contrib/libs/brotli/common/CMakeLists.linux-aarch64.txt index e54b777000..b270055def 100644 --- a/contrib/libs/brotli/common/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/brotli/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/brotli/common/CMakeLists.linux.txt b/contrib/libs/brotli/common/CMakeLists.linux.txt index e54b777000..b270055def 100644 --- a/contrib/libs/brotli/common/CMakeLists.linux.txt +++ b/contrib/libs/brotli/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/brotli/common/CMakeLists.txt b/contrib/libs/brotli/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/brotli/common/CMakeLists.txt +++ b/contrib/libs/brotli/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/brotli/dec/CMakeLists.darwin.txt b/contrib/libs/brotli/dec/CMakeLists.darwin.txt index 6eaf4f0b2c..42b8ff8dde 100644 --- a/contrib/libs/brotli/dec/CMakeLists.darwin.txt +++ b/contrib/libs/brotli/dec/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/brotli/dec/CMakeLists.linux-aarch64.txt b/contrib/libs/brotli/dec/CMakeLists.linux-aarch64.txt index 2488f68ef3..7d63a5712a 100644 --- a/contrib/libs/brotli/dec/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/brotli/dec/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/brotli/dec/CMakeLists.linux.txt b/contrib/libs/brotli/dec/CMakeLists.linux.txt index 2488f68ef3..7d63a5712a 100644 --- a/contrib/libs/brotli/dec/CMakeLists.linux.txt +++ b/contrib/libs/brotli/dec/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/brotli/dec/CMakeLists.txt b/contrib/libs/brotli/dec/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/brotli/dec/CMakeLists.txt +++ b/contrib/libs/brotli/dec/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/brotli/enc/CMakeLists.darwin.txt b/contrib/libs/brotli/enc/CMakeLists.darwin.txt index 4966beffab..a813b34bd6 100644 --- a/contrib/libs/brotli/enc/CMakeLists.darwin.txt +++ b/contrib/libs/brotli/enc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/brotli/enc/CMakeLists.linux-aarch64.txt b/contrib/libs/brotli/enc/CMakeLists.linux-aarch64.txt index 32418c81f9..2252f70be1 100644 --- a/contrib/libs/brotli/enc/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/brotli/enc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/brotli/enc/CMakeLists.linux.txt b/contrib/libs/brotli/enc/CMakeLists.linux.txt index 32418c81f9..2252f70be1 100644 --- a/contrib/libs/brotli/enc/CMakeLists.linux.txt +++ b/contrib/libs/brotli/enc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/brotli/enc/CMakeLists.txt b/contrib/libs/brotli/enc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/brotli/enc/CMakeLists.txt +++ b/contrib/libs/brotli/enc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cctz/CMakeLists.darwin.txt b/contrib/libs/cctz/CMakeLists.darwin.txt index 6068d1079a..18d130efd5 100644 --- a/contrib/libs/cctz/CMakeLists.darwin.txt +++ b/contrib/libs/cctz/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cctz/CMakeLists.linux-aarch64.txt b/contrib/libs/cctz/CMakeLists.linux-aarch64.txt index 2c7d24dd6c..f6eb41f0a4 100644 --- a/contrib/libs/cctz/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/cctz/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cctz/CMakeLists.linux.txt b/contrib/libs/cctz/CMakeLists.linux.txt index 2c7d24dd6c..f6eb41f0a4 100644 --- a/contrib/libs/cctz/CMakeLists.linux.txt +++ b/contrib/libs/cctz/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cctz/CMakeLists.txt b/contrib/libs/cctz/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/cctz/CMakeLists.txt +++ b/contrib/libs/cctz/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cctz/tzdata/CMakeLists.darwin.txt b/contrib/libs/cctz/tzdata/CMakeLists.darwin.txt index 2f68fd6598..0cfb7e3549 100644 --- a/contrib/libs/cctz/tzdata/CMakeLists.darwin.txt +++ b/contrib/libs/cctz/tzdata/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cctz/tzdata/CMakeLists.linux-aarch64.txt b/contrib/libs/cctz/tzdata/CMakeLists.linux-aarch64.txt index 62b151ab26..b0da7bd8a9 100644 --- a/contrib/libs/cctz/tzdata/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/cctz/tzdata/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cctz/tzdata/CMakeLists.linux.txt b/contrib/libs/cctz/tzdata/CMakeLists.linux.txt index 62b151ab26..b0da7bd8a9 100644 --- a/contrib/libs/cctz/tzdata/CMakeLists.linux.txt +++ b/contrib/libs/cctz/tzdata/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cctz/tzdata/CMakeLists.txt b/contrib/libs/cctz/tzdata/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/cctz/tzdata/CMakeLists.txt +++ b/contrib/libs/cctz/tzdata/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/crcutil/CMakeLists.darwin.txt b/contrib/libs/crcutil/CMakeLists.darwin.txt index 4d458c863d..ace85024b0 100644 --- a/contrib/libs/crcutil/CMakeLists.darwin.txt +++ b/contrib/libs/crcutil/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/crcutil/CMakeLists.linux-aarch64.txt b/contrib/libs/crcutil/CMakeLists.linux-aarch64.txt index 90d2400a26..81895d1a9d 100644 --- a/contrib/libs/crcutil/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/crcutil/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/crcutil/CMakeLists.linux.txt b/contrib/libs/crcutil/CMakeLists.linux.txt index 263c2f7c92..962915e80f 100644 --- a/contrib/libs/crcutil/CMakeLists.linux.txt +++ b/contrib/libs/crcutil/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/crcutil/CMakeLists.txt b/contrib/libs/crcutil/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/crcutil/CMakeLists.txt +++ b/contrib/libs/crcutil/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/curl/CMakeLists.darwin.txt b/contrib/libs/curl/CMakeLists.darwin.txt index 12351cd941..2d5ff549ce 100644 --- a/contrib/libs/curl/CMakeLists.darwin.txt +++ b/contrib/libs/curl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/curl/CMakeLists.linux-aarch64.txt b/contrib/libs/curl/CMakeLists.linux-aarch64.txt index e26a77ba74..f86ca681e2 100644 --- a/contrib/libs/curl/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/curl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/curl/CMakeLists.linux.txt b/contrib/libs/curl/CMakeLists.linux.txt index e26a77ba74..f86ca681e2 100644 --- a/contrib/libs/curl/CMakeLists.linux.txt +++ b/contrib/libs/curl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/curl/CMakeLists.txt b/contrib/libs/curl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/curl/CMakeLists.txt +++ b/contrib/libs/curl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/CMakeLists.darwin.txt b/contrib/libs/cxxsupp/CMakeLists.darwin.txt index 236767d79f..231e81c8ee 100644 --- a/contrib/libs/cxxsupp/CMakeLists.darwin.txt +++ b/contrib/libs/cxxsupp/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/CMakeLists.linux-aarch64.txt b/contrib/libs/cxxsupp/CMakeLists.linux-aarch64.txt index 37eaee68ed..ea5f7a2498 100644 --- a/contrib/libs/cxxsupp/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/cxxsupp/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/CMakeLists.linux.txt b/contrib/libs/cxxsupp/CMakeLists.linux.txt index 37eaee68ed..ea5f7a2498 100644 --- a/contrib/libs/cxxsupp/CMakeLists.linux.txt +++ b/contrib/libs/cxxsupp/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/CMakeLists.txt b/contrib/libs/cxxsupp/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/cxxsupp/CMakeLists.txt +++ b/contrib/libs/cxxsupp/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/builtins/CMakeLists.darwin.txt b/contrib/libs/cxxsupp/builtins/CMakeLists.darwin.txt index cc64f72d08..0a536a4d4f 100644 --- a/contrib/libs/cxxsupp/builtins/CMakeLists.darwin.txt +++ b/contrib/libs/cxxsupp/builtins/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/builtins/CMakeLists.linux-aarch64.txt b/contrib/libs/cxxsupp/builtins/CMakeLists.linux-aarch64.txt index f8b9607b5c..4f877ff033 100644 --- a/contrib/libs/cxxsupp/builtins/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/cxxsupp/builtins/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/builtins/CMakeLists.linux.txt b/contrib/libs/cxxsupp/builtins/CMakeLists.linux.txt index 77eea34d68..7cf0bc2658 100644 --- a/contrib/libs/cxxsupp/builtins/CMakeLists.linux.txt +++ b/contrib/libs/cxxsupp/builtins/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/builtins/CMakeLists.txt b/contrib/libs/cxxsupp/builtins/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/cxxsupp/builtins/CMakeLists.txt +++ b/contrib/libs/cxxsupp/builtins/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/libcxx/CMakeLists.darwin.txt b/contrib/libs/cxxsupp/libcxx/CMakeLists.darwin.txt index a885e188cf..3f24ad5a2e 100644 --- a/contrib/libs/cxxsupp/libcxx/CMakeLists.darwin.txt +++ b/contrib/libs/cxxsupp/libcxx/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/libcxx/CMakeLists.linux-aarch64.txt b/contrib/libs/cxxsupp/libcxx/CMakeLists.linux-aarch64.txt index 26b67859e8..a412ee1676 100644 --- a/contrib/libs/cxxsupp/libcxx/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/cxxsupp/libcxx/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/libcxx/CMakeLists.linux.txt b/contrib/libs/cxxsupp/libcxx/CMakeLists.linux.txt index 26b67859e8..a412ee1676 100644 --- a/contrib/libs/cxxsupp/libcxx/CMakeLists.linux.txt +++ b/contrib/libs/cxxsupp/libcxx/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/libcxx/CMakeLists.txt b/contrib/libs/cxxsupp/libcxx/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/cxxsupp/libcxx/CMakeLists.txt +++ b/contrib/libs/cxxsupp/libcxx/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.darwin.txt b/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.darwin.txt index b5c3cdc400..b44c0039fe 100644 --- a/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.darwin.txt +++ b/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.linux-aarch64.txt b/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.linux-aarch64.txt index 9ecfb3a972..e96e9622ab 100644 --- a/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.linux.txt b/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.linux.txt index c24eb6a887..a99ea85123 100644 --- a/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.linux.txt +++ b/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.txt b/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.txt +++ b/contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/libcxxrt/CMakeLists.darwin.txt b/contrib/libs/cxxsupp/libcxxrt/CMakeLists.darwin.txt index 833e0ce2d7..d6c648b184 100644 --- a/contrib/libs/cxxsupp/libcxxrt/CMakeLists.darwin.txt +++ b/contrib/libs/cxxsupp/libcxxrt/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/libcxxrt/CMakeLists.linux-aarch64.txt b/contrib/libs/cxxsupp/libcxxrt/CMakeLists.linux-aarch64.txt index 6d76cead49..291d110e0e 100644 --- a/contrib/libs/cxxsupp/libcxxrt/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/cxxsupp/libcxxrt/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/libcxxrt/CMakeLists.linux.txt b/contrib/libs/cxxsupp/libcxxrt/CMakeLists.linux.txt index 6d76cead49..291d110e0e 100644 --- a/contrib/libs/cxxsupp/libcxxrt/CMakeLists.linux.txt +++ b/contrib/libs/cxxsupp/libcxxrt/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/cxxsupp/libcxxrt/CMakeLists.txt b/contrib/libs/cxxsupp/libcxxrt/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/cxxsupp/libcxxrt/CMakeLists.txt +++ b/contrib/libs/cxxsupp/libcxxrt/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/double-conversion/CMakeLists.darwin.txt b/contrib/libs/double-conversion/CMakeLists.darwin.txt index 12d2fe3dbe..8c2f8738bf 100644 --- a/contrib/libs/double-conversion/CMakeLists.darwin.txt +++ b/contrib/libs/double-conversion/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/double-conversion/CMakeLists.linux-aarch64.txt b/contrib/libs/double-conversion/CMakeLists.linux-aarch64.txt index 61f8a50b7e..608c3652ea 100644 --- a/contrib/libs/double-conversion/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/double-conversion/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/double-conversion/CMakeLists.linux.txt b/contrib/libs/double-conversion/CMakeLists.linux.txt index 61f8a50b7e..608c3652ea 100644 --- a/contrib/libs/double-conversion/CMakeLists.linux.txt +++ b/contrib/libs/double-conversion/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/double-conversion/CMakeLists.txt b/contrib/libs/double-conversion/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/double-conversion/CMakeLists.txt +++ b/contrib/libs/double-conversion/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/expat/CMakeLists.darwin.txt b/contrib/libs/expat/CMakeLists.darwin.txt index cb5011be45..867e5f7b5a 100644 --- a/contrib/libs/expat/CMakeLists.darwin.txt +++ b/contrib/libs/expat/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/expat/CMakeLists.linux-aarch64.txt b/contrib/libs/expat/CMakeLists.linux-aarch64.txt index 443aae4593..3abb7a0372 100644 --- a/contrib/libs/expat/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/expat/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/expat/CMakeLists.linux.txt b/contrib/libs/expat/CMakeLists.linux.txt index 443aae4593..3abb7a0372 100644 --- a/contrib/libs/expat/CMakeLists.linux.txt +++ b/contrib/libs/expat/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/expat/CMakeLists.txt b/contrib/libs/expat/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/expat/CMakeLists.txt +++ b/contrib/libs/expat/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/CMakeLists.darwin.txt b/contrib/libs/farmhash/CMakeLists.darwin.txt index 28ba97595e..45124fdae8 100644 --- a/contrib/libs/farmhash/CMakeLists.darwin.txt +++ b/contrib/libs/farmhash/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/CMakeLists.linux-aarch64.txt b/contrib/libs/farmhash/CMakeLists.linux-aarch64.txt index a662962069..87c940e8dc 100644 --- a/contrib/libs/farmhash/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/farmhash/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/CMakeLists.linux.txt b/contrib/libs/farmhash/CMakeLists.linux.txt index a662962069..87c940e8dc 100644 --- a/contrib/libs/farmhash/CMakeLists.linux.txt +++ b/contrib/libs/farmhash/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/CMakeLists.txt b/contrib/libs/farmhash/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/farmhash/CMakeLists.txt +++ b/contrib/libs/farmhash/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/arch/CMakeLists.txt b/contrib/libs/farmhash/arch/CMakeLists.txt index 8a05f09d4b..8100bf9275 100644 --- a/contrib/libs/farmhash/arch/CMakeLists.txt +++ b/contrib/libs/farmhash/arch/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/arch/sse41/CMakeLists.darwin.txt b/contrib/libs/farmhash/arch/sse41/CMakeLists.darwin.txt index e83cb67bd6..d618606ba5 100644 --- a/contrib/libs/farmhash/arch/sse41/CMakeLists.darwin.txt +++ b/contrib/libs/farmhash/arch/sse41/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/arch/sse41/CMakeLists.linux-aarch64.txt b/contrib/libs/farmhash/arch/sse41/CMakeLists.linux-aarch64.txt index 1fb1138bac..85373edfc3 100644 --- a/contrib/libs/farmhash/arch/sse41/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/farmhash/arch/sse41/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/arch/sse41/CMakeLists.linux.txt b/contrib/libs/farmhash/arch/sse41/CMakeLists.linux.txt index 1fb1138bac..85373edfc3 100644 --- a/contrib/libs/farmhash/arch/sse41/CMakeLists.linux.txt +++ b/contrib/libs/farmhash/arch/sse41/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/arch/sse41/CMakeLists.txt b/contrib/libs/farmhash/arch/sse41/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/farmhash/arch/sse41/CMakeLists.txt +++ b/contrib/libs/farmhash/arch/sse41/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/arch/sse42/CMakeLists.darwin.txt b/contrib/libs/farmhash/arch/sse42/CMakeLists.darwin.txt index 0d829bbbf1..09ceb966ef 100644 --- a/contrib/libs/farmhash/arch/sse42/CMakeLists.darwin.txt +++ b/contrib/libs/farmhash/arch/sse42/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/arch/sse42/CMakeLists.linux-aarch64.txt b/contrib/libs/farmhash/arch/sse42/CMakeLists.linux-aarch64.txt index 078a9a02f6..6b00636193 100644 --- a/contrib/libs/farmhash/arch/sse42/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/farmhash/arch/sse42/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/arch/sse42/CMakeLists.linux.txt b/contrib/libs/farmhash/arch/sse42/CMakeLists.linux.txt index 078a9a02f6..6b00636193 100644 --- a/contrib/libs/farmhash/arch/sse42/CMakeLists.linux.txt +++ b/contrib/libs/farmhash/arch/sse42/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/arch/sse42/CMakeLists.txt b/contrib/libs/farmhash/arch/sse42/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/farmhash/arch/sse42/CMakeLists.txt +++ b/contrib/libs/farmhash/arch/sse42/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.darwin.txt b/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.darwin.txt index 03160577e6..e635439149 100644 --- a/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.darwin.txt +++ b/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.linux-aarch64.txt b/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.linux-aarch64.txt index a809224f93..770ce1c80e 100644 --- a/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.linux.txt b/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.linux.txt index a809224f93..770ce1c80e 100644 --- a/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.linux.txt +++ b/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.txt b/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.txt +++ b/contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/fastlz/CMakeLists.darwin.txt b/contrib/libs/fastlz/CMakeLists.darwin.txt index 0ec53e3664..e43bd11e58 100644 --- a/contrib/libs/fastlz/CMakeLists.darwin.txt +++ b/contrib/libs/fastlz/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/fastlz/CMakeLists.linux-aarch64.txt b/contrib/libs/fastlz/CMakeLists.linux-aarch64.txt index 83d074a043..bc41572e30 100644 --- a/contrib/libs/fastlz/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/fastlz/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/fastlz/CMakeLists.linux.txt b/contrib/libs/fastlz/CMakeLists.linux.txt index 83d074a043..bc41572e30 100644 --- a/contrib/libs/fastlz/CMakeLists.linux.txt +++ b/contrib/libs/fastlz/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/fastlz/CMakeLists.txt b/contrib/libs/fastlz/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/fastlz/CMakeLists.txt +++ b/contrib/libs/fastlz/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/fmt/CMakeLists.darwin.txt b/contrib/libs/fmt/CMakeLists.darwin.txt index 04aed24f8c..9ca9da3b56 100644 --- a/contrib/libs/fmt/CMakeLists.darwin.txt +++ b/contrib/libs/fmt/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/fmt/CMakeLists.linux-aarch64.txt b/contrib/libs/fmt/CMakeLists.linux-aarch64.txt index 17bb25a3f0..b5c6478ab3 100644 --- a/contrib/libs/fmt/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/fmt/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/fmt/CMakeLists.linux.txt b/contrib/libs/fmt/CMakeLists.linux.txt index 17bb25a3f0..b5c6478ab3 100644 --- a/contrib/libs/fmt/CMakeLists.linux.txt +++ b/contrib/libs/fmt/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/fmt/CMakeLists.txt b/contrib/libs/fmt/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/fmt/CMakeLists.txt +++ b/contrib/libs/fmt/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/googleapis-common-protos/CMakeLists.darwin.txt b/contrib/libs/googleapis-common-protos/CMakeLists.darwin.txt index f83ca45ec5..49132aaa0e 100644 --- a/contrib/libs/googleapis-common-protos/CMakeLists.darwin.txt +++ b/contrib/libs/googleapis-common-protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/googleapis-common-protos/CMakeLists.linux-aarch64.txt b/contrib/libs/googleapis-common-protos/CMakeLists.linux-aarch64.txt index d4f1648205..83a6812e0c 100644 --- a/contrib/libs/googleapis-common-protos/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/googleapis-common-protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/googleapis-common-protos/CMakeLists.linux.txt b/contrib/libs/googleapis-common-protos/CMakeLists.linux.txt index d4f1648205..83a6812e0c 100644 --- a/contrib/libs/googleapis-common-protos/CMakeLists.linux.txt +++ b/contrib/libs/googleapis-common-protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/googleapis-common-protos/CMakeLists.txt b/contrib/libs/googleapis-common-protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/googleapis-common-protos/CMakeLists.txt +++ b/contrib/libs/googleapis-common-protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/CMakeLists.darwin.txt b/contrib/libs/grpc/CMakeLists.darwin.txt index 9bb0c69fdb..2df0aac4a8 100644 --- a/contrib/libs/grpc/CMakeLists.darwin.txt +++ b/contrib/libs/grpc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/CMakeLists.linux-aarch64.txt b/contrib/libs/grpc/CMakeLists.linux-aarch64.txt index d4e3b955f5..101ba19386 100644 --- a/contrib/libs/grpc/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/grpc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/CMakeLists.linux.txt b/contrib/libs/grpc/CMakeLists.linux.txt index d4e3b955f5..101ba19386 100644 --- a/contrib/libs/grpc/CMakeLists.linux.txt +++ b/contrib/libs/grpc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/CMakeLists.txt b/contrib/libs/grpc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/grpc/CMakeLists.txt +++ b/contrib/libs/grpc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/src/CMakeLists.txt b/contrib/libs/grpc/src/CMakeLists.txt index 844d35fa77..8da768dff0 100644 --- a/contrib/libs/grpc/src/CMakeLists.txt +++ b/contrib/libs/grpc/src/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/src/compiler/CMakeLists.txt b/contrib/libs/grpc/src/compiler/CMakeLists.txt index 0a445ac050..439054ac67 100644 --- a/contrib/libs/grpc/src/compiler/CMakeLists.txt +++ b/contrib/libs/grpc/src/compiler/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.darwin.txt b/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.darwin.txt index 7391a78c9d..805a0e8a51 100644 --- a/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.darwin.txt +++ b/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.linux-aarch64.txt b/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.linux-aarch64.txt index 7b3a63b0ff..b3e255e4a0 100644 --- a/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.linux.txt b/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.linux.txt index 7b3a63b0ff..b3e255e4a0 100644 --- a/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.linux.txt +++ b/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.txt b/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.txt +++ b/contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/third_party/CMakeLists.txt b/contrib/libs/grpc/third_party/CMakeLists.txt index 450719d3ba..876f632ca4 100644 --- a/contrib/libs/grpc/third_party/CMakeLists.txt +++ b/contrib/libs/grpc/third_party/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/third_party/address_sorting/CMakeLists.darwin.txt b/contrib/libs/grpc/third_party/address_sorting/CMakeLists.darwin.txt index 0430018b2d..6c66929cc1 100644 --- a/contrib/libs/grpc/third_party/address_sorting/CMakeLists.darwin.txt +++ b/contrib/libs/grpc/third_party/address_sorting/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/third_party/address_sorting/CMakeLists.linux-aarch64.txt b/contrib/libs/grpc/third_party/address_sorting/CMakeLists.linux-aarch64.txt index 75f47f74ac..221eec3f9e 100644 --- a/contrib/libs/grpc/third_party/address_sorting/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/grpc/third_party/address_sorting/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/third_party/address_sorting/CMakeLists.linux.txt b/contrib/libs/grpc/third_party/address_sorting/CMakeLists.linux.txt index 75f47f74ac..221eec3f9e 100644 --- a/contrib/libs/grpc/third_party/address_sorting/CMakeLists.linux.txt +++ b/contrib/libs/grpc/third_party/address_sorting/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/third_party/address_sorting/CMakeLists.txt b/contrib/libs/grpc/third_party/address_sorting/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/grpc/third_party/address_sorting/CMakeLists.txt +++ b/contrib/libs/grpc/third_party/address_sorting/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/third_party/upb/CMakeLists.darwin.txt b/contrib/libs/grpc/third_party/upb/CMakeLists.darwin.txt index bfb7f888a9..9711cc2af2 100644 --- a/contrib/libs/grpc/third_party/upb/CMakeLists.darwin.txt +++ b/contrib/libs/grpc/third_party/upb/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/third_party/upb/CMakeLists.linux-aarch64.txt b/contrib/libs/grpc/third_party/upb/CMakeLists.linux-aarch64.txt index 3cb51ae109..915af5fccb 100644 --- a/contrib/libs/grpc/third_party/upb/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/grpc/third_party/upb/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/third_party/upb/CMakeLists.linux.txt b/contrib/libs/grpc/third_party/upb/CMakeLists.linux.txt index 3cb51ae109..915af5fccb 100644 --- a/contrib/libs/grpc/third_party/upb/CMakeLists.linux.txt +++ b/contrib/libs/grpc/third_party/upb/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/grpc/third_party/upb/CMakeLists.txt b/contrib/libs/grpc/third_party/upb/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/grpc/third_party/upb/CMakeLists.txt +++ b/contrib/libs/grpc/third_party/upb/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hdr_histogram/CMakeLists.darwin.txt b/contrib/libs/hdr_histogram/CMakeLists.darwin.txt index 36a272169a..3994f27a6f 100644 --- a/contrib/libs/hdr_histogram/CMakeLists.darwin.txt +++ b/contrib/libs/hdr_histogram/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hdr_histogram/CMakeLists.linux-aarch64.txt b/contrib/libs/hdr_histogram/CMakeLists.linux-aarch64.txt index b48463d36c..2d5a3323f1 100644 --- a/contrib/libs/hdr_histogram/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/hdr_histogram/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hdr_histogram/CMakeLists.linux.txt b/contrib/libs/hdr_histogram/CMakeLists.linux.txt index b48463d36c..2d5a3323f1 100644 --- a/contrib/libs/hdr_histogram/CMakeLists.linux.txt +++ b/contrib/libs/hdr_histogram/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hdr_histogram/CMakeLists.txt b/contrib/libs/hdr_histogram/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/hdr_histogram/CMakeLists.txt +++ b/contrib/libs/hdr_histogram/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/highwayhash/CMakeLists.darwin.txt b/contrib/libs/highwayhash/CMakeLists.darwin.txt index b8b5c58b9f..9360b930a3 100644 --- a/contrib/libs/highwayhash/CMakeLists.darwin.txt +++ b/contrib/libs/highwayhash/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/highwayhash/CMakeLists.linux-aarch64.txt b/contrib/libs/highwayhash/CMakeLists.linux-aarch64.txt index dfd1965828..a091ef9579 100644 --- a/contrib/libs/highwayhash/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/highwayhash/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/highwayhash/CMakeLists.linux.txt b/contrib/libs/highwayhash/CMakeLists.linux.txt index 1b8561acd9..f2003ae188 100644 --- a/contrib/libs/highwayhash/CMakeLists.linux.txt +++ b/contrib/libs/highwayhash/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/highwayhash/CMakeLists.txt b/contrib/libs/highwayhash/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/highwayhash/CMakeLists.txt +++ b/contrib/libs/highwayhash/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/highwayhash/arch/CMakeLists.darwin.txt b/contrib/libs/highwayhash/arch/CMakeLists.darwin.txt index fc6e7a4a0e..3877a3a7da 100644 --- a/contrib/libs/highwayhash/arch/CMakeLists.darwin.txt +++ b/contrib/libs/highwayhash/arch/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/highwayhash/arch/CMakeLists.linux.txt b/contrib/libs/highwayhash/arch/CMakeLists.linux.txt index fc6e7a4a0e..3877a3a7da 100644 --- a/contrib/libs/highwayhash/arch/CMakeLists.linux.txt +++ b/contrib/libs/highwayhash/arch/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/highwayhash/arch/CMakeLists.txt b/contrib/libs/highwayhash/arch/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/libs/highwayhash/arch/CMakeLists.txt +++ b/contrib/libs/highwayhash/arch/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/highwayhash/arch/avx2/CMakeLists.darwin.txt b/contrib/libs/highwayhash/arch/avx2/CMakeLists.darwin.txt index 2ecfdace3b..03cf76266b 100644 --- a/contrib/libs/highwayhash/arch/avx2/CMakeLists.darwin.txt +++ b/contrib/libs/highwayhash/arch/avx2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/highwayhash/arch/avx2/CMakeLists.linux.txt b/contrib/libs/highwayhash/arch/avx2/CMakeLists.linux.txt index b2ce84c338..ad2f3e9734 100644 --- a/contrib/libs/highwayhash/arch/avx2/CMakeLists.linux.txt +++ b/contrib/libs/highwayhash/arch/avx2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/highwayhash/arch/avx2/CMakeLists.txt b/contrib/libs/highwayhash/arch/avx2/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/libs/highwayhash/arch/avx2/CMakeLists.txt +++ b/contrib/libs/highwayhash/arch/avx2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/highwayhash/arch/sse41/CMakeLists.darwin.txt b/contrib/libs/highwayhash/arch/sse41/CMakeLists.darwin.txt index bd22fba25f..eeea0ca662 100644 --- a/contrib/libs/highwayhash/arch/sse41/CMakeLists.darwin.txt +++ b/contrib/libs/highwayhash/arch/sse41/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/highwayhash/arch/sse41/CMakeLists.linux.txt b/contrib/libs/highwayhash/arch/sse41/CMakeLists.linux.txt index 79159f2004..b99c2c78d2 100644 --- a/contrib/libs/highwayhash/arch/sse41/CMakeLists.linux.txt +++ b/contrib/libs/highwayhash/arch/sse41/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/highwayhash/arch/sse41/CMakeLists.txt b/contrib/libs/highwayhash/arch/sse41/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/libs/highwayhash/arch/sse41/CMakeLists.txt +++ b/contrib/libs/highwayhash/arch/sse41/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/CMakeLists.darwin.txt b/contrib/libs/hyperscan/CMakeLists.darwin.txt index 6579918b63..0ca4162e77 100644 --- a/contrib/libs/hyperscan/CMakeLists.darwin.txt +++ b/contrib/libs/hyperscan/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/CMakeLists.linux.txt b/contrib/libs/hyperscan/CMakeLists.linux.txt index e6ce83f1d6..5b6e584233 100644 --- a/contrib/libs/hyperscan/CMakeLists.linux.txt +++ b/contrib/libs/hyperscan/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/CMakeLists.txt b/contrib/libs/hyperscan/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/libs/hyperscan/CMakeLists.txt +++ b/contrib/libs/hyperscan/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/runtime_avx2/CMakeLists.darwin.txt b/contrib/libs/hyperscan/runtime_avx2/CMakeLists.darwin.txt index 03290e1358..ab8df40ec3 100644 --- a/contrib/libs/hyperscan/runtime_avx2/CMakeLists.darwin.txt +++ b/contrib/libs/hyperscan/runtime_avx2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/runtime_avx2/CMakeLists.linux.txt b/contrib/libs/hyperscan/runtime_avx2/CMakeLists.linux.txt index e8ffadb5db..616d8cf1e4 100644 --- a/contrib/libs/hyperscan/runtime_avx2/CMakeLists.linux.txt +++ b/contrib/libs/hyperscan/runtime_avx2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/runtime_avx2/CMakeLists.txt b/contrib/libs/hyperscan/runtime_avx2/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/libs/hyperscan/runtime_avx2/CMakeLists.txt +++ b/contrib/libs/hyperscan/runtime_avx2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/runtime_avx512/CMakeLists.darwin.txt b/contrib/libs/hyperscan/runtime_avx512/CMakeLists.darwin.txt index 322a106b42..023555aad7 100644 --- a/contrib/libs/hyperscan/runtime_avx512/CMakeLists.darwin.txt +++ b/contrib/libs/hyperscan/runtime_avx512/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/runtime_avx512/CMakeLists.linux.txt b/contrib/libs/hyperscan/runtime_avx512/CMakeLists.linux.txt index 66b19f1385..66b6166886 100644 --- a/contrib/libs/hyperscan/runtime_avx512/CMakeLists.linux.txt +++ b/contrib/libs/hyperscan/runtime_avx512/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/runtime_avx512/CMakeLists.txt b/contrib/libs/hyperscan/runtime_avx512/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/libs/hyperscan/runtime_avx512/CMakeLists.txt +++ b/contrib/libs/hyperscan/runtime_avx512/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/runtime_core2/CMakeLists.darwin.txt b/contrib/libs/hyperscan/runtime_core2/CMakeLists.darwin.txt index ab19c27720..424c67167c 100644 --- a/contrib/libs/hyperscan/runtime_core2/CMakeLists.darwin.txt +++ b/contrib/libs/hyperscan/runtime_core2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/runtime_core2/CMakeLists.linux.txt b/contrib/libs/hyperscan/runtime_core2/CMakeLists.linux.txt index aae508270d..f15bb90efc 100644 --- a/contrib/libs/hyperscan/runtime_core2/CMakeLists.linux.txt +++ b/contrib/libs/hyperscan/runtime_core2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/runtime_core2/CMakeLists.txt b/contrib/libs/hyperscan/runtime_core2/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/libs/hyperscan/runtime_core2/CMakeLists.txt +++ b/contrib/libs/hyperscan/runtime_core2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/runtime_corei7/CMakeLists.darwin.txt b/contrib/libs/hyperscan/runtime_corei7/CMakeLists.darwin.txt index 77b4d7fd96..44d41a6ed2 100644 --- a/contrib/libs/hyperscan/runtime_corei7/CMakeLists.darwin.txt +++ b/contrib/libs/hyperscan/runtime_corei7/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/runtime_corei7/CMakeLists.linux.txt b/contrib/libs/hyperscan/runtime_corei7/CMakeLists.linux.txt index c4ce3aa484..f7dd264e00 100644 --- a/contrib/libs/hyperscan/runtime_corei7/CMakeLists.linux.txt +++ b/contrib/libs/hyperscan/runtime_corei7/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/hyperscan/runtime_corei7/CMakeLists.txt b/contrib/libs/hyperscan/runtime_corei7/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/libs/hyperscan/runtime_corei7/CMakeLists.txt +++ b/contrib/libs/hyperscan/runtime_corei7/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/icu/CMakeLists.darwin.txt b/contrib/libs/icu/CMakeLists.darwin.txt index b2678bda6c..3a642f7539 100644 --- a/contrib/libs/icu/CMakeLists.darwin.txt +++ b/contrib/libs/icu/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/icu/CMakeLists.linux-aarch64.txt b/contrib/libs/icu/CMakeLists.linux-aarch64.txt index cb95d81a33..29f6fc7900 100644 --- a/contrib/libs/icu/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/icu/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/icu/CMakeLists.linux.txt b/contrib/libs/icu/CMakeLists.linux.txt index cb95d81a33..29f6fc7900 100644 --- a/contrib/libs/icu/CMakeLists.linux.txt +++ b/contrib/libs/icu/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/icu/CMakeLists.txt b/contrib/libs/icu/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/icu/CMakeLists.txt +++ b/contrib/libs/icu/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/jemalloc/CMakeLists.darwin.txt b/contrib/libs/jemalloc/CMakeLists.darwin.txt index 3c09f8f814..9c88fafabb 100644 --- a/contrib/libs/jemalloc/CMakeLists.darwin.txt +++ b/contrib/libs/jemalloc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/jemalloc/CMakeLists.linux-aarch64.txt b/contrib/libs/jemalloc/CMakeLists.linux-aarch64.txt index f6186bfdaf..e6045ed722 100644 --- a/contrib/libs/jemalloc/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/jemalloc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/jemalloc/CMakeLists.linux.txt b/contrib/libs/jemalloc/CMakeLists.linux.txt index f6186bfdaf..e6045ed722 100644 --- a/contrib/libs/jemalloc/CMakeLists.linux.txt +++ b/contrib/libs/jemalloc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/jemalloc/CMakeLists.txt b/contrib/libs/jemalloc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/jemalloc/CMakeLists.txt +++ b/contrib/libs/jemalloc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/jwt-cpp/CMakeLists.darwin.txt b/contrib/libs/jwt-cpp/CMakeLists.darwin.txt index 33aa03b232..84e3c97df1 100644 --- a/contrib/libs/jwt-cpp/CMakeLists.darwin.txt +++ b/contrib/libs/jwt-cpp/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/jwt-cpp/CMakeLists.linux-aarch64.txt b/contrib/libs/jwt-cpp/CMakeLists.linux-aarch64.txt index 9c5ccfd8d0..26b43ddf09 100644 --- a/contrib/libs/jwt-cpp/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/jwt-cpp/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/jwt-cpp/CMakeLists.linux.txt b/contrib/libs/jwt-cpp/CMakeLists.linux.txt index 9c5ccfd8d0..26b43ddf09 100644 --- a/contrib/libs/jwt-cpp/CMakeLists.linux.txt +++ b/contrib/libs/jwt-cpp/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/jwt-cpp/CMakeLists.txt b/contrib/libs/jwt-cpp/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/jwt-cpp/CMakeLists.txt +++ b/contrib/libs/jwt-cpp/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libbz2/CMakeLists.darwin.txt b/contrib/libs/libbz2/CMakeLists.darwin.txt index 1afacd4277..a674fdacd8 100644 --- a/contrib/libs/libbz2/CMakeLists.darwin.txt +++ b/contrib/libs/libbz2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libbz2/CMakeLists.linux-aarch64.txt b/contrib/libs/libbz2/CMakeLists.linux-aarch64.txt index 75dca8382a..b57c0bc280 100644 --- a/contrib/libs/libbz2/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/libbz2/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libbz2/CMakeLists.linux.txt b/contrib/libs/libbz2/CMakeLists.linux.txt index 75dca8382a..b57c0bc280 100644 --- a/contrib/libs/libbz2/CMakeLists.linux.txt +++ b/contrib/libs/libbz2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libbz2/CMakeLists.txt b/contrib/libs/libbz2/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/libbz2/CMakeLists.txt +++ b/contrib/libs/libbz2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libc_compat/CMakeLists.darwin.txt b/contrib/libs/libc_compat/CMakeLists.darwin.txt index 092baa2cd3..99bd55a033 100644 --- a/contrib/libs/libc_compat/CMakeLists.darwin.txt +++ b/contrib/libs/libc_compat/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libc_compat/CMakeLists.linux-aarch64.txt b/contrib/libs/libc_compat/CMakeLists.linux-aarch64.txt index 46b72420a9..1817331c06 100644 --- a/contrib/libs/libc_compat/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/libc_compat/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libc_compat/CMakeLists.linux.txt b/contrib/libs/libc_compat/CMakeLists.linux.txt index 46b72420a9..1817331c06 100644 --- a/contrib/libs/libc_compat/CMakeLists.linux.txt +++ b/contrib/libs/libc_compat/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libc_compat/CMakeLists.txt b/contrib/libs/libc_compat/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/libc_compat/CMakeLists.txt +++ b/contrib/libs/libc_compat/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/CMakeLists.darwin.txt b/contrib/libs/libevent/CMakeLists.darwin.txt index 1090ce426d..6b663371d0 100644 --- a/contrib/libs/libevent/CMakeLists.darwin.txt +++ b/contrib/libs/libevent/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/CMakeLists.linux-aarch64.txt b/contrib/libs/libevent/CMakeLists.linux-aarch64.txt index e7363a38a4..c718ec93e5 100644 --- a/contrib/libs/libevent/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/libevent/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/CMakeLists.linux.txt b/contrib/libs/libevent/CMakeLists.linux.txt index e7363a38a4..c718ec93e5 100644 --- a/contrib/libs/libevent/CMakeLists.linux.txt +++ b/contrib/libs/libevent/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/CMakeLists.txt b/contrib/libs/libevent/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/libevent/CMakeLists.txt +++ b/contrib/libs/libevent/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_core/CMakeLists.darwin.txt b/contrib/libs/libevent/event_core/CMakeLists.darwin.txt index 16c6f11ca5..cfa0c67603 100644 --- a/contrib/libs/libevent/event_core/CMakeLists.darwin.txt +++ b/contrib/libs/libevent/event_core/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_core/CMakeLists.linux-aarch64.txt b/contrib/libs/libevent/event_core/CMakeLists.linux-aarch64.txt index cfa4bd9a13..5ff0597786 100644 --- a/contrib/libs/libevent/event_core/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/libevent/event_core/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_core/CMakeLists.linux.txt b/contrib/libs/libevent/event_core/CMakeLists.linux.txt index cfa4bd9a13..5ff0597786 100644 --- a/contrib/libs/libevent/event_core/CMakeLists.linux.txt +++ b/contrib/libs/libevent/event_core/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_core/CMakeLists.txt b/contrib/libs/libevent/event_core/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/libevent/event_core/CMakeLists.txt +++ b/contrib/libs/libevent/event_core/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_extra/CMakeLists.darwin.txt b/contrib/libs/libevent/event_extra/CMakeLists.darwin.txt index a5200e2c77..9d79fc94be 100644 --- a/contrib/libs/libevent/event_extra/CMakeLists.darwin.txt +++ b/contrib/libs/libevent/event_extra/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_extra/CMakeLists.linux-aarch64.txt b/contrib/libs/libevent/event_extra/CMakeLists.linux-aarch64.txt index 4363b751e9..1867a11940 100644 --- a/contrib/libs/libevent/event_extra/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/libevent/event_extra/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_extra/CMakeLists.linux.txt b/contrib/libs/libevent/event_extra/CMakeLists.linux.txt index 4363b751e9..1867a11940 100644 --- a/contrib/libs/libevent/event_extra/CMakeLists.linux.txt +++ b/contrib/libs/libevent/event_extra/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_extra/CMakeLists.txt b/contrib/libs/libevent/event_extra/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/libevent/event_extra/CMakeLists.txt +++ b/contrib/libs/libevent/event_extra/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_openssl/CMakeLists.darwin.txt b/contrib/libs/libevent/event_openssl/CMakeLists.darwin.txt index 71349f6c0e..449b342b6e 100644 --- a/contrib/libs/libevent/event_openssl/CMakeLists.darwin.txt +++ b/contrib/libs/libevent/event_openssl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_openssl/CMakeLists.linux-aarch64.txt b/contrib/libs/libevent/event_openssl/CMakeLists.linux-aarch64.txt index 815a8df2d9..f521645a4f 100644 --- a/contrib/libs/libevent/event_openssl/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/libevent/event_openssl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_openssl/CMakeLists.linux.txt b/contrib/libs/libevent/event_openssl/CMakeLists.linux.txt index 815a8df2d9..f521645a4f 100644 --- a/contrib/libs/libevent/event_openssl/CMakeLists.linux.txt +++ b/contrib/libs/libevent/event_openssl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_openssl/CMakeLists.txt b/contrib/libs/libevent/event_openssl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/libevent/event_openssl/CMakeLists.txt +++ b/contrib/libs/libevent/event_openssl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_thread/CMakeLists.darwin.txt b/contrib/libs/libevent/event_thread/CMakeLists.darwin.txt index 1fc9aadba4..af1be0df98 100644 --- a/contrib/libs/libevent/event_thread/CMakeLists.darwin.txt +++ b/contrib/libs/libevent/event_thread/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_thread/CMakeLists.linux-aarch64.txt b/contrib/libs/libevent/event_thread/CMakeLists.linux-aarch64.txt index 1b47110cf5..7a9f8e8457 100644 --- a/contrib/libs/libevent/event_thread/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/libevent/event_thread/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_thread/CMakeLists.linux.txt b/contrib/libs/libevent/event_thread/CMakeLists.linux.txt index 1b47110cf5..7a9f8e8457 100644 --- a/contrib/libs/libevent/event_thread/CMakeLists.linux.txt +++ b/contrib/libs/libevent/event_thread/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libevent/event_thread/CMakeLists.txt b/contrib/libs/libevent/event_thread/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/libevent/event_thread/CMakeLists.txt +++ b/contrib/libs/libevent/event_thread/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libunwind/CMakeLists.darwin.txt b/contrib/libs/libunwind/CMakeLists.darwin.txt index d1c662ffa3..47aedfab8f 100644 --- a/contrib/libs/libunwind/CMakeLists.darwin.txt +++ b/contrib/libs/libunwind/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libunwind/CMakeLists.linux-aarch64.txt b/contrib/libs/libunwind/CMakeLists.linux-aarch64.txt index 3b81ff9c6f..80a28161e0 100644 --- a/contrib/libs/libunwind/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/libunwind/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libunwind/CMakeLists.linux.txt b/contrib/libs/libunwind/CMakeLists.linux.txt index 3b81ff9c6f..80a28161e0 100644 --- a/contrib/libs/libunwind/CMakeLists.linux.txt +++ b/contrib/libs/libunwind/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libunwind/CMakeLists.txt b/contrib/libs/libunwind/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/libunwind/CMakeLists.txt +++ b/contrib/libs/libunwind/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/liburing/CMakeLists.linux-aarch64.txt b/contrib/libs/liburing/CMakeLists.linux-aarch64.txt index 9b62d1fb18..936fe87551 100644 --- a/contrib/libs/liburing/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/liburing/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/liburing/CMakeLists.linux.txt b/contrib/libs/liburing/CMakeLists.linux.txt index 9b62d1fb18..936fe87551 100644 --- a/contrib/libs/liburing/CMakeLists.linux.txt +++ b/contrib/libs/liburing/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/liburing/CMakeLists.txt b/contrib/libs/liburing/CMakeLists.txt index fb9f9efce2..1f942d5b2f 100644 --- a/contrib/libs/liburing/CMakeLists.txt +++ b/contrib/libs/liburing/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libxml/CMakeLists.darwin.txt b/contrib/libs/libxml/CMakeLists.darwin.txt index cebe9de336..362707d10c 100644 --- a/contrib/libs/libxml/CMakeLists.darwin.txt +++ b/contrib/libs/libxml/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libxml/CMakeLists.linux-aarch64.txt b/contrib/libs/libxml/CMakeLists.linux-aarch64.txt index 8d1f7ee7bf..5f6b06be96 100644 --- a/contrib/libs/libxml/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/libxml/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libxml/CMakeLists.linux.txt b/contrib/libs/libxml/CMakeLists.linux.txt index 8d1f7ee7bf..5f6b06be96 100644 --- a/contrib/libs/libxml/CMakeLists.linux.txt +++ b/contrib/libs/libxml/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/libxml/CMakeLists.txt b/contrib/libs/libxml/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/libxml/CMakeLists.txt +++ b/contrib/libs/libxml/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/linux-headers/CMakeLists.linux-aarch64.txt b/contrib/libs/linux-headers/CMakeLists.linux-aarch64.txt index 2129d91108..550534bb10 100644 --- a/contrib/libs/linux-headers/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/linux-headers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/linux-headers/CMakeLists.linux.txt b/contrib/libs/linux-headers/CMakeLists.linux.txt index 2129d91108..550534bb10 100644 --- a/contrib/libs/linux-headers/CMakeLists.linux.txt +++ b/contrib/libs/linux-headers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/linux-headers/CMakeLists.txt b/contrib/libs/linux-headers/CMakeLists.txt index fb9f9efce2..1f942d5b2f 100644 --- a/contrib/libs/linux-headers/CMakeLists.txt +++ b/contrib/libs/linux-headers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/linuxvdso/CMakeLists.darwin.txt b/contrib/libs/linuxvdso/CMakeLists.darwin.txt index 6a5ea8b2fa..a8dd8f11c1 100644 --- a/contrib/libs/linuxvdso/CMakeLists.darwin.txt +++ b/contrib/libs/linuxvdso/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/linuxvdso/CMakeLists.linux-aarch64.txt b/contrib/libs/linuxvdso/CMakeLists.linux-aarch64.txt index 7f7f129f19..5d4a882319 100644 --- a/contrib/libs/linuxvdso/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/linuxvdso/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/linuxvdso/CMakeLists.linux.txt b/contrib/libs/linuxvdso/CMakeLists.linux.txt index 7f7f129f19..5d4a882319 100644 --- a/contrib/libs/linuxvdso/CMakeLists.linux.txt +++ b/contrib/libs/linuxvdso/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/linuxvdso/CMakeLists.txt b/contrib/libs/linuxvdso/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/linuxvdso/CMakeLists.txt +++ b/contrib/libs/linuxvdso/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/linuxvdso/original/CMakeLists.linux-aarch64.txt b/contrib/libs/linuxvdso/original/CMakeLists.linux-aarch64.txt index 210bbd2725..58262dd2f8 100644 --- a/contrib/libs/linuxvdso/original/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/linuxvdso/original/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/linuxvdso/original/CMakeLists.linux.txt b/contrib/libs/linuxvdso/original/CMakeLists.linux.txt index 210bbd2725..58262dd2f8 100644 --- a/contrib/libs/linuxvdso/original/CMakeLists.linux.txt +++ b/contrib/libs/linuxvdso/original/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/linuxvdso/original/CMakeLists.txt b/contrib/libs/linuxvdso/original/CMakeLists.txt index fb9f9efce2..1f942d5b2f 100644 --- a/contrib/libs/linuxvdso/original/CMakeLists.txt +++ b/contrib/libs/linuxvdso/original/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/CMakeLists.darwin.txt b/contrib/libs/llvm12/CMakeLists.darwin.txt index ee668ea149..953c61faac 100644 --- a/contrib/libs/llvm12/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/CMakeLists.linux-aarch64.txt index 2ab087b50a..21e1679e2d 100644 --- a/contrib/libs/llvm12/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/CMakeLists.linux.txt b/contrib/libs/llvm12/CMakeLists.linux.txt index 2ab087b50a..21e1679e2d 100644 --- a/contrib/libs/llvm12/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/CMakeLists.txt b/contrib/libs/llvm12/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/CMakeLists.txt +++ b/contrib/libs/llvm12/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/include/CMakeLists.darwin.txt b/contrib/libs/llvm12/include/CMakeLists.darwin.txt index 7efca2d8a6..eade508140 100644 --- a/contrib/libs/llvm12/include/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/include/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/include/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/include/CMakeLists.linux-aarch64.txt index a7ac2b6965..5abe1bfc0f 100644 --- a/contrib/libs/llvm12/include/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/include/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/include/CMakeLists.linux.txt b/contrib/libs/llvm12/include/CMakeLists.linux.txt index a7ac2b6965..5abe1bfc0f 100644 --- a/contrib/libs/llvm12/include/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/include/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/include/CMakeLists.txt b/contrib/libs/llvm12/include/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/include/CMakeLists.txt +++ b/contrib/libs/llvm12/include/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Analysis/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Analysis/CMakeLists.darwin.txt index 6c783513fd..101b7e5b4b 100644 --- a/contrib/libs/llvm12/lib/Analysis/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Analysis/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Analysis/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Analysis/CMakeLists.linux-aarch64.txt index a4c9797e9b..4bfb68209f 100644 --- a/contrib/libs/llvm12/lib/Analysis/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Analysis/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Analysis/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Analysis/CMakeLists.linux.txt index a4c9797e9b..4bfb68209f 100644 --- a/contrib/libs/llvm12/lib/Analysis/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Analysis/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Analysis/CMakeLists.txt b/contrib/libs/llvm12/lib/Analysis/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Analysis/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Analysis/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/AsmParser/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/AsmParser/CMakeLists.darwin.txt index 30b8320233..85019f3a18 100644 --- a/contrib/libs/llvm12/lib/AsmParser/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/AsmParser/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/AsmParser/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/AsmParser/CMakeLists.linux-aarch64.txt index 7e6e4552d9..380be52b65 100644 --- a/contrib/libs/llvm12/lib/AsmParser/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/AsmParser/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/AsmParser/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/AsmParser/CMakeLists.linux.txt index 7e6e4552d9..380be52b65 100644 --- a/contrib/libs/llvm12/lib/AsmParser/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/AsmParser/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/AsmParser/CMakeLists.txt b/contrib/libs/llvm12/lib/AsmParser/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/AsmParser/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/AsmParser/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.darwin.txt index 8477d69c2c..52a618364c 100644 --- a/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.linux-aarch64.txt index ca25812565..aa9df3915e 100644 --- a/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.linux.txt index ca25812565..aa9df3915e 100644 --- a/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.txt b/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/BinaryFormat/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Bitcode/CMakeLists.txt b/contrib/libs/llvm12/lib/Bitcode/CMakeLists.txt index 2c4b89cdf6..9099f95be4 100644 --- a/contrib/libs/llvm12/lib/Bitcode/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Bitcode/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.darwin.txt index 9f462cd48b..970df8463c 100644 --- a/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.linux-aarch64.txt index da76ec8a40..6c4c79addc 100644 --- a/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.linux.txt index da76ec8a40..6c4c79addc 100644 --- a/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.txt b/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Bitcode/Reader/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.darwin.txt index 22bf6146e9..991de58922 100644 --- a/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.linux-aarch64.txt index 8e8ad3b8ea..fe0112efd8 100644 --- a/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.linux.txt index 8e8ad3b8ea..fe0112efd8 100644 --- a/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.txt b/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Bitcode/Writer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Bitstream/CMakeLists.txt b/contrib/libs/llvm12/lib/Bitstream/CMakeLists.txt index cd07ec46be..51e0986406 100644 --- a/contrib/libs/llvm12/lib/Bitstream/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Bitstream/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.darwin.txt index 0c8a5b5a08..9156eb48a3 100644 --- a/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.linux-aarch64.txt index f9f29c1428..143fbffcf1 100644 --- a/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.linux.txt index f9f29c1428..143fbffcf1 100644 --- a/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.txt b/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Bitstream/Reader/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CMakeLists.txt b/contrib/libs/llvm12/lib/CMakeLists.txt index 7eb0a3dec9..d6a1483fa0 100644 --- a/contrib/libs/llvm12/lib/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.darwin.txt index 1792565eba..c6270f2b12 100644 --- a/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.linux-aarch64.txt index d8afa9fef4..c4ce338288 100644 --- a/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.linux.txt index d8afa9fef4..c4ce338288 100644 --- a/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.txt b/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/CodeGen/AsmPrinter/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/CodeGen/CMakeLists.darwin.txt index 1fa45f425d..a4a12bdd79 100644 --- a/contrib/libs/llvm12/lib/CodeGen/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/CodeGen/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/CodeGen/CMakeLists.linux-aarch64.txt index ca685a93c9..aaccbddc1e 100644 --- a/contrib/libs/llvm12/lib/CodeGen/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/CodeGen/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/CodeGen/CMakeLists.linux.txt index ca685a93c9..aaccbddc1e 100644 --- a/contrib/libs/llvm12/lib/CodeGen/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/CodeGen/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/CMakeLists.txt b/contrib/libs/llvm12/lib/CodeGen/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/CodeGen/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/CodeGen/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.darwin.txt index 31a83cc5fd..4de304e9e5 100644 --- a/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.linux-aarch64.txt index 0f0591525d..11e7dfeed2 100644 --- a/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.linux.txt index 0f0591525d..11e7dfeed2 100644 --- a/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.txt b/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/CodeGen/GlobalISel/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.darwin.txt index 83a090d207..aa33478fcb 100644 --- a/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.linux-aarch64.txt index 1bd6da6e0c..2ac575f672 100644 --- a/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.linux.txt index 1bd6da6e0c..2ac575f672 100644 --- a/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.txt b/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/CodeGen/SelectionDAG/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/CMakeLists.txt b/contrib/libs/llvm12/lib/DebugInfo/CMakeLists.txt index 865d0ebbff..a1fc05a892 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.darwin.txt index 89f6fcd901..06c72d45c2 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.linux-aarch64.txt index 32d0b05ad9..9894aaaca8 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.linux.txt index 32d0b05ad9..9894aaaca8 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.txt b/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/CodeView/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.darwin.txt index c2bde98de4..0d4e66376b 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.linux-aarch64.txt index a2f0f64c40..0f365ce61f 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.linux.txt index a2f0f64c40..0f365ce61f 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.txt b/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/DWARF/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.darwin.txt index 12a7faff9d..d0c8e945b8 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.linux-aarch64.txt index 0695bc69aa..1e7f4d6f52 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.linux.txt index 0695bc69aa..1e7f4d6f52 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.txt b/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/MSF/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.darwin.txt index 00eefb23f8..2e05b7d1a5 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.linux-aarch64.txt index 51160c0d22..e8ecb89427 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.linux.txt index 51160c0d22..e8ecb89427 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.txt b/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/PDB/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.darwin.txt index 8c0362cbd4..694bac4fbb 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.linux-aarch64.txt index 42069f0e4d..1e3e44ba98 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.linux.txt index 42069f0e4d..1e3e44ba98 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.txt b/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/DebugInfo/Symbolize/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Demangle/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Demangle/CMakeLists.darwin.txt index 615634641b..59dddc1b05 100644 --- a/contrib/libs/llvm12/lib/Demangle/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Demangle/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Demangle/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Demangle/CMakeLists.linux-aarch64.txt index 6ba1c71417..c441cf0054 100644 --- a/contrib/libs/llvm12/lib/Demangle/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Demangle/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Demangle/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Demangle/CMakeLists.linux.txt index 6ba1c71417..c441cf0054 100644 --- a/contrib/libs/llvm12/lib/Demangle/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Demangle/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Demangle/CMakeLists.txt b/contrib/libs/llvm12/lib/Demangle/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Demangle/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Demangle/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.darwin.txt index 40aae59a90..4bd3652a8a 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.linux-aarch64.txt index a9c1e74f91..a78282292b 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.linux.txt index a9c1e74f91..a78282292b 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.txt b/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.darwin.txt index 9374cfc980..92627895de 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.linux-aarch64.txt index 3f1221bf47..afe6bf9866 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.linux.txt index 3f1221bf47..afe6bf9866 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.txt b/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/MCJIT/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/PerfJITEvents/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/ExecutionEngine/PerfJITEvents/CMakeLists.linux-aarch64.txt index 4159153402..4f66dd8bac 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/PerfJITEvents/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/PerfJITEvents/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/PerfJITEvents/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/ExecutionEngine/PerfJITEvents/CMakeLists.linux.txt index 4159153402..4f66dd8bac 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/PerfJITEvents/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/PerfJITEvents/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/PerfJITEvents/CMakeLists.txt b/contrib/libs/llvm12/lib/ExecutionEngine/PerfJITEvents/CMakeLists.txt index fb9f9efce2..1f942d5b2f 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/PerfJITEvents/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/PerfJITEvents/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.darwin.txt index 117c9bda39..c6c8dbe832 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.linux-aarch64.txt index 1425a48200..9d5aadc840 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.linux.txt index 1425a48200..9d5aadc840 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt b/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Frontend/CMakeLists.txt b/contrib/libs/llvm12/lib/Frontend/CMakeLists.txt index 8c1b874e3c..2f3f84b977 100644 --- a/contrib/libs/llvm12/lib/Frontend/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Frontend/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.darwin.txt index 90104d80ee..e70a533d21 100644 --- a/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.darwin.txt @@ -3,7 +3,7 @@ set_property(SOURCE ${CMAKE_BINARY_DIR}/contrib/libs/llvm12/lib/Frontend/OpenMP/ ) -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.linux-aarch64.txt index daead91057..4785761046 100644 --- a/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.linux-aarch64.txt @@ -3,7 +3,7 @@ set_property(SOURCE ${CMAKE_BINARY_DIR}/contrib/libs/llvm12/lib/Frontend/OpenMP/ ) -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.linux.txt index daead91057..4785761046 100644 --- a/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.linux.txt @@ -3,7 +3,7 @@ set_property(SOURCE ${CMAKE_BINARY_DIR}/contrib/libs/llvm12/lib/Frontend/OpenMP/ ) -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.txt b/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Frontend/OpenMP/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/IR/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/IR/CMakeLists.darwin.txt index f688a03963..a8e2681f35 100644 --- a/contrib/libs/llvm12/lib/IR/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/IR/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/IR/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/IR/CMakeLists.linux-aarch64.txt index 3decbb0315..93ad91673d 100644 --- a/contrib/libs/llvm12/lib/IR/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/IR/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/IR/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/IR/CMakeLists.linux.txt index 3decbb0315..93ad91673d 100644 --- a/contrib/libs/llvm12/lib/IR/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/IR/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/IR/CMakeLists.txt b/contrib/libs/llvm12/lib/IR/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/IR/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/IR/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/IRReader/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/IRReader/CMakeLists.darwin.txt index d84845b15c..135459134d 100644 --- a/contrib/libs/llvm12/lib/IRReader/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/IRReader/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/IRReader/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/IRReader/CMakeLists.linux-aarch64.txt index 4c754713a8..da5319e0a4 100644 --- a/contrib/libs/llvm12/lib/IRReader/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/IRReader/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/IRReader/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/IRReader/CMakeLists.linux.txt index 4c754713a8..da5319e0a4 100644 --- a/contrib/libs/llvm12/lib/IRReader/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/IRReader/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/IRReader/CMakeLists.txt b/contrib/libs/llvm12/lib/IRReader/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/IRReader/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/IRReader/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Linker/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Linker/CMakeLists.darwin.txt index b29c1609f7..f046759251 100644 --- a/contrib/libs/llvm12/lib/Linker/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Linker/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Linker/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Linker/CMakeLists.linux-aarch64.txt index 064d3df807..333cd4ecee 100644 --- a/contrib/libs/llvm12/lib/Linker/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Linker/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Linker/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Linker/CMakeLists.linux.txt index 064d3df807..333cd4ecee 100644 --- a/contrib/libs/llvm12/lib/Linker/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Linker/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Linker/CMakeLists.txt b/contrib/libs/llvm12/lib/Linker/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Linker/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Linker/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/MC/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/MC/CMakeLists.darwin.txt index 9daf06006e..b0b2fe5d25 100644 --- a/contrib/libs/llvm12/lib/MC/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/MC/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/MC/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/MC/CMakeLists.linux-aarch64.txt index 75c9135884..bca4b89bcc 100644 --- a/contrib/libs/llvm12/lib/MC/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/MC/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/MC/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/MC/CMakeLists.linux.txt index 75c9135884..bca4b89bcc 100644 --- a/contrib/libs/llvm12/lib/MC/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/MC/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/MC/CMakeLists.txt b/contrib/libs/llvm12/lib/MC/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/MC/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/MC/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.darwin.txt index 66ecf91691..bbaf570edd 100644 --- a/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.linux-aarch64.txt index af535feda2..e1fa0cdc05 100644 --- a/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.linux.txt index af535feda2..e1fa0cdc05 100644 --- a/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.txt b/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/MC/MCDisassembler/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.darwin.txt index 52fac71e2f..15fd624f84 100644 --- a/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.linux-aarch64.txt index b846e4ceed..fa74aca93c 100644 --- a/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.linux.txt index b846e4ceed..fa74aca93c 100644 --- a/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.txt b/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/MC/MCParser/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Object/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Object/CMakeLists.darwin.txt index c5c3cfe5a8..0e23b0e573 100644 --- a/contrib/libs/llvm12/lib/Object/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Object/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Object/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Object/CMakeLists.linux-aarch64.txt index f3badc2832..21f787929b 100644 --- a/contrib/libs/llvm12/lib/Object/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Object/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Object/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Object/CMakeLists.linux.txt index f3badc2832..21f787929b 100644 --- a/contrib/libs/llvm12/lib/Object/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Object/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Object/CMakeLists.txt b/contrib/libs/llvm12/lib/Object/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Object/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Object/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ProfileData/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/ProfileData/CMakeLists.darwin.txt index ff64be7157..7e0487db0e 100644 --- a/contrib/libs/llvm12/lib/ProfileData/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/ProfileData/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ProfileData/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/ProfileData/CMakeLists.linux-aarch64.txt index 3dcac20d80..7402016b46 100644 --- a/contrib/libs/llvm12/lib/ProfileData/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/ProfileData/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ProfileData/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/ProfileData/CMakeLists.linux.txt index 3dcac20d80..7402016b46 100644 --- a/contrib/libs/llvm12/lib/ProfileData/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/ProfileData/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/ProfileData/CMakeLists.txt b/contrib/libs/llvm12/lib/ProfileData/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/ProfileData/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/ProfileData/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Remarks/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Remarks/CMakeLists.darwin.txt index 53f05fee75..8d4065bb52 100644 --- a/contrib/libs/llvm12/lib/Remarks/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Remarks/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Remarks/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Remarks/CMakeLists.linux-aarch64.txt index e7417aaabd..2e43ec9f87 100644 --- a/contrib/libs/llvm12/lib/Remarks/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Remarks/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Remarks/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Remarks/CMakeLists.linux.txt index e7417aaabd..2e43ec9f87 100644 --- a/contrib/libs/llvm12/lib/Remarks/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Remarks/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Remarks/CMakeLists.txt b/contrib/libs/llvm12/lib/Remarks/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Remarks/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Remarks/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Support/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Support/CMakeLists.darwin.txt index ae79b1cf88..1bc45a919b 100644 --- a/contrib/libs/llvm12/lib/Support/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Support/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Support/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Support/CMakeLists.linux-aarch64.txt index 0164efcf94..5cd7ca3941 100644 --- a/contrib/libs/llvm12/lib/Support/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Support/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Support/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Support/CMakeLists.linux.txt index 0164efcf94..5cd7ca3941 100644 --- a/contrib/libs/llvm12/lib/Support/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Support/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Support/CMakeLists.txt b/contrib/libs/llvm12/lib/Support/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Support/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Support/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/TableGen/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/TableGen/CMakeLists.darwin.txt index bab6d6de0f..b77bc77422 100644 --- a/contrib/libs/llvm12/lib/TableGen/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/TableGen/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/TableGen/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/TableGen/CMakeLists.linux-aarch64.txt index 7e3f39054f..3848197a43 100644 --- a/contrib/libs/llvm12/lib/TableGen/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/TableGen/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/TableGen/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/TableGen/CMakeLists.linux.txt index 7e3f39054f..3848197a43 100644 --- a/contrib/libs/llvm12/lib/TableGen/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/TableGen/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/TableGen/CMakeLists.txt b/contrib/libs/llvm12/lib/TableGen/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/TableGen/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/TableGen/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Target/CMakeLists.darwin.txt index a2d54963f0..25de3f62a3 100644 --- a/contrib/libs/llvm12/lib/Target/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Target/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Target/CMakeLists.linux-aarch64.txt index ec3a2a9755..41b1446f23 100644 --- a/contrib/libs/llvm12/lib/Target/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Target/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Target/CMakeLists.linux.txt index ec3a2a9755..41b1446f23 100644 --- a/contrib/libs/llvm12/lib/Target/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Target/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/CMakeLists.txt b/contrib/libs/llvm12/lib/Target/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Target/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Target/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.darwin.txt index a13f4c42a2..1344b2c2a4 100644 --- a/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.linux-aarch64.txt index 7073a50558..88f3cbf8a9 100644 --- a/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.linux.txt index 7073a50558..88f3cbf8a9 100644 --- a/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.txt b/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Target/X86/AsmParser/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Target/X86/CMakeLists.darwin.txt index ed1fc6d50e..bacb893a95 100644 --- a/contrib/libs/llvm12/lib/Target/X86/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Target/X86/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Target/X86/CMakeLists.linux-aarch64.txt index b8ee2adf0c..f1c69a99b1 100644 --- a/contrib/libs/llvm12/lib/Target/X86/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Target/X86/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Target/X86/CMakeLists.linux.txt index b8ee2adf0c..f1c69a99b1 100644 --- a/contrib/libs/llvm12/lib/Target/X86/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Target/X86/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/CMakeLists.txt b/contrib/libs/llvm12/lib/Target/X86/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Target/X86/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Target/X86/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.darwin.txt index 9e124d334a..975ba11ed6 100644 --- a/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.linux-aarch64.txt index 964e3edf8d..aa264dd78f 100644 --- a/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.linux.txt index 964e3edf8d..aa264dd78f 100644 --- a/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.txt b/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Target/X86/Disassembler/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.darwin.txt index d0444be99d..62c1c02908 100644 --- a/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.linux-aarch64.txt index 48344c965d..fea732436f 100644 --- a/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.linux.txt index 48344c965d..fea732436f 100644 --- a/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.txt b/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Target/X86/MCTargetDesc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.darwin.txt index 28f7c94326..28c1e78157 100644 --- a/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.linux-aarch64.txt index 0cd3e66fc0..3768540a27 100644 --- a/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.linux.txt index 0cd3e66fc0..3768540a27 100644 --- a/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.txt b/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Target/X86/TargetInfo/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/TextAPI/CMakeLists.txt b/contrib/libs/llvm12/lib/TextAPI/CMakeLists.txt index e510446281..735d01209b 100644 --- a/contrib/libs/llvm12/lib/TextAPI/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/TextAPI/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.darwin.txt index 7c70c297e8..d3ce6617cf 100644 --- a/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.linux-aarch64.txt index a289c5e158..f41e56d2dc 100644 --- a/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.linux.txt index a289c5e158..f41e56d2dc 100644 --- a/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.txt b/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/TextAPI/MachO/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.darwin.txt index 3e30286aa8..b5fff03a7b 100644 --- a/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.linux-aarch64.txt index 26fa46743a..69900b8ce6 100644 --- a/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.linux.txt index 26fa46743a..69900b8ce6 100644 --- a/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.txt b/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Transforms/AggressiveInstCombine/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.darwin.txt index edeb6f912f..efa334727d 100644 --- a/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.linux-aarch64.txt index bca75b722f..45d2fe06c9 100644 --- a/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.linux.txt index bca75b722f..45d2fe06c9 100644 --- a/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.txt b/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Transforms/CFGuard/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/CMakeLists.txt b/contrib/libs/llvm12/lib/Transforms/CMakeLists.txt index bc8c9460d5..3b48fccabd 100644 --- a/contrib/libs/llvm12/lib/Transforms/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Transforms/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.darwin.txt index e02b238589..9abb654fe2 100644 --- a/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.linux-aarch64.txt index 15f855c791..23c0dd970e 100644 --- a/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.linux.txt index 15f855c791..23c0dd970e 100644 --- a/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.txt b/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Transforms/IPO/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.darwin.txt index 218dee285f..a76d4da712 100644 --- a/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.linux-aarch64.txt index 0b83aacf0e..1aecd74d9c 100644 --- a/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.linux.txt index 0b83aacf0e..1aecd74d9c 100644 --- a/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.txt b/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Transforms/InstCombine/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.darwin.txt index fa5ea00903..487e4aa32b 100644 --- a/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.linux-aarch64.txt index 19d2a3fb55..98e8bb51a5 100644 --- a/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.linux.txt index 19d2a3fb55..98e8bb51a5 100644 --- a/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.txt b/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Transforms/Instrumentation/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.darwin.txt index 8fba797a80..1c0d716f81 100644 --- a/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.linux-aarch64.txt index 090e6cc769..619f231bed 100644 --- a/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.linux.txt index 090e6cc769..619f231bed 100644 --- a/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.txt b/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Transforms/ObjCARC/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.darwin.txt index 05ed522694..01ccf70c7e 100644 --- a/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.linux-aarch64.txt index 10e165a8ec..48f4aa900c 100644 --- a/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.linux.txt index 10e165a8ec..48f4aa900c 100644 --- a/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.txt b/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Transforms/Scalar/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.darwin.txt index 930eebc853..3ecabe5c74 100644 --- a/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.linux-aarch64.txt index d59c3af2a7..2eba81af2c 100644 --- a/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.linux.txt index d59c3af2a7..2eba81af2c 100644 --- a/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.txt b/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Transforms/Utils/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.darwin.txt b/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.darwin.txt index 423cf3ec48..c9ef32d66f 100644 --- a/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.linux-aarch64.txt index 65af66ab21..53acadaba3 100644 --- a/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.linux.txt b/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.linux.txt index 65af66ab21..53acadaba3 100644 --- a/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.txt b/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.txt +++ b/contrib/libs/llvm12/lib/Transforms/Vectorize/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/utils/CMakeLists.txt b/contrib/libs/llvm12/utils/CMakeLists.txt index 96eb85cbfb..b58ec8b78f 100644 --- a/contrib/libs/llvm12/utils/CMakeLists.txt +++ b/contrib/libs/llvm12/utils/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/utils/TableGen/CMakeLists.darwin.txt b/contrib/libs/llvm12/utils/TableGen/CMakeLists.darwin.txt index a90cbd7db3..d53992ae4c 100644 --- a/contrib/libs/llvm12/utils/TableGen/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/utils/TableGen/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/utils/TableGen/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/utils/TableGen/CMakeLists.linux-aarch64.txt index 2e320c6655..ec4e23dbab 100644 --- a/contrib/libs/llvm12/utils/TableGen/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/utils/TableGen/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/utils/TableGen/CMakeLists.linux.txt b/contrib/libs/llvm12/utils/TableGen/CMakeLists.linux.txt index 8c5c09e065..66fbe453f6 100644 --- a/contrib/libs/llvm12/utils/TableGen/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/utils/TableGen/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/utils/TableGen/CMakeLists.txt b/contrib/libs/llvm12/utils/TableGen/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/utils/TableGen/CMakeLists.txt +++ b/contrib/libs/llvm12/utils/TableGen/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.darwin.txt b/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.darwin.txt index 9da0837500..007e4d7991 100644 --- a/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.darwin.txt +++ b/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.linux-aarch64.txt b/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.linux-aarch64.txt index b8a3b65316..623f4b6585 100644 --- a/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.linux.txt b/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.linux.txt index b8a3b65316..623f4b6585 100644 --- a/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.txt b/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.txt +++ b/contrib/libs/llvm12/utils/TableGen/GlobalISel/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lua/CMakeLists.darwin.txt b/contrib/libs/lua/CMakeLists.darwin.txt index 51c7acb0cb..c90aa7f2a2 100644 --- a/contrib/libs/lua/CMakeLists.darwin.txt +++ b/contrib/libs/lua/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lua/CMakeLists.linux-aarch64.txt b/contrib/libs/lua/CMakeLists.linux-aarch64.txt index ac037c0bf2..382b8b648c 100644 --- a/contrib/libs/lua/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/lua/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lua/CMakeLists.linux.txt b/contrib/libs/lua/CMakeLists.linux.txt index ac037c0bf2..382b8b648c 100644 --- a/contrib/libs/lua/CMakeLists.linux.txt +++ b/contrib/libs/lua/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lua/CMakeLists.txt b/contrib/libs/lua/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/lua/CMakeLists.txt +++ b/contrib/libs/lua/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lz4/CMakeLists.darwin.txt b/contrib/libs/lz4/CMakeLists.darwin.txt index fc2048ab4a..970c719b71 100644 --- a/contrib/libs/lz4/CMakeLists.darwin.txt +++ b/contrib/libs/lz4/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lz4/CMakeLists.linux-aarch64.txt b/contrib/libs/lz4/CMakeLists.linux-aarch64.txt index 8c275f15c3..696aaa0056 100644 --- a/contrib/libs/lz4/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/lz4/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lz4/CMakeLists.linux.txt b/contrib/libs/lz4/CMakeLists.linux.txt index 8c275f15c3..696aaa0056 100644 --- a/contrib/libs/lz4/CMakeLists.linux.txt +++ b/contrib/libs/lz4/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lz4/CMakeLists.txt b/contrib/libs/lz4/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/lz4/CMakeLists.txt +++ b/contrib/libs/lz4/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lzma/CMakeLists.darwin.txt b/contrib/libs/lzma/CMakeLists.darwin.txt index bb12c2a6ad..10fcf59792 100644 --- a/contrib/libs/lzma/CMakeLists.darwin.txt +++ b/contrib/libs/lzma/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lzma/CMakeLists.linux-aarch64.txt b/contrib/libs/lzma/CMakeLists.linux-aarch64.txt index 8f0fef4c35..2afe78cc4c 100644 --- a/contrib/libs/lzma/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/lzma/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lzma/CMakeLists.linux.txt b/contrib/libs/lzma/CMakeLists.linux.txt index 8f0fef4c35..2afe78cc4c 100644 --- a/contrib/libs/lzma/CMakeLists.linux.txt +++ b/contrib/libs/lzma/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lzma/CMakeLists.txt b/contrib/libs/lzma/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/lzma/CMakeLists.txt +++ b/contrib/libs/lzma/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lzmasdk/CMakeLists.darwin.txt b/contrib/libs/lzmasdk/CMakeLists.darwin.txt index 9fe725a161..fa5ab87a58 100644 --- a/contrib/libs/lzmasdk/CMakeLists.darwin.txt +++ b/contrib/libs/lzmasdk/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lzmasdk/CMakeLists.linux-aarch64.txt b/contrib/libs/lzmasdk/CMakeLists.linux-aarch64.txt index d765c5f3fa..446f28a8ed 100644 --- a/contrib/libs/lzmasdk/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/lzmasdk/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lzmasdk/CMakeLists.linux.txt b/contrib/libs/lzmasdk/CMakeLists.linux.txt index d765c5f3fa..446f28a8ed 100644 --- a/contrib/libs/lzmasdk/CMakeLists.linux.txt +++ b/contrib/libs/lzmasdk/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/lzmasdk/CMakeLists.txt b/contrib/libs/lzmasdk/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/lzmasdk/CMakeLists.txt +++ b/contrib/libs/lzmasdk/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/nayuki_md5/CMakeLists.darwin.txt b/contrib/libs/nayuki_md5/CMakeLists.darwin.txt index 900e849144..aa5e1ba2a7 100644 --- a/contrib/libs/nayuki_md5/CMakeLists.darwin.txt +++ b/contrib/libs/nayuki_md5/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/nayuki_md5/CMakeLists.linux-aarch64.txt b/contrib/libs/nayuki_md5/CMakeLists.linux-aarch64.txt index 34e42d9a4f..d0363791bf 100644 --- a/contrib/libs/nayuki_md5/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/nayuki_md5/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/nayuki_md5/CMakeLists.linux.txt b/contrib/libs/nayuki_md5/CMakeLists.linux.txt index 24b1076ecc..805840b5cd 100644 --- a/contrib/libs/nayuki_md5/CMakeLists.linux.txt +++ b/contrib/libs/nayuki_md5/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/nayuki_md5/CMakeLists.txt b/contrib/libs/nayuki_md5/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/nayuki_md5/CMakeLists.txt +++ b/contrib/libs/nayuki_md5/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/nghttp2/CMakeLists.darwin.txt b/contrib/libs/nghttp2/CMakeLists.darwin.txt index 2ca8c3590a..336ab998a5 100644 --- a/contrib/libs/nghttp2/CMakeLists.darwin.txt +++ b/contrib/libs/nghttp2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/nghttp2/CMakeLists.linux-aarch64.txt b/contrib/libs/nghttp2/CMakeLists.linux-aarch64.txt index b734348520..9175f962ee 100644 --- a/contrib/libs/nghttp2/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/nghttp2/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/nghttp2/CMakeLists.linux.txt b/contrib/libs/nghttp2/CMakeLists.linux.txt index b734348520..9175f962ee 100644 --- a/contrib/libs/nghttp2/CMakeLists.linux.txt +++ b/contrib/libs/nghttp2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/nghttp2/CMakeLists.txt b/contrib/libs/nghttp2/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/nghttp2/CMakeLists.txt +++ b/contrib/libs/nghttp2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pcre/CMakeLists.darwin.txt b/contrib/libs/pcre/CMakeLists.darwin.txt index 93c0fd5ad0..6b6416de73 100644 --- a/contrib/libs/pcre/CMakeLists.darwin.txt +++ b/contrib/libs/pcre/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pcre/CMakeLists.linux-aarch64.txt b/contrib/libs/pcre/CMakeLists.linux-aarch64.txt index 1958da410b..a4960da0f8 100644 --- a/contrib/libs/pcre/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/pcre/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pcre/CMakeLists.linux.txt b/contrib/libs/pcre/CMakeLists.linux.txt index 1958da410b..a4960da0f8 100644 --- a/contrib/libs/pcre/CMakeLists.linux.txt +++ b/contrib/libs/pcre/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pcre/CMakeLists.txt b/contrib/libs/pcre/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/pcre/CMakeLists.txt +++ b/contrib/libs/pcre/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pcre/pcre16/CMakeLists.darwin.txt b/contrib/libs/pcre/pcre16/CMakeLists.darwin.txt index 034610a6a4..7c35fe9f7f 100644 --- a/contrib/libs/pcre/pcre16/CMakeLists.darwin.txt +++ b/contrib/libs/pcre/pcre16/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pcre/pcre16/CMakeLists.linux-aarch64.txt b/contrib/libs/pcre/pcre16/CMakeLists.linux-aarch64.txt index ef2735693b..b78003625e 100644 --- a/contrib/libs/pcre/pcre16/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/pcre/pcre16/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pcre/pcre16/CMakeLists.linux.txt b/contrib/libs/pcre/pcre16/CMakeLists.linux.txt index ef2735693b..b78003625e 100644 --- a/contrib/libs/pcre/pcre16/CMakeLists.linux.txt +++ b/contrib/libs/pcre/pcre16/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pcre/pcre16/CMakeLists.txt b/contrib/libs/pcre/pcre16/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/pcre/pcre16/CMakeLists.txt +++ b/contrib/libs/pcre/pcre16/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pcre/pcre32/CMakeLists.darwin.txt b/contrib/libs/pcre/pcre32/CMakeLists.darwin.txt index 9be3912ae8..17a2b52dea 100644 --- a/contrib/libs/pcre/pcre32/CMakeLists.darwin.txt +++ b/contrib/libs/pcre/pcre32/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pcre/pcre32/CMakeLists.linux-aarch64.txt b/contrib/libs/pcre/pcre32/CMakeLists.linux-aarch64.txt index b6db70f66e..68838f4ca3 100644 --- a/contrib/libs/pcre/pcre32/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/pcre/pcre32/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pcre/pcre32/CMakeLists.linux.txt b/contrib/libs/pcre/pcre32/CMakeLists.linux.txt index b6db70f66e..68838f4ca3 100644 --- a/contrib/libs/pcre/pcre32/CMakeLists.linux.txt +++ b/contrib/libs/pcre/pcre32/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pcre/pcre32/CMakeLists.txt b/contrib/libs/pcre/pcre32/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/pcre/pcre32/CMakeLists.txt +++ b/contrib/libs/pcre/pcre32/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pdqsort/CMakeLists.darwin.txt b/contrib/libs/pdqsort/CMakeLists.darwin.txt index 9890d8053d..7041694f05 100644 --- a/contrib/libs/pdqsort/CMakeLists.darwin.txt +++ b/contrib/libs/pdqsort/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pdqsort/CMakeLists.linux-aarch64.txt b/contrib/libs/pdqsort/CMakeLists.linux-aarch64.txt index d83c408865..9824fa0017 100644 --- a/contrib/libs/pdqsort/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/pdqsort/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pdqsort/CMakeLists.linux.txt b/contrib/libs/pdqsort/CMakeLists.linux.txt index d83c408865..9824fa0017 100644 --- a/contrib/libs/pdqsort/CMakeLists.linux.txt +++ b/contrib/libs/pdqsort/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/pdqsort/CMakeLists.txt b/contrib/libs/pdqsort/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/pdqsort/CMakeLists.txt +++ b/contrib/libs/pdqsort/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/CMakeLists.txt b/contrib/libs/poco/CMakeLists.txt index 5ad2ad4720..269a5757fc 100644 --- a/contrib/libs/poco/CMakeLists.txt +++ b/contrib/libs/poco/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Crypto/CMakeLists.darwin.txt b/contrib/libs/poco/Crypto/CMakeLists.darwin.txt index 64fc7aecd0..2a001dfecd 100644 --- a/contrib/libs/poco/Crypto/CMakeLists.darwin.txt +++ b/contrib/libs/poco/Crypto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Crypto/CMakeLists.linux-aarch64.txt b/contrib/libs/poco/Crypto/CMakeLists.linux-aarch64.txt index 045a0ae9bc..8a9cbca8ab 100644 --- a/contrib/libs/poco/Crypto/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/poco/Crypto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Crypto/CMakeLists.linux.txt b/contrib/libs/poco/Crypto/CMakeLists.linux.txt index 045a0ae9bc..8a9cbca8ab 100644 --- a/contrib/libs/poco/Crypto/CMakeLists.linux.txt +++ b/contrib/libs/poco/Crypto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Crypto/CMakeLists.txt b/contrib/libs/poco/Crypto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/poco/Crypto/CMakeLists.txt +++ b/contrib/libs/poco/Crypto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Foundation/CMakeLists.darwin.txt b/contrib/libs/poco/Foundation/CMakeLists.darwin.txt index 143d6ff786..697448dce5 100644 --- a/contrib/libs/poco/Foundation/CMakeLists.darwin.txt +++ b/contrib/libs/poco/Foundation/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Foundation/CMakeLists.linux-aarch64.txt b/contrib/libs/poco/Foundation/CMakeLists.linux-aarch64.txt index 35ed4e6c26..47869129f4 100644 --- a/contrib/libs/poco/Foundation/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/poco/Foundation/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Foundation/CMakeLists.linux.txt b/contrib/libs/poco/Foundation/CMakeLists.linux.txt index 35ed4e6c26..47869129f4 100644 --- a/contrib/libs/poco/Foundation/CMakeLists.linux.txt +++ b/contrib/libs/poco/Foundation/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Foundation/CMakeLists.txt b/contrib/libs/poco/Foundation/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/poco/Foundation/CMakeLists.txt +++ b/contrib/libs/poco/Foundation/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/JSON/CMakeLists.darwin.txt b/contrib/libs/poco/JSON/CMakeLists.darwin.txt index 4785ba8cc3..c3ab9805c2 100644 --- a/contrib/libs/poco/JSON/CMakeLists.darwin.txt +++ b/contrib/libs/poco/JSON/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/JSON/CMakeLists.linux-aarch64.txt b/contrib/libs/poco/JSON/CMakeLists.linux-aarch64.txt index e4b505a171..34ee8bfcc6 100644 --- a/contrib/libs/poco/JSON/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/poco/JSON/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/JSON/CMakeLists.linux.txt b/contrib/libs/poco/JSON/CMakeLists.linux.txt index e4b505a171..34ee8bfcc6 100644 --- a/contrib/libs/poco/JSON/CMakeLists.linux.txt +++ b/contrib/libs/poco/JSON/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/JSON/CMakeLists.txt b/contrib/libs/poco/JSON/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/poco/JSON/CMakeLists.txt +++ b/contrib/libs/poco/JSON/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Net/CMakeLists.darwin.txt b/contrib/libs/poco/Net/CMakeLists.darwin.txt index 8c281d5b75..eaca0ce904 100644 --- a/contrib/libs/poco/Net/CMakeLists.darwin.txt +++ b/contrib/libs/poco/Net/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Net/CMakeLists.linux-aarch64.txt b/contrib/libs/poco/Net/CMakeLists.linux-aarch64.txt index 81c8603485..38f15f1a72 100644 --- a/contrib/libs/poco/Net/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/poco/Net/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Net/CMakeLists.linux.txt b/contrib/libs/poco/Net/CMakeLists.linux.txt index 81c8603485..38f15f1a72 100644 --- a/contrib/libs/poco/Net/CMakeLists.linux.txt +++ b/contrib/libs/poco/Net/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Net/CMakeLists.txt b/contrib/libs/poco/Net/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/poco/Net/CMakeLists.txt +++ b/contrib/libs/poco/Net/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.darwin.txt b/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.darwin.txt index 960bb03639..a1c879873e 100644 --- a/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.darwin.txt +++ b/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.linux-aarch64.txt b/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.linux-aarch64.txt index 7cfbfc9990..a450380aa8 100644 --- a/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.linux.txt b/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.linux.txt index 7cfbfc9990..a450380aa8 100644 --- a/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.linux.txt +++ b/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.txt b/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.txt +++ b/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Util/CMakeLists.darwin.txt b/contrib/libs/poco/Util/CMakeLists.darwin.txt index e826b3a2ee..c023b6b522 100644 --- a/contrib/libs/poco/Util/CMakeLists.darwin.txt +++ b/contrib/libs/poco/Util/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Util/CMakeLists.linux-aarch64.txt b/contrib/libs/poco/Util/CMakeLists.linux-aarch64.txt index b23ba88618..fca40e9796 100644 --- a/contrib/libs/poco/Util/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/poco/Util/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Util/CMakeLists.linux.txt b/contrib/libs/poco/Util/CMakeLists.linux.txt index b23ba88618..fca40e9796 100644 --- a/contrib/libs/poco/Util/CMakeLists.linux.txt +++ b/contrib/libs/poco/Util/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/Util/CMakeLists.txt b/contrib/libs/poco/Util/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/poco/Util/CMakeLists.txt +++ b/contrib/libs/poco/Util/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/XML/CMakeLists.darwin.txt b/contrib/libs/poco/XML/CMakeLists.darwin.txt index 0a2441ea89..1734b06f42 100644 --- a/contrib/libs/poco/XML/CMakeLists.darwin.txt +++ b/contrib/libs/poco/XML/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/XML/CMakeLists.linux-aarch64.txt b/contrib/libs/poco/XML/CMakeLists.linux-aarch64.txt index d92c469cca..6e4c494c02 100644 --- a/contrib/libs/poco/XML/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/poco/XML/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/XML/CMakeLists.linux.txt b/contrib/libs/poco/XML/CMakeLists.linux.txt index d92c469cca..6e4c494c02 100644 --- a/contrib/libs/poco/XML/CMakeLists.linux.txt +++ b/contrib/libs/poco/XML/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/poco/XML/CMakeLists.txt b/contrib/libs/poco/XML/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/poco/XML/CMakeLists.txt +++ b/contrib/libs/poco/XML/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/protobuf/CMakeLists.darwin.txt b/contrib/libs/protobuf/CMakeLists.darwin.txt index 9ba32fb65f..6bc952df1f 100644 --- a/contrib/libs/protobuf/CMakeLists.darwin.txt +++ b/contrib/libs/protobuf/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/protobuf/CMakeLists.linux-aarch64.txt b/contrib/libs/protobuf/CMakeLists.linux-aarch64.txt index ad5a7730e9..3d69f1017f 100644 --- a/contrib/libs/protobuf/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/protobuf/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/protobuf/CMakeLists.linux.txt b/contrib/libs/protobuf/CMakeLists.linux.txt index ad5a7730e9..3d69f1017f 100644 --- a/contrib/libs/protobuf/CMakeLists.linux.txt +++ b/contrib/libs/protobuf/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/protobuf/CMakeLists.txt b/contrib/libs/protobuf/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/protobuf/CMakeLists.txt +++ b/contrib/libs/protobuf/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/protoc/CMakeLists.darwin.txt b/contrib/libs/protoc/CMakeLists.darwin.txt index da2b5ef195..8a58f34f7c 100644 --- a/contrib/libs/protoc/CMakeLists.darwin.txt +++ b/contrib/libs/protoc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/protoc/CMakeLists.linux-aarch64.txt b/contrib/libs/protoc/CMakeLists.linux-aarch64.txt index 6af40d4f51..863f30acaa 100644 --- a/contrib/libs/protoc/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/protoc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/protoc/CMakeLists.linux.txt b/contrib/libs/protoc/CMakeLists.linux.txt index 6af40d4f51..863f30acaa 100644 --- a/contrib/libs/protoc/CMakeLists.linux.txt +++ b/contrib/libs/protoc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/protoc/CMakeLists.txt b/contrib/libs/protoc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/protoc/CMakeLists.txt +++ b/contrib/libs/protoc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/rapidjson/CMakeLists.darwin.txt b/contrib/libs/rapidjson/CMakeLists.darwin.txt index 195ce70ffb..eb8dce44f8 100644 --- a/contrib/libs/rapidjson/CMakeLists.darwin.txt +++ b/contrib/libs/rapidjson/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/rapidjson/CMakeLists.linux-aarch64.txt b/contrib/libs/rapidjson/CMakeLists.linux-aarch64.txt index be8bcf85fe..a6f2faf478 100644 --- a/contrib/libs/rapidjson/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/rapidjson/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/rapidjson/CMakeLists.linux.txt b/contrib/libs/rapidjson/CMakeLists.linux.txt index be8bcf85fe..a6f2faf478 100644 --- a/contrib/libs/rapidjson/CMakeLists.linux.txt +++ b/contrib/libs/rapidjson/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/rapidjson/CMakeLists.txt b/contrib/libs/rapidjson/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/rapidjson/CMakeLists.txt +++ b/contrib/libs/rapidjson/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/re2/CMakeLists.darwin.txt b/contrib/libs/re2/CMakeLists.darwin.txt index 58830840b1..99a1b72429 100644 --- a/contrib/libs/re2/CMakeLists.darwin.txt +++ b/contrib/libs/re2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/re2/CMakeLists.linux-aarch64.txt b/contrib/libs/re2/CMakeLists.linux-aarch64.txt index 28747c5e5e..6b24e0df4b 100644 --- a/contrib/libs/re2/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/re2/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/re2/CMakeLists.linux.txt b/contrib/libs/re2/CMakeLists.linux.txt index 28747c5e5e..6b24e0df4b 100644 --- a/contrib/libs/re2/CMakeLists.linux.txt +++ b/contrib/libs/re2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/re2/CMakeLists.txt b/contrib/libs/re2/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/re2/CMakeLists.txt +++ b/contrib/libs/re2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/snappy/CMakeLists.darwin.txt b/contrib/libs/snappy/CMakeLists.darwin.txt index 4af5a1ac9b..2a32ec6d70 100644 --- a/contrib/libs/snappy/CMakeLists.darwin.txt +++ b/contrib/libs/snappy/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/snappy/CMakeLists.linux-aarch64.txt b/contrib/libs/snappy/CMakeLists.linux-aarch64.txt index e924088a6e..cad80a46e4 100644 --- a/contrib/libs/snappy/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/snappy/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/snappy/CMakeLists.linux.txt b/contrib/libs/snappy/CMakeLists.linux.txt index e924088a6e..cad80a46e4 100644 --- a/contrib/libs/snappy/CMakeLists.linux.txt +++ b/contrib/libs/snappy/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/snappy/CMakeLists.txt b/contrib/libs/snappy/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/snappy/CMakeLists.txt +++ b/contrib/libs/snappy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/sparsehash/CMakeLists.darwin.txt b/contrib/libs/sparsehash/CMakeLists.darwin.txt index 94a30f136d..0de0e50d71 100644 --- a/contrib/libs/sparsehash/CMakeLists.darwin.txt +++ b/contrib/libs/sparsehash/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/sparsehash/CMakeLists.linux-aarch64.txt b/contrib/libs/sparsehash/CMakeLists.linux-aarch64.txt index 860c669346..ddcaf918dc 100644 --- a/contrib/libs/sparsehash/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/sparsehash/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/sparsehash/CMakeLists.linux.txt b/contrib/libs/sparsehash/CMakeLists.linux.txt index 860c669346..ddcaf918dc 100644 --- a/contrib/libs/sparsehash/CMakeLists.linux.txt +++ b/contrib/libs/sparsehash/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/sparsehash/CMakeLists.txt b/contrib/libs/sparsehash/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/sparsehash/CMakeLists.txt +++ b/contrib/libs/sparsehash/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/t1ha/CMakeLists.darwin.txt b/contrib/libs/t1ha/CMakeLists.darwin.txt index 5aab2e8c19..f9c6854b18 100644 --- a/contrib/libs/t1ha/CMakeLists.darwin.txt +++ b/contrib/libs/t1ha/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/t1ha/CMakeLists.linux-aarch64.txt b/contrib/libs/t1ha/CMakeLists.linux-aarch64.txt index ca299cc937..d7267d6036 100644 --- a/contrib/libs/t1ha/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/t1ha/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/t1ha/CMakeLists.linux.txt b/contrib/libs/t1ha/CMakeLists.linux.txt index 35c90d75d1..cd8e87adfd 100644 --- a/contrib/libs/t1ha/CMakeLists.linux.txt +++ b/contrib/libs/t1ha/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/t1ha/CMakeLists.txt b/contrib/libs/t1ha/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/t1ha/CMakeLists.txt +++ b/contrib/libs/t1ha/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/tbb/CMakeLists.darwin.txt b/contrib/libs/tbb/CMakeLists.darwin.txt index 10a6fb56cb..b57642ebf4 100644 --- a/contrib/libs/tbb/CMakeLists.darwin.txt +++ b/contrib/libs/tbb/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/tbb/CMakeLists.linux-aarch64.txt b/contrib/libs/tbb/CMakeLists.linux-aarch64.txt index 1847bc0941..b5646c2de3 100644 --- a/contrib/libs/tbb/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/tbb/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/tbb/CMakeLists.linux.txt b/contrib/libs/tbb/CMakeLists.linux.txt index 4953b0cba3..cc84ba1734 100644 --- a/contrib/libs/tbb/CMakeLists.linux.txt +++ b/contrib/libs/tbb/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/tbb/CMakeLists.txt b/contrib/libs/tbb/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/tbb/CMakeLists.txt +++ b/contrib/libs/tbb/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/tcmalloc/CMakeLists.darwin.txt b/contrib/libs/tcmalloc/CMakeLists.darwin.txt index 7898448e35..daf0950e7c 100644 --- a/contrib/libs/tcmalloc/CMakeLists.darwin.txt +++ b/contrib/libs/tcmalloc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/tcmalloc/CMakeLists.linux-aarch64.txt b/contrib/libs/tcmalloc/CMakeLists.linux-aarch64.txt index 46946bdbb9..3284b67fd4 100644 --- a/contrib/libs/tcmalloc/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/tcmalloc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/tcmalloc/CMakeLists.linux.txt b/contrib/libs/tcmalloc/CMakeLists.linux.txt index c8faac88c9..d593b461a7 100644 --- a/contrib/libs/tcmalloc/CMakeLists.linux.txt +++ b/contrib/libs/tcmalloc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/tcmalloc/CMakeLists.txt b/contrib/libs/tcmalloc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/tcmalloc/CMakeLists.txt +++ b/contrib/libs/tcmalloc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/tcmalloc/malloc_extension/CMakeLists.darwin.txt b/contrib/libs/tcmalloc/malloc_extension/CMakeLists.darwin.txt index 724bc179db..1ac50c58ef 100644 --- a/contrib/libs/tcmalloc/malloc_extension/CMakeLists.darwin.txt +++ b/contrib/libs/tcmalloc/malloc_extension/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/tcmalloc/malloc_extension/CMakeLists.linux-aarch64.txt b/contrib/libs/tcmalloc/malloc_extension/CMakeLists.linux-aarch64.txt index 7893cc2c25..73f0cf0e7c 100644 --- a/contrib/libs/tcmalloc/malloc_extension/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/tcmalloc/malloc_extension/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/tcmalloc/malloc_extension/CMakeLists.linux.txt b/contrib/libs/tcmalloc/malloc_extension/CMakeLists.linux.txt index 7893cc2c25..73f0cf0e7c 100644 --- a/contrib/libs/tcmalloc/malloc_extension/CMakeLists.linux.txt +++ b/contrib/libs/tcmalloc/malloc_extension/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/tcmalloc/malloc_extension/CMakeLists.txt b/contrib/libs/tcmalloc/malloc_extension/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/tcmalloc/malloc_extension/CMakeLists.txt +++ b/contrib/libs/tcmalloc/malloc_extension/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.linux.txt b/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.linux.txt index c948999ba1..78c8390eab 100644 --- a/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.linux.txt +++ b/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.txt b/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.txt index 3c0f983fa5..71e6128d25 100644 --- a/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.txt +++ b/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/utf8proc/CMakeLists.darwin.txt b/contrib/libs/utf8proc/CMakeLists.darwin.txt index bc5eef3a07..b676337a71 100644 --- a/contrib/libs/utf8proc/CMakeLists.darwin.txt +++ b/contrib/libs/utf8proc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/utf8proc/CMakeLists.linux-aarch64.txt b/contrib/libs/utf8proc/CMakeLists.linux-aarch64.txt index 8724c7fc2e..d1ed61d40f 100644 --- a/contrib/libs/utf8proc/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/utf8proc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/utf8proc/CMakeLists.linux.txt b/contrib/libs/utf8proc/CMakeLists.linux.txt index 8724c7fc2e..d1ed61d40f 100644 --- a/contrib/libs/utf8proc/CMakeLists.linux.txt +++ b/contrib/libs/utf8proc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/utf8proc/CMakeLists.txt b/contrib/libs/utf8proc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/utf8proc/CMakeLists.txt +++ b/contrib/libs/utf8proc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/xxhash/CMakeLists.darwin.txt b/contrib/libs/xxhash/CMakeLists.darwin.txt index bb49262cf4..1b87d3be07 100644 --- a/contrib/libs/xxhash/CMakeLists.darwin.txt +++ b/contrib/libs/xxhash/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/xxhash/CMakeLists.linux-aarch64.txt b/contrib/libs/xxhash/CMakeLists.linux-aarch64.txt index a994792cdb..616605bf4d 100644 --- a/contrib/libs/xxhash/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/xxhash/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/xxhash/CMakeLists.linux.txt b/contrib/libs/xxhash/CMakeLists.linux.txt index a994792cdb..616605bf4d 100644 --- a/contrib/libs/xxhash/CMakeLists.linux.txt +++ b/contrib/libs/xxhash/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/xxhash/CMakeLists.txt b/contrib/libs/xxhash/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/xxhash/CMakeLists.txt +++ b/contrib/libs/xxhash/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/yaml-cpp/CMakeLists.darwin.txt b/contrib/libs/yaml-cpp/CMakeLists.darwin.txt index 225cb733ff..e5b20eefab 100644 --- a/contrib/libs/yaml-cpp/CMakeLists.darwin.txt +++ b/contrib/libs/yaml-cpp/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/yaml-cpp/CMakeLists.linux-aarch64.txt b/contrib/libs/yaml-cpp/CMakeLists.linux-aarch64.txt index 54a2ca3707..4daaa9883a 100644 --- a/contrib/libs/yaml-cpp/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/yaml-cpp/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/yaml-cpp/CMakeLists.linux.txt b/contrib/libs/yaml-cpp/CMakeLists.linux.txt index 54a2ca3707..4daaa9883a 100644 --- a/contrib/libs/yaml-cpp/CMakeLists.linux.txt +++ b/contrib/libs/yaml-cpp/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/yaml-cpp/CMakeLists.txt b/contrib/libs/yaml-cpp/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/yaml-cpp/CMakeLists.txt +++ b/contrib/libs/yaml-cpp/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/zstd/CMakeLists.darwin.txt b/contrib/libs/zstd/CMakeLists.darwin.txt index 4a54c7bcb6..bcad584b1d 100644 --- a/contrib/libs/zstd/CMakeLists.darwin.txt +++ b/contrib/libs/zstd/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/zstd/CMakeLists.linux-aarch64.txt b/contrib/libs/zstd/CMakeLists.linux-aarch64.txt index 77068462a2..64a4e0e39e 100644 --- a/contrib/libs/zstd/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/zstd/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/zstd/CMakeLists.linux.txt b/contrib/libs/zstd/CMakeLists.linux.txt index 1a6b6bd346..eddaadd421 100644 --- a/contrib/libs/zstd/CMakeLists.linux.txt +++ b/contrib/libs/zstd/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/zstd/CMakeLists.txt b/contrib/libs/zstd/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/zstd/CMakeLists.txt +++ b/contrib/libs/zstd/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/zstd06/CMakeLists.darwin.txt b/contrib/libs/zstd06/CMakeLists.darwin.txt index 0b64f9e820..c452d164b3 100644 --- a/contrib/libs/zstd06/CMakeLists.darwin.txt +++ b/contrib/libs/zstd06/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/zstd06/CMakeLists.linux-aarch64.txt b/contrib/libs/zstd06/CMakeLists.linux-aarch64.txt index e95af4120c..bbfa2df5f6 100644 --- a/contrib/libs/zstd06/CMakeLists.linux-aarch64.txt +++ b/contrib/libs/zstd06/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/zstd06/CMakeLists.linux.txt b/contrib/libs/zstd06/CMakeLists.linux.txt index e95af4120c..bbfa2df5f6 100644 --- a/contrib/libs/zstd06/CMakeLists.linux.txt +++ b/contrib/libs/zstd06/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/libs/zstd06/CMakeLists.txt b/contrib/libs/zstd06/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/libs/zstd06/CMakeLists.txt +++ b/contrib/libs/zstd06/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/CMakeLists.txt b/contrib/restricted/CMakeLists.txt index 1a4500f168..b5f18eb5e9 100644 --- a/contrib/restricted/CMakeLists.txt +++ b/contrib/restricted/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/CMakeLists.txt index c03b62d32c..b1bf76afbc 100644 --- a/contrib/restricted/abseil-cpp-tstring/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/CMakeLists.txt index 5feb573490..e9b44bd27d 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.darwin.txt index 8fee7e21b4..a85dbb45d3 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.linux-aarch64.txt index b15849308f..a51d5c8880 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.linux.txt index b15849308f..a51d5c8880 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.darwin.txt index f8ac36e9bd..bb2263698d 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.linux-aarch64.txt index ddd2bd92cb..cc575de154 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.linux.txt index ddd2bd92cb..cc575de154 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.darwin.txt index 0f1c6b1b89..e0941979a7 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.linux-aarch64.txt index cd44735b54..23d2c68834 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.linux.txt index cd44735b54..23d2c68834 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.darwin.txt index a791db43b2..fc1fe2c72d 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.linux-aarch64.txt index ac3c764824..8aacf77ee9 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.linux.txt index ac3c764824..8aacf77ee9 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.darwin.txt index d29cb14fd9..a1f6d47793 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.linux-aarch64.txt index 07f960a925..e7af2024c1 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.linux.txt index 07f960a925..e7af2024c1 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.darwin.txt index a8adcc8b42..db89406580 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.linux-aarch64.txt index 4343b7f97b..8d0183896a 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.linux.txt index 4343b7f97b..8d0183896a 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.darwin.txt index e311296372..8bb73fa532 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.linux-aarch64.txt index a13d06c26b..a632a01f09 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.linux.txt index a13d06c26b..a632a01f09 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.darwin.txt index c8845db2e4..1fa7e9da7f 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.linux-aarch64.txt index e10f2f5c80..bb6a283f3b 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.linux.txt index e10f2f5c80..bb6a283f3b 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.darwin.txt index 15d41ecc0f..fe5f71e7b3 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.linux-aarch64.txt index 09a7d9c4b2..0d5e91e9ea 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.linux.txt index 09a7d9c4b2..0d5e91e9ea 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.darwin.txt index 519d4c432b..0739460992 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.linux-aarch64.txt index 48f0651213..e0d6222a2a 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.linux.txt index 48f0651213..e0d6222a2a 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.darwin.txt index 43f98baa1b..e6a57c94b4 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.linux-aarch64.txt index a06e1ecb70..1cad780d72 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.linux.txt index a06e1ecb70..1cad780d72 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.darwin.txt index 9ff46f4391..4a5c1d70a8 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.linux-aarch64.txt index 5df8d357f5..25b6b19b79 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.linux.txt index 5df8d357f5..25b6b19b79 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.darwin.txt index c855380674..13dff69e2e 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.linux-aarch64.txt index 2e3db3c881..dd101a6c03 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.linux.txt index 2e3db3c881..dd101a6c03 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.darwin.txt index 7cd7107302..b5a5211414 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.linux-aarch64.txt index 213b0f50b8..2c7584cab4 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.linux.txt index 213b0f50b8..2c7584cab4 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.darwin.txt index 0cceb64e60..96eb5f0b7b 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.linux-aarch64.txt index f281a3971d..f0818d019d 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.linux.txt index f281a3971d..f0818d019d 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.darwin.txt index 9e7c31937e..c6b37bbf07 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.linux-aarch64.txt index 21d7c670ea..937496efb1 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.linux.txt index 21d7c670ea..937496efb1 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.darwin.txt index ec6db3764b..a5ff3f433a 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.linux-aarch64.txt index 3d5a3c0cca..653bb04f7a 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.linux.txt index 3d5a3c0cca..653bb04f7a 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.txt b/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/CMakeLists.darwin.txt index e2df59ffd5..e89dbed6bf 100644 --- a/contrib/restricted/abseil-cpp/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/CMakeLists.linux-aarch64.txt index 78f7e79c45..9ceeb72bb2 100644 --- a/contrib/restricted/abseil-cpp/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/CMakeLists.linux.txt index 78f7e79c45..9ceeb72bb2 100644 --- a/contrib/restricted/abseil-cpp/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/CMakeLists.txt b/contrib/restricted/abseil-cpp/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/CMakeLists.txt index cb86716db0..f6aaf30d40 100644 --- a/contrib/restricted/abseil-cpp/absl/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.darwin.txt index 58e0590374..535abc7c56 100644 --- a/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.linux-aarch64.txt index ba6c70fa81..e29a80e43d 100644 --- a/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.linux.txt index ba6c70fa81..e29a80e43d 100644 --- a/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/base/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/base/CMakeLists.darwin.txt index dd051d76da..fe6d8a0039 100644 --- a/contrib/restricted/abseil-cpp/absl/base/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/base/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/base/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/base/CMakeLists.linux-aarch64.txt index 0ea1c9533c..033de394e8 100644 --- a/contrib/restricted/abseil-cpp/absl/base/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/base/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/base/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/base/CMakeLists.linux.txt index 0ea1c9533c..033de394e8 100644 --- a/contrib/restricted/abseil-cpp/absl/base/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/base/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/base/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/base/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/base/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/base/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/container/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/container/CMakeLists.darwin.txt index a0760cc376..75acb5986b 100644 --- a/contrib/restricted/abseil-cpp/absl/container/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/container/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/container/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/container/CMakeLists.linux-aarch64.txt index d5480d1efa..47c78b5cc2 100644 --- a/contrib/restricted/abseil-cpp/absl/container/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/container/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/container/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/container/CMakeLists.linux.txt index d5480d1efa..47c78b5cc2 100644 --- a/contrib/restricted/abseil-cpp/absl/container/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/container/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/container/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/container/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/container/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/container/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.darwin.txt index 97f9bdaebf..e1a4a7c43a 100644 --- a/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.linux-aarch64.txt index fef59067ce..a5d0588839 100644 --- a/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.linux.txt index fef59067ce..a5d0588839 100644 --- a/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.darwin.txt index eed5a69152..3a8f6a151a 100644 --- a/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.linux-aarch64.txt index acc600f3c7..0e81facc9e 100644 --- a/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.linux.txt index acc600f3c7..0e81facc9e 100644 --- a/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.darwin.txt index 31ea222c83..e73fa82ef7 100644 --- a/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.linux-aarch64.txt index e81f74c98d..fb49dbcfee 100644 --- a/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.linux.txt index e81f74c98d..fb49dbcfee 100644 --- a/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/functional/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.darwin.txt index 9182b14467..f4868a8167 100644 --- a/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.linux-aarch64.txt index 175a5ea295..8e30c70151 100644 --- a/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.linux.txt index 175a5ea295..8e30c70151 100644 --- a/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.darwin.txt index 81b3787c3c..3235ac4ba5 100644 --- a/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.linux-aarch64.txt index b60878811c..e87b112e2f 100644 --- a/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.linux.txt index b60878811c..e87b112e2f 100644 --- a/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/memory/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.darwin.txt index d1eedebfd8..cba7d55611 100644 --- a/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.linux-aarch64.txt index d95d1f42e8..1bb7f8ea3e 100644 --- a/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.linux.txt index d95d1f42e8..1bb7f8ea3e 100644 --- a/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/meta/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.darwin.txt index a32bb67e9d..3aca43cb0b 100644 --- a/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.linux-aarch64.txt index ad6e62fbe9..5014d2622f 100644 --- a/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.linux.txt index ad6e62fbe9..5014d2622f 100644 --- a/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.darwin.txt index 6f6f92f488..a6854fccbf 100644 --- a/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.linux-aarch64.txt index 9807344372..4804ba8d28 100644 --- a/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.linux.txt index 9807344372..4804ba8d28 100644 --- a/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/random/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/random/CMakeLists.darwin.txt index 93d96b8652..6573c0b834 100644 --- a/contrib/restricted/abseil-cpp/absl/random/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/random/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/random/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/random/CMakeLists.linux-aarch64.txt index ce595a2703..22105fdc50 100644 --- a/contrib/restricted/abseil-cpp/absl/random/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/random/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/random/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/random/CMakeLists.linux.txt index ce595a2703..22105fdc50 100644 --- a/contrib/restricted/abseil-cpp/absl/random/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/random/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/random/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/random/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/random/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/random/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/status/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/status/CMakeLists.darwin.txt index fe715ecf01..2a183dfcd6 100644 --- a/contrib/restricted/abseil-cpp/absl/status/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/status/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/status/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/status/CMakeLists.linux-aarch64.txt index dda032476b..e3ab5c2f7b 100644 --- a/contrib/restricted/abseil-cpp/absl/status/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/status/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/status/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/status/CMakeLists.linux.txt index dda032476b..e3ab5c2f7b 100644 --- a/contrib/restricted/abseil-cpp/absl/status/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/status/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/status/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/status/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/status/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/status/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.darwin.txt index 2b7480bab5..d078efd5fe 100644 --- a/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.linux-aarch64.txt index a110e646b9..65d6539422 100644 --- a/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.linux.txt index a110e646b9..65d6539422 100644 --- a/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.darwin.txt index 61e7c91d84..f1bcc04951 100644 --- a/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.linux-aarch64.txt index 773200acf5..659997038a 100644 --- a/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.linux.txt index 773200acf5..659997038a 100644 --- a/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/time/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/time/CMakeLists.darwin.txt index f5dd6ed063..0100e10d26 100644 --- a/contrib/restricted/abseil-cpp/absl/time/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/time/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/time/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/time/CMakeLists.linux-aarch64.txt index 778fd996f1..3669526eb0 100644 --- a/contrib/restricted/abseil-cpp/absl/time/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/time/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/time/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/time/CMakeLists.linux.txt index 778fd996f1..3669526eb0 100644 --- a/contrib/restricted/abseil-cpp/absl/time/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/time/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/time/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/time/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/time/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/time/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/types/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/types/CMakeLists.darwin.txt index 5eec20f310..20356b19d6 100644 --- a/contrib/restricted/abseil-cpp/absl/types/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/types/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/types/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/types/CMakeLists.linux-aarch64.txt index 902eaa6100..05f571f14a 100644 --- a/contrib/restricted/abseil-cpp/absl/types/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/types/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/types/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/types/CMakeLists.linux.txt index 902eaa6100..05f571f14a 100644 --- a/contrib/restricted/abseil-cpp/absl/types/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/types/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/types/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/types/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/types/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/types/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.darwin.txt b/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.darwin.txt index e16533d219..a2f021177a 100644 --- a/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.darwin.txt +++ b/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.linux-aarch64.txt b/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.linux-aarch64.txt index dbf672bac6..9f8f6c068d 100644 --- a/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.linux.txt index dbf672bac6..9f8f6c068d 100644 --- a/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.linux.txt +++ b/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/utility/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/CMakeLists.txt b/contrib/restricted/aws/CMakeLists.txt index d9e752ac46..87ffccf907 100644 --- a/contrib/restricted/aws/CMakeLists.txt +++ b/contrib/restricted/aws/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-cal/CMakeLists.darwin.txt b/contrib/restricted/aws/aws-c-cal/CMakeLists.darwin.txt index d43300dfe4..9c31860634 100644 --- a/contrib/restricted/aws/aws-c-cal/CMakeLists.darwin.txt +++ b/contrib/restricted/aws/aws-c-cal/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-cal/CMakeLists.linux-aarch64.txt b/contrib/restricted/aws/aws-c-cal/CMakeLists.linux-aarch64.txt index 8d52e0feeb..680cd13da7 100644 --- a/contrib/restricted/aws/aws-c-cal/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/aws/aws-c-cal/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-cal/CMakeLists.linux.txt b/contrib/restricted/aws/aws-c-cal/CMakeLists.linux.txt index 8d52e0feeb..680cd13da7 100644 --- a/contrib/restricted/aws/aws-c-cal/CMakeLists.linux.txt +++ b/contrib/restricted/aws/aws-c-cal/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-cal/CMakeLists.txt b/contrib/restricted/aws/aws-c-cal/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/aws/aws-c-cal/CMakeLists.txt +++ b/contrib/restricted/aws/aws-c-cal/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-common/CMakeLists.darwin.txt b/contrib/restricted/aws/aws-c-common/CMakeLists.darwin.txt index 0a6e1e1d7d..63adc5461c 100644 --- a/contrib/restricted/aws/aws-c-common/CMakeLists.darwin.txt +++ b/contrib/restricted/aws/aws-c-common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-common/CMakeLists.linux-aarch64.txt b/contrib/restricted/aws/aws-c-common/CMakeLists.linux-aarch64.txt index 3109a63725..9fd9236853 100644 --- a/contrib/restricted/aws/aws-c-common/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/aws/aws-c-common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-common/CMakeLists.linux.txt b/contrib/restricted/aws/aws-c-common/CMakeLists.linux.txt index a1741a72d7..f572569133 100644 --- a/contrib/restricted/aws/aws-c-common/CMakeLists.linux.txt +++ b/contrib/restricted/aws/aws-c-common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-common/CMakeLists.txt b/contrib/restricted/aws/aws-c-common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/aws/aws-c-common/CMakeLists.txt +++ b/contrib/restricted/aws/aws-c-common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-event-stream/CMakeLists.darwin.txt b/contrib/restricted/aws/aws-c-event-stream/CMakeLists.darwin.txt index 7a73fab05f..e738f0d04c 100644 --- a/contrib/restricted/aws/aws-c-event-stream/CMakeLists.darwin.txt +++ b/contrib/restricted/aws/aws-c-event-stream/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-event-stream/CMakeLists.linux-aarch64.txt b/contrib/restricted/aws/aws-c-event-stream/CMakeLists.linux-aarch64.txt index 24bd54aa10..56c16206b6 100644 --- a/contrib/restricted/aws/aws-c-event-stream/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/aws/aws-c-event-stream/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-event-stream/CMakeLists.linux.txt b/contrib/restricted/aws/aws-c-event-stream/CMakeLists.linux.txt index 24bd54aa10..56c16206b6 100644 --- a/contrib/restricted/aws/aws-c-event-stream/CMakeLists.linux.txt +++ b/contrib/restricted/aws/aws-c-event-stream/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-event-stream/CMakeLists.txt b/contrib/restricted/aws/aws-c-event-stream/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/aws/aws-c-event-stream/CMakeLists.txt +++ b/contrib/restricted/aws/aws-c-event-stream/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-io/CMakeLists.darwin.txt b/contrib/restricted/aws/aws-c-io/CMakeLists.darwin.txt index 5315cee6d5..536966fbe5 100644 --- a/contrib/restricted/aws/aws-c-io/CMakeLists.darwin.txt +++ b/contrib/restricted/aws/aws-c-io/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-io/CMakeLists.linux-aarch64.txt b/contrib/restricted/aws/aws-c-io/CMakeLists.linux-aarch64.txt index 0b92d0cfa9..b454722933 100644 --- a/contrib/restricted/aws/aws-c-io/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/aws/aws-c-io/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-io/CMakeLists.linux.txt b/contrib/restricted/aws/aws-c-io/CMakeLists.linux.txt index 0b92d0cfa9..b454722933 100644 --- a/contrib/restricted/aws/aws-c-io/CMakeLists.linux.txt +++ b/contrib/restricted/aws/aws-c-io/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-c-io/CMakeLists.txt b/contrib/restricted/aws/aws-c-io/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/aws/aws-c-io/CMakeLists.txt +++ b/contrib/restricted/aws/aws-c-io/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-checksums/CMakeLists.darwin.txt b/contrib/restricted/aws/aws-checksums/CMakeLists.darwin.txt index 08717df1eb..8c953b888a 100644 --- a/contrib/restricted/aws/aws-checksums/CMakeLists.darwin.txt +++ b/contrib/restricted/aws/aws-checksums/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-checksums/CMakeLists.linux-aarch64.txt b/contrib/restricted/aws/aws-checksums/CMakeLists.linux-aarch64.txt index ceb2bf4439..3844f3d615 100644 --- a/contrib/restricted/aws/aws-checksums/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/aws/aws-checksums/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-checksums/CMakeLists.linux.txt b/contrib/restricted/aws/aws-checksums/CMakeLists.linux.txt index ceb2bf4439..3844f3d615 100644 --- a/contrib/restricted/aws/aws-checksums/CMakeLists.linux.txt +++ b/contrib/restricted/aws/aws-checksums/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/aws-checksums/CMakeLists.txt b/contrib/restricted/aws/aws-checksums/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/aws/aws-checksums/CMakeLists.txt +++ b/contrib/restricted/aws/aws-checksums/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/s2n/CMakeLists.darwin.txt b/contrib/restricted/aws/s2n/CMakeLists.darwin.txt index d07abb6bd6..9b0b52a91a 100644 --- a/contrib/restricted/aws/s2n/CMakeLists.darwin.txt +++ b/contrib/restricted/aws/s2n/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/s2n/CMakeLists.linux-aarch64.txt b/contrib/restricted/aws/s2n/CMakeLists.linux-aarch64.txt index c6eeac74d2..bf1fc950d0 100644 --- a/contrib/restricted/aws/s2n/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/aws/s2n/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/s2n/CMakeLists.linux.txt b/contrib/restricted/aws/s2n/CMakeLists.linux.txt index c1c1a63f71..889dcbbbc5 100644 --- a/contrib/restricted/aws/s2n/CMakeLists.linux.txt +++ b/contrib/restricted/aws/s2n/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/aws/s2n/CMakeLists.txt b/contrib/restricted/aws/s2n/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/aws/s2n/CMakeLists.txt +++ b/contrib/restricted/aws/s2n/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/CMakeLists.darwin.txt b/contrib/restricted/boost/CMakeLists.darwin.txt index ab559eeff5..2ce12f636b 100644 --- a/contrib/restricted/boost/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/CMakeLists.linux-aarch64.txt index 3e9f371832..f0f1472a53 100644 --- a/contrib/restricted/boost/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/CMakeLists.linux.txt b/contrib/restricted/boost/CMakeLists.linux.txt index ab559eeff5..2ce12f636b 100644 --- a/contrib/restricted/boost/CMakeLists.linux.txt +++ b/contrib/restricted/boost/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/CMakeLists.txt b/contrib/restricted/boost/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/CMakeLists.txt +++ b/contrib/restricted/boost/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/algorithm/CMakeLists.darwin.txt b/contrib/restricted/boost/algorithm/CMakeLists.darwin.txt index d6981439fa..7601e49d0f 100644 --- a/contrib/restricted/boost/algorithm/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/algorithm/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/algorithm/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/algorithm/CMakeLists.linux-aarch64.txt index c917d55744..ded7dbfbd8 100644 --- a/contrib/restricted/boost/algorithm/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/algorithm/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/algorithm/CMakeLists.linux.txt b/contrib/restricted/boost/algorithm/CMakeLists.linux.txt index c917d55744..ded7dbfbd8 100644 --- a/contrib/restricted/boost/algorithm/CMakeLists.linux.txt +++ b/contrib/restricted/boost/algorithm/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/algorithm/CMakeLists.txt b/contrib/restricted/boost/algorithm/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/algorithm/CMakeLists.txt +++ b/contrib/restricted/boost/algorithm/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/align/CMakeLists.darwin.txt b/contrib/restricted/boost/align/CMakeLists.darwin.txt index 326f1df987..b4f255a0c6 100644 --- a/contrib/restricted/boost/align/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/align/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/align/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/align/CMakeLists.linux-aarch64.txt index 050b85b7c9..e032aaa404 100644 --- a/contrib/restricted/boost/align/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/align/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/align/CMakeLists.linux.txt b/contrib/restricted/boost/align/CMakeLists.linux.txt index 050b85b7c9..e032aaa404 100644 --- a/contrib/restricted/boost/align/CMakeLists.linux.txt +++ b/contrib/restricted/boost/align/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/align/CMakeLists.txt b/contrib/restricted/boost/align/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/align/CMakeLists.txt +++ b/contrib/restricted/boost/align/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/any/CMakeLists.darwin.txt b/contrib/restricted/boost/any/CMakeLists.darwin.txt index 909957431f..946a109665 100644 --- a/contrib/restricted/boost/any/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/any/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/any/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/any/CMakeLists.linux-aarch64.txt index 9e8f6070df..b1d4845050 100644 --- a/contrib/restricted/boost/any/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/any/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/any/CMakeLists.linux.txt b/contrib/restricted/boost/any/CMakeLists.linux.txt index 9e8f6070df..b1d4845050 100644 --- a/contrib/restricted/boost/any/CMakeLists.linux.txt +++ b/contrib/restricted/boost/any/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/any/CMakeLists.txt b/contrib/restricted/boost/any/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/any/CMakeLists.txt +++ b/contrib/restricted/boost/any/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/array/CMakeLists.darwin.txt b/contrib/restricted/boost/array/CMakeLists.darwin.txt index 1030401266..f640cbf516 100644 --- a/contrib/restricted/boost/array/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/array/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/array/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/array/CMakeLists.linux-aarch64.txt index b8928341fa..157f171696 100644 --- a/contrib/restricted/boost/array/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/array/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/array/CMakeLists.linux.txt b/contrib/restricted/boost/array/CMakeLists.linux.txt index b8928341fa..157f171696 100644 --- a/contrib/restricted/boost/array/CMakeLists.linux.txt +++ b/contrib/restricted/boost/array/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/array/CMakeLists.txt b/contrib/restricted/boost/array/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/array/CMakeLists.txt +++ b/contrib/restricted/boost/array/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/asio/CMakeLists.darwin.txt b/contrib/restricted/boost/asio/CMakeLists.darwin.txt index 646ddf760a..74b17e3e1b 100644 --- a/contrib/restricted/boost/asio/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/asio/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/asio/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/asio/CMakeLists.linux-aarch64.txt index 8e52913fd9..0108378f15 100644 --- a/contrib/restricted/boost/asio/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/asio/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/asio/CMakeLists.linux.txt b/contrib/restricted/boost/asio/CMakeLists.linux.txt index 8e52913fd9..0108378f15 100644 --- a/contrib/restricted/boost/asio/CMakeLists.linux.txt +++ b/contrib/restricted/boost/asio/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/asio/CMakeLists.txt b/contrib/restricted/boost/asio/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/asio/CMakeLists.txt +++ b/contrib/restricted/boost/asio/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/assert/CMakeLists.darwin.txt b/contrib/restricted/boost/assert/CMakeLists.darwin.txt index 909438e2eb..0ba173db4f 100644 --- a/contrib/restricted/boost/assert/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/assert/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/assert/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/assert/CMakeLists.linux-aarch64.txt index 12d7d6e4a7..bd55d5ef61 100644 --- a/contrib/restricted/boost/assert/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/assert/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/assert/CMakeLists.linux.txt b/contrib/restricted/boost/assert/CMakeLists.linux.txt index 12d7d6e4a7..bd55d5ef61 100644 --- a/contrib/restricted/boost/assert/CMakeLists.linux.txt +++ b/contrib/restricted/boost/assert/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/assert/CMakeLists.txt b/contrib/restricted/boost/assert/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/assert/CMakeLists.txt +++ b/contrib/restricted/boost/assert/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/atomic/CMakeLists.darwin.txt b/contrib/restricted/boost/atomic/CMakeLists.darwin.txt index 521fec39df..f2b0bfb496 100644 --- a/contrib/restricted/boost/atomic/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/atomic/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/atomic/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/atomic/CMakeLists.linux-aarch64.txt index 52aeb7fe24..1232805143 100644 --- a/contrib/restricted/boost/atomic/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/atomic/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/atomic/CMakeLists.linux.txt b/contrib/restricted/boost/atomic/CMakeLists.linux.txt index f0e9192562..904a1e6ecc 100644 --- a/contrib/restricted/boost/atomic/CMakeLists.linux.txt +++ b/contrib/restricted/boost/atomic/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/atomic/CMakeLists.txt b/contrib/restricted/boost/atomic/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/atomic/CMakeLists.txt +++ b/contrib/restricted/boost/atomic/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/bimap/CMakeLists.darwin.txt b/contrib/restricted/boost/bimap/CMakeLists.darwin.txt index a8901ef07b..c44e09b7d6 100644 --- a/contrib/restricted/boost/bimap/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/bimap/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/bimap/CMakeLists.linux.txt b/contrib/restricted/boost/bimap/CMakeLists.linux.txt index 2cc2d3a5aa..ec170e9cbc 100644 --- a/contrib/restricted/boost/bimap/CMakeLists.linux.txt +++ b/contrib/restricted/boost/bimap/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/bimap/CMakeLists.txt b/contrib/restricted/boost/bimap/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/restricted/boost/bimap/CMakeLists.txt +++ b/contrib/restricted/boost/bimap/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/bind/CMakeLists.darwin.txt b/contrib/restricted/boost/bind/CMakeLists.darwin.txt index f7514deb3c..88c5f9bf7b 100644 --- a/contrib/restricted/boost/bind/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/bind/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/bind/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/bind/CMakeLists.linux-aarch64.txt index cc95e910a3..d77d1b474b 100644 --- a/contrib/restricted/boost/bind/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/bind/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/bind/CMakeLists.linux.txt b/contrib/restricted/boost/bind/CMakeLists.linux.txt index cc95e910a3..d77d1b474b 100644 --- a/contrib/restricted/boost/bind/CMakeLists.linux.txt +++ b/contrib/restricted/boost/bind/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/bind/CMakeLists.txt b/contrib/restricted/boost/bind/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/bind/CMakeLists.txt +++ b/contrib/restricted/boost/bind/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/chrono/CMakeLists.darwin.txt b/contrib/restricted/boost/chrono/CMakeLists.darwin.txt index e1e1dad2a8..818650fded 100644 --- a/contrib/restricted/boost/chrono/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/chrono/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/chrono/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/chrono/CMakeLists.linux-aarch64.txt index 5e70767943..0bc63fbd7f 100644 --- a/contrib/restricted/boost/chrono/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/chrono/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/chrono/CMakeLists.linux.txt b/contrib/restricted/boost/chrono/CMakeLists.linux.txt index 5e70767943..0bc63fbd7f 100644 --- a/contrib/restricted/boost/chrono/CMakeLists.linux.txt +++ b/contrib/restricted/boost/chrono/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/chrono/CMakeLists.txt b/contrib/restricted/boost/chrono/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/chrono/CMakeLists.txt +++ b/contrib/restricted/boost/chrono/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/concept_check/CMakeLists.darwin.txt b/contrib/restricted/boost/concept_check/CMakeLists.darwin.txt index 45811abad1..4bea4830c4 100644 --- a/contrib/restricted/boost/concept_check/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/concept_check/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/concept_check/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/concept_check/CMakeLists.linux-aarch64.txt index e91bd0aee7..e2b6d7b868 100644 --- a/contrib/restricted/boost/concept_check/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/concept_check/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/concept_check/CMakeLists.linux.txt b/contrib/restricted/boost/concept_check/CMakeLists.linux.txt index e91bd0aee7..e2b6d7b868 100644 --- a/contrib/restricted/boost/concept_check/CMakeLists.linux.txt +++ b/contrib/restricted/boost/concept_check/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/concept_check/CMakeLists.txt b/contrib/restricted/boost/concept_check/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/concept_check/CMakeLists.txt +++ b/contrib/restricted/boost/concept_check/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/config/CMakeLists.darwin.txt b/contrib/restricted/boost/config/CMakeLists.darwin.txt index d4faec8643..b3623a130d 100644 --- a/contrib/restricted/boost/config/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/config/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/config/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/config/CMakeLists.linux-aarch64.txt index 2f960dd500..5bebf20e98 100644 --- a/contrib/restricted/boost/config/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/config/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/config/CMakeLists.linux.txt b/contrib/restricted/boost/config/CMakeLists.linux.txt index 2f960dd500..5bebf20e98 100644 --- a/contrib/restricted/boost/config/CMakeLists.linux.txt +++ b/contrib/restricted/boost/config/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/config/CMakeLists.txt b/contrib/restricted/boost/config/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/config/CMakeLists.txt +++ b/contrib/restricted/boost/config/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/container/CMakeLists.darwin.txt b/contrib/restricted/boost/container/CMakeLists.darwin.txt index bc069639a0..a1efaa8df8 100644 --- a/contrib/restricted/boost/container/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/container/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/container/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/container/CMakeLists.linux-aarch64.txt index 5aeaf6ca89..59467d219d 100644 --- a/contrib/restricted/boost/container/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/container/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/container/CMakeLists.linux.txt b/contrib/restricted/boost/container/CMakeLists.linux.txt index 5aeaf6ca89..59467d219d 100644 --- a/contrib/restricted/boost/container/CMakeLists.linux.txt +++ b/contrib/restricted/boost/container/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/container/CMakeLists.txt b/contrib/restricted/boost/container/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/container/CMakeLists.txt +++ b/contrib/restricted/boost/container/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/container_hash/CMakeLists.darwin.txt b/contrib/restricted/boost/container_hash/CMakeLists.darwin.txt index ec94da0d3a..f6ba33a6e9 100644 --- a/contrib/restricted/boost/container_hash/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/container_hash/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/container_hash/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/container_hash/CMakeLists.linux-aarch64.txt index 12de24853b..0e9a7fc390 100644 --- a/contrib/restricted/boost/container_hash/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/container_hash/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/container_hash/CMakeLists.linux.txt b/contrib/restricted/boost/container_hash/CMakeLists.linux.txt index 12de24853b..0e9a7fc390 100644 --- a/contrib/restricted/boost/container_hash/CMakeLists.linux.txt +++ b/contrib/restricted/boost/container_hash/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/container_hash/CMakeLists.txt b/contrib/restricted/boost/container_hash/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/container_hash/CMakeLists.txt +++ b/contrib/restricted/boost/container_hash/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/context/CMakeLists.txt b/contrib/restricted/boost/context/CMakeLists.txt index c51ea1396f..fa61dee9a2 100644 --- a/contrib/restricted/boost/context/CMakeLists.txt +++ b/contrib/restricted/boost/context/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.darwin.txt b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.darwin.txt index c21a82cc15..2d0e3318d0 100644 --- a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux-aarch64.txt index d5e802589a..c8156f04c3 100644 --- a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux.txt b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux.txt index f2fee09c77..c59cfb1515 100644 --- a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux.txt +++ b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.txt b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.txt +++ b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/context/impl_common/CMakeLists.darwin.txt b/contrib/restricted/boost/context/impl_common/CMakeLists.darwin.txt index 16176f4266..6c08263a3b 100644 --- a/contrib/restricted/boost/context/impl_common/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/context/impl_common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/context/impl_common/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/context/impl_common/CMakeLists.linux-aarch64.txt index 8d3c8c70ef..52670b6933 100644 --- a/contrib/restricted/boost/context/impl_common/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/context/impl_common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/context/impl_common/CMakeLists.linux.txt b/contrib/restricted/boost/context/impl_common/CMakeLists.linux.txt index 8d3c8c70ef..52670b6933 100644 --- a/contrib/restricted/boost/context/impl_common/CMakeLists.linux.txt +++ b/contrib/restricted/boost/context/impl_common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/context/impl_common/CMakeLists.txt b/contrib/restricted/boost/context/impl_common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/context/impl_common/CMakeLists.txt +++ b/contrib/restricted/boost/context/impl_common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/conversion/CMakeLists.darwin.txt b/contrib/restricted/boost/conversion/CMakeLists.darwin.txt index 3fded6d96c..f1a53fd123 100644 --- a/contrib/restricted/boost/conversion/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/conversion/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/conversion/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/conversion/CMakeLists.linux-aarch64.txt index 503ffbcec8..ccc6337d05 100644 --- a/contrib/restricted/boost/conversion/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/conversion/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/conversion/CMakeLists.linux.txt b/contrib/restricted/boost/conversion/CMakeLists.linux.txt index 503ffbcec8..ccc6337d05 100644 --- a/contrib/restricted/boost/conversion/CMakeLists.linux.txt +++ b/contrib/restricted/boost/conversion/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/conversion/CMakeLists.txt b/contrib/restricted/boost/conversion/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/conversion/CMakeLists.txt +++ b/contrib/restricted/boost/conversion/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/core/CMakeLists.darwin.txt b/contrib/restricted/boost/core/CMakeLists.darwin.txt index a6e1d86d69..8b4b0f15da 100644 --- a/contrib/restricted/boost/core/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/core/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/core/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/core/CMakeLists.linux-aarch64.txt index 5d83f09ac2..9a1bc62706 100644 --- a/contrib/restricted/boost/core/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/core/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/core/CMakeLists.linux.txt b/contrib/restricted/boost/core/CMakeLists.linux.txt index 5d83f09ac2..9a1bc62706 100644 --- a/contrib/restricted/boost/core/CMakeLists.linux.txt +++ b/contrib/restricted/boost/core/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/core/CMakeLists.txt b/contrib/restricted/boost/core/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/core/CMakeLists.txt +++ b/contrib/restricted/boost/core/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/coroutine/CMakeLists.darwin.txt b/contrib/restricted/boost/coroutine/CMakeLists.darwin.txt index 11112905e6..f002bcd901 100644 --- a/contrib/restricted/boost/coroutine/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/coroutine/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/coroutine/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/coroutine/CMakeLists.linux-aarch64.txt index 9b8026d622..4a6ba8c546 100644 --- a/contrib/restricted/boost/coroutine/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/coroutine/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/coroutine/CMakeLists.linux.txt b/contrib/restricted/boost/coroutine/CMakeLists.linux.txt index 9b8026d622..4a6ba8c546 100644 --- a/contrib/restricted/boost/coroutine/CMakeLists.linux.txt +++ b/contrib/restricted/boost/coroutine/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/coroutine/CMakeLists.txt b/contrib/restricted/boost/coroutine/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/coroutine/CMakeLists.txt +++ b/contrib/restricted/boost/coroutine/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/crc/CMakeLists.darwin.txt b/contrib/restricted/boost/crc/CMakeLists.darwin.txt index 3629d2b911..06b5073397 100644 --- a/contrib/restricted/boost/crc/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/crc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/crc/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/crc/CMakeLists.linux-aarch64.txt index 8ceee52faf..60e4b683df 100644 --- a/contrib/restricted/boost/crc/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/crc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/crc/CMakeLists.linux.txt b/contrib/restricted/boost/crc/CMakeLists.linux.txt index 8ceee52faf..60e4b683df 100644 --- a/contrib/restricted/boost/crc/CMakeLists.linux.txt +++ b/contrib/restricted/boost/crc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/crc/CMakeLists.txt b/contrib/restricted/boost/crc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/crc/CMakeLists.txt +++ b/contrib/restricted/boost/crc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/date_time/CMakeLists.darwin.txt b/contrib/restricted/boost/date_time/CMakeLists.darwin.txt index 4f0af4c874..da90148a57 100644 --- a/contrib/restricted/boost/date_time/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/date_time/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/date_time/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/date_time/CMakeLists.linux-aarch64.txt index ff4b64aaa8..94835f076a 100644 --- a/contrib/restricted/boost/date_time/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/date_time/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/date_time/CMakeLists.linux.txt b/contrib/restricted/boost/date_time/CMakeLists.linux.txt index ff4b64aaa8..94835f076a 100644 --- a/contrib/restricted/boost/date_time/CMakeLists.linux.txt +++ b/contrib/restricted/boost/date_time/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/date_time/CMakeLists.txt b/contrib/restricted/boost/date_time/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/date_time/CMakeLists.txt +++ b/contrib/restricted/boost/date_time/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/describe/CMakeLists.darwin.txt b/contrib/restricted/boost/describe/CMakeLists.darwin.txt index 29ab4ad0c0..baad9670e4 100644 --- a/contrib/restricted/boost/describe/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/describe/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/describe/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/describe/CMakeLists.linux-aarch64.txt index 9a0d0c63f3..4cffd37833 100644 --- a/contrib/restricted/boost/describe/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/describe/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/describe/CMakeLists.linux.txt b/contrib/restricted/boost/describe/CMakeLists.linux.txt index 9a0d0c63f3..4cffd37833 100644 --- a/contrib/restricted/boost/describe/CMakeLists.linux.txt +++ b/contrib/restricted/boost/describe/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/describe/CMakeLists.txt b/contrib/restricted/boost/describe/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/describe/CMakeLists.txt +++ b/contrib/restricted/boost/describe/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/detail/CMakeLists.darwin.txt b/contrib/restricted/boost/detail/CMakeLists.darwin.txt index 494759d6e2..4100f97935 100644 --- a/contrib/restricted/boost/detail/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/detail/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/detail/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/detail/CMakeLists.linux-aarch64.txt index d6555ab93f..a57ff44274 100644 --- a/contrib/restricted/boost/detail/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/detail/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/detail/CMakeLists.linux.txt b/contrib/restricted/boost/detail/CMakeLists.linux.txt index d6555ab93f..a57ff44274 100644 --- a/contrib/restricted/boost/detail/CMakeLists.linux.txt +++ b/contrib/restricted/boost/detail/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/detail/CMakeLists.txt b/contrib/restricted/boost/detail/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/detail/CMakeLists.txt +++ b/contrib/restricted/boost/detail/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/dynamic_bitset/CMakeLists.darwin.txt b/contrib/restricted/boost/dynamic_bitset/CMakeLists.darwin.txt index 9652d17fde..8854d288e8 100644 --- a/contrib/restricted/boost/dynamic_bitset/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/dynamic_bitset/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/dynamic_bitset/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/dynamic_bitset/CMakeLists.linux-aarch64.txt index ce12d42247..1a02ca2150 100644 --- a/contrib/restricted/boost/dynamic_bitset/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/dynamic_bitset/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/dynamic_bitset/CMakeLists.linux.txt b/contrib/restricted/boost/dynamic_bitset/CMakeLists.linux.txt index ce12d42247..1a02ca2150 100644 --- a/contrib/restricted/boost/dynamic_bitset/CMakeLists.linux.txt +++ b/contrib/restricted/boost/dynamic_bitset/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/dynamic_bitset/CMakeLists.txt b/contrib/restricted/boost/dynamic_bitset/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/dynamic_bitset/CMakeLists.txt +++ b/contrib/restricted/boost/dynamic_bitset/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/endian/CMakeLists.darwin.txt b/contrib/restricted/boost/endian/CMakeLists.darwin.txt index b37ca33634..ddf28f75fe 100644 --- a/contrib/restricted/boost/endian/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/endian/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/endian/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/endian/CMakeLists.linux-aarch64.txt index 27cd726244..8a7f037fd7 100644 --- a/contrib/restricted/boost/endian/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/endian/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/endian/CMakeLists.linux.txt b/contrib/restricted/boost/endian/CMakeLists.linux.txt index 27cd726244..8a7f037fd7 100644 --- a/contrib/restricted/boost/endian/CMakeLists.linux.txt +++ b/contrib/restricted/boost/endian/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/endian/CMakeLists.txt b/contrib/restricted/boost/endian/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/endian/CMakeLists.txt +++ b/contrib/restricted/boost/endian/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/exception/CMakeLists.darwin.txt b/contrib/restricted/boost/exception/CMakeLists.darwin.txt index 83a6cec4be..ce717e642c 100644 --- a/contrib/restricted/boost/exception/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/exception/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/exception/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/exception/CMakeLists.linux-aarch64.txt index 90a891e88d..bf09d9952d 100644 --- a/contrib/restricted/boost/exception/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/exception/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/exception/CMakeLists.linux.txt b/contrib/restricted/boost/exception/CMakeLists.linux.txt index 90a891e88d..bf09d9952d 100644 --- a/contrib/restricted/boost/exception/CMakeLists.linux.txt +++ b/contrib/restricted/boost/exception/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/exception/CMakeLists.txt b/contrib/restricted/boost/exception/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/exception/CMakeLists.txt +++ b/contrib/restricted/boost/exception/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/foreach/CMakeLists.darwin.txt b/contrib/restricted/boost/foreach/CMakeLists.darwin.txt index a9aaa60cfd..d2e31c32fc 100644 --- a/contrib/restricted/boost/foreach/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/foreach/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/foreach/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/foreach/CMakeLists.linux-aarch64.txt index a3b280edfa..f1173b51a9 100644 --- a/contrib/restricted/boost/foreach/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/foreach/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/foreach/CMakeLists.linux.txt b/contrib/restricted/boost/foreach/CMakeLists.linux.txt index a3b280edfa..f1173b51a9 100644 --- a/contrib/restricted/boost/foreach/CMakeLists.linux.txt +++ b/contrib/restricted/boost/foreach/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/foreach/CMakeLists.txt b/contrib/restricted/boost/foreach/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/foreach/CMakeLists.txt +++ b/contrib/restricted/boost/foreach/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/format/CMakeLists.darwin.txt b/contrib/restricted/boost/format/CMakeLists.darwin.txt index 3582e0d62c..270e92cb48 100644 --- a/contrib/restricted/boost/format/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/format/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/format/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/format/CMakeLists.linux-aarch64.txt index 41d3c30426..d19c8b9a86 100644 --- a/contrib/restricted/boost/format/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/format/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/format/CMakeLists.linux.txt b/contrib/restricted/boost/format/CMakeLists.linux.txt index 41d3c30426..d19c8b9a86 100644 --- a/contrib/restricted/boost/format/CMakeLists.linux.txt +++ b/contrib/restricted/boost/format/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/format/CMakeLists.txt b/contrib/restricted/boost/format/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/format/CMakeLists.txt +++ b/contrib/restricted/boost/format/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/function/CMakeLists.darwin.txt b/contrib/restricted/boost/function/CMakeLists.darwin.txt index 844a3be533..5eed0832c4 100644 --- a/contrib/restricted/boost/function/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/function/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/function/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/function/CMakeLists.linux-aarch64.txt index 1eb86cf276..a963bc1c02 100644 --- a/contrib/restricted/boost/function/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/function/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/function/CMakeLists.linux.txt b/contrib/restricted/boost/function/CMakeLists.linux.txt index 1eb86cf276..a963bc1c02 100644 --- a/contrib/restricted/boost/function/CMakeLists.linux.txt +++ b/contrib/restricted/boost/function/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/function/CMakeLists.txt b/contrib/restricted/boost/function/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/function/CMakeLists.txt +++ b/contrib/restricted/boost/function/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/function_types/CMakeLists.darwin.txt b/contrib/restricted/boost/function_types/CMakeLists.darwin.txt index 21603334fd..2c618a189f 100644 --- a/contrib/restricted/boost/function_types/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/function_types/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/function_types/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/function_types/CMakeLists.linux-aarch64.txt index 25aa8e52b0..e128b6adff 100644 --- a/contrib/restricted/boost/function_types/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/function_types/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/function_types/CMakeLists.linux.txt b/contrib/restricted/boost/function_types/CMakeLists.linux.txt index 25aa8e52b0..e128b6adff 100644 --- a/contrib/restricted/boost/function_types/CMakeLists.linux.txt +++ b/contrib/restricted/boost/function_types/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/function_types/CMakeLists.txt b/contrib/restricted/boost/function_types/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/function_types/CMakeLists.txt +++ b/contrib/restricted/boost/function_types/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/functional/CMakeLists.darwin.txt b/contrib/restricted/boost/functional/CMakeLists.darwin.txt index 090e361d53..239823acab 100644 --- a/contrib/restricted/boost/functional/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/functional/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/functional/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/functional/CMakeLists.linux-aarch64.txt index 08ffdc1091..baa561be6c 100644 --- a/contrib/restricted/boost/functional/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/functional/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/functional/CMakeLists.linux.txt b/contrib/restricted/boost/functional/CMakeLists.linux.txt index 08ffdc1091..baa561be6c 100644 --- a/contrib/restricted/boost/functional/CMakeLists.linux.txt +++ b/contrib/restricted/boost/functional/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/functional/CMakeLists.txt b/contrib/restricted/boost/functional/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/functional/CMakeLists.txt +++ b/contrib/restricted/boost/functional/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/fusion/CMakeLists.darwin.txt b/contrib/restricted/boost/fusion/CMakeLists.darwin.txt index dc891e04c7..a26f5b12a3 100644 --- a/contrib/restricted/boost/fusion/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/fusion/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/fusion/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/fusion/CMakeLists.linux-aarch64.txt index c27e4dd580..6540394cad 100644 --- a/contrib/restricted/boost/fusion/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/fusion/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/fusion/CMakeLists.linux.txt b/contrib/restricted/boost/fusion/CMakeLists.linux.txt index c27e4dd580..6540394cad 100644 --- a/contrib/restricted/boost/fusion/CMakeLists.linux.txt +++ b/contrib/restricted/boost/fusion/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/fusion/CMakeLists.txt b/contrib/restricted/boost/fusion/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/fusion/CMakeLists.txt +++ b/contrib/restricted/boost/fusion/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/graph/CMakeLists.darwin.txt b/contrib/restricted/boost/graph/CMakeLists.darwin.txt index b2075cc816..ef6546905c 100644 --- a/contrib/restricted/boost/graph/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/graph/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/graph/CMakeLists.linux.txt b/contrib/restricted/boost/graph/CMakeLists.linux.txt index aff7b065f6..59c02cb209 100644 --- a/contrib/restricted/boost/graph/CMakeLists.linux.txt +++ b/contrib/restricted/boost/graph/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/graph/CMakeLists.txt b/contrib/restricted/boost/graph/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/restricted/boost/graph/CMakeLists.txt +++ b/contrib/restricted/boost/graph/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/icl/CMakeLists.darwin.txt b/contrib/restricted/boost/icl/CMakeLists.darwin.txt index f74baa7ede..b6b11aeab9 100644 --- a/contrib/restricted/boost/icl/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/icl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/icl/CMakeLists.linux.txt b/contrib/restricted/boost/icl/CMakeLists.linux.txt index 6e27358bf2..9f4aa50c8f 100644 --- a/contrib/restricted/boost/icl/CMakeLists.linux.txt +++ b/contrib/restricted/boost/icl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/icl/CMakeLists.txt b/contrib/restricted/boost/icl/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/restricted/boost/icl/CMakeLists.txt +++ b/contrib/restricted/boost/icl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/integer/CMakeLists.darwin.txt b/contrib/restricted/boost/integer/CMakeLists.darwin.txt index b071ad8827..b8189c5a7a 100644 --- a/contrib/restricted/boost/integer/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/integer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/integer/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/integer/CMakeLists.linux-aarch64.txt index cb472b2bed..6fad3b6c9e 100644 --- a/contrib/restricted/boost/integer/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/integer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/integer/CMakeLists.linux.txt b/contrib/restricted/boost/integer/CMakeLists.linux.txt index cb472b2bed..6fad3b6c9e 100644 --- a/contrib/restricted/boost/integer/CMakeLists.linux.txt +++ b/contrib/restricted/boost/integer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/integer/CMakeLists.txt b/contrib/restricted/boost/integer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/integer/CMakeLists.txt +++ b/contrib/restricted/boost/integer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/interprocess/CMakeLists.darwin.txt b/contrib/restricted/boost/interprocess/CMakeLists.darwin.txt index f0fe3fc375..f95f9fc6c9 100644 --- a/contrib/restricted/boost/interprocess/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/interprocess/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/interprocess/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/interprocess/CMakeLists.linux-aarch64.txt index d9e726e2b2..75abc5bc49 100644 --- a/contrib/restricted/boost/interprocess/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/interprocess/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/interprocess/CMakeLists.linux.txt b/contrib/restricted/boost/interprocess/CMakeLists.linux.txt index d9e726e2b2..75abc5bc49 100644 --- a/contrib/restricted/boost/interprocess/CMakeLists.linux.txt +++ b/contrib/restricted/boost/interprocess/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/interprocess/CMakeLists.txt b/contrib/restricted/boost/interprocess/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/interprocess/CMakeLists.txt +++ b/contrib/restricted/boost/interprocess/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/intrusive/CMakeLists.darwin.txt b/contrib/restricted/boost/intrusive/CMakeLists.darwin.txt index 957b5d9cef..261b65dc85 100644 --- a/contrib/restricted/boost/intrusive/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/intrusive/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/intrusive/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/intrusive/CMakeLists.linux-aarch64.txt index c9afe6ed84..0f15706c63 100644 --- a/contrib/restricted/boost/intrusive/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/intrusive/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/intrusive/CMakeLists.linux.txt b/contrib/restricted/boost/intrusive/CMakeLists.linux.txt index c9afe6ed84..0f15706c63 100644 --- a/contrib/restricted/boost/intrusive/CMakeLists.linux.txt +++ b/contrib/restricted/boost/intrusive/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/intrusive/CMakeLists.txt b/contrib/restricted/boost/intrusive/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/intrusive/CMakeLists.txt +++ b/contrib/restricted/boost/intrusive/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/io/CMakeLists.darwin.txt b/contrib/restricted/boost/io/CMakeLists.darwin.txt index 6fc3f3c900..4aeba3ef01 100644 --- a/contrib/restricted/boost/io/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/io/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/io/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/io/CMakeLists.linux-aarch64.txt index dc9659fc82..c7e646dfef 100644 --- a/contrib/restricted/boost/io/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/io/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/io/CMakeLists.linux.txt b/contrib/restricted/boost/io/CMakeLists.linux.txt index dc9659fc82..c7e646dfef 100644 --- a/contrib/restricted/boost/io/CMakeLists.linux.txt +++ b/contrib/restricted/boost/io/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/io/CMakeLists.txt b/contrib/restricted/boost/io/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/io/CMakeLists.txt +++ b/contrib/restricted/boost/io/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/iostreams/CMakeLists.darwin.txt b/contrib/restricted/boost/iostreams/CMakeLists.darwin.txt index 4fbf68a9a3..5f3900f0fc 100644 --- a/contrib/restricted/boost/iostreams/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/iostreams/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/iostreams/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/iostreams/CMakeLists.linux-aarch64.txt index 9ae997afc6..7052d16f16 100644 --- a/contrib/restricted/boost/iostreams/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/iostreams/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/iostreams/CMakeLists.linux.txt b/contrib/restricted/boost/iostreams/CMakeLists.linux.txt index 9ae997afc6..7052d16f16 100644 --- a/contrib/restricted/boost/iostreams/CMakeLists.linux.txt +++ b/contrib/restricted/boost/iostreams/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/iostreams/CMakeLists.txt b/contrib/restricted/boost/iostreams/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/iostreams/CMakeLists.txt +++ b/contrib/restricted/boost/iostreams/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/iterator/CMakeLists.darwin.txt b/contrib/restricted/boost/iterator/CMakeLists.darwin.txt index 5729a60cce..df59b473b2 100644 --- a/contrib/restricted/boost/iterator/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/iterator/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/iterator/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/iterator/CMakeLists.linux-aarch64.txt index af00e3c47c..a1ebd81a38 100644 --- a/contrib/restricted/boost/iterator/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/iterator/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/iterator/CMakeLists.linux.txt b/contrib/restricted/boost/iterator/CMakeLists.linux.txt index af00e3c47c..a1ebd81a38 100644 --- a/contrib/restricted/boost/iterator/CMakeLists.linux.txt +++ b/contrib/restricted/boost/iterator/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/iterator/CMakeLists.txt b/contrib/restricted/boost/iterator/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/iterator/CMakeLists.txt +++ b/contrib/restricted/boost/iterator/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/lambda/CMakeLists.darwin.txt b/contrib/restricted/boost/lambda/CMakeLists.darwin.txt index 5045ce6a95..f3556a1958 100644 --- a/contrib/restricted/boost/lambda/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/lambda/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/lambda/CMakeLists.linux.txt b/contrib/restricted/boost/lambda/CMakeLists.linux.txt index a453ce37ba..ba6f725ead 100644 --- a/contrib/restricted/boost/lambda/CMakeLists.linux.txt +++ b/contrib/restricted/boost/lambda/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/lambda/CMakeLists.txt b/contrib/restricted/boost/lambda/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/restricted/boost/lambda/CMakeLists.txt +++ b/contrib/restricted/boost/lambda/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/lexical_cast/CMakeLists.darwin.txt b/contrib/restricted/boost/lexical_cast/CMakeLists.darwin.txt index 261ff4216a..c4aff4db0d 100644 --- a/contrib/restricted/boost/lexical_cast/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/lexical_cast/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/lexical_cast/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/lexical_cast/CMakeLists.linux-aarch64.txt index c2f0df228f..d746f22bef 100644 --- a/contrib/restricted/boost/lexical_cast/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/lexical_cast/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/lexical_cast/CMakeLists.linux.txt b/contrib/restricted/boost/lexical_cast/CMakeLists.linux.txt index c2f0df228f..d746f22bef 100644 --- a/contrib/restricted/boost/lexical_cast/CMakeLists.linux.txt +++ b/contrib/restricted/boost/lexical_cast/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/lexical_cast/CMakeLists.txt b/contrib/restricted/boost/lexical_cast/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/lexical_cast/CMakeLists.txt +++ b/contrib/restricted/boost/lexical_cast/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/locale/CMakeLists.darwin.txt b/contrib/restricted/boost/locale/CMakeLists.darwin.txt index f9069bfa97..5287fd395e 100644 --- a/contrib/restricted/boost/locale/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/locale/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/locale/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/locale/CMakeLists.linux-aarch64.txt index afec940393..435dc56508 100644 --- a/contrib/restricted/boost/locale/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/locale/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/locale/CMakeLists.linux.txt b/contrib/restricted/boost/locale/CMakeLists.linux.txt index afec940393..435dc56508 100644 --- a/contrib/restricted/boost/locale/CMakeLists.linux.txt +++ b/contrib/restricted/boost/locale/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/locale/CMakeLists.txt b/contrib/restricted/boost/locale/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/locale/CMakeLists.txt +++ b/contrib/restricted/boost/locale/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/math/CMakeLists.darwin.txt b/contrib/restricted/boost/math/CMakeLists.darwin.txt index a8bd59a90a..71d5facb39 100644 --- a/contrib/restricted/boost/math/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/math/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/math/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/math/CMakeLists.linux-aarch64.txt index eea0a31cae..b8ed0bead8 100644 --- a/contrib/restricted/boost/math/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/math/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/math/CMakeLists.linux.txt b/contrib/restricted/boost/math/CMakeLists.linux.txt index eea0a31cae..b8ed0bead8 100644 --- a/contrib/restricted/boost/math/CMakeLists.linux.txt +++ b/contrib/restricted/boost/math/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/math/CMakeLists.txt b/contrib/restricted/boost/math/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/math/CMakeLists.txt +++ b/contrib/restricted/boost/math/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/move/CMakeLists.darwin.txt b/contrib/restricted/boost/move/CMakeLists.darwin.txt index 6ea8e336bc..37a8b34d94 100644 --- a/contrib/restricted/boost/move/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/move/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/move/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/move/CMakeLists.linux-aarch64.txt index 8924316e9d..d2a4daa075 100644 --- a/contrib/restricted/boost/move/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/move/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/move/CMakeLists.linux.txt b/contrib/restricted/boost/move/CMakeLists.linux.txt index 8924316e9d..d2a4daa075 100644 --- a/contrib/restricted/boost/move/CMakeLists.linux.txt +++ b/contrib/restricted/boost/move/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/move/CMakeLists.txt b/contrib/restricted/boost/move/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/move/CMakeLists.txt +++ b/contrib/restricted/boost/move/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/mp11/CMakeLists.darwin.txt b/contrib/restricted/boost/mp11/CMakeLists.darwin.txt index 6f0f4e797a..7100a8f570 100644 --- a/contrib/restricted/boost/mp11/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/mp11/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/mp11/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/mp11/CMakeLists.linux-aarch64.txt index 897c1a10e3..88c153c72c 100644 --- a/contrib/restricted/boost/mp11/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/mp11/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/mp11/CMakeLists.linux.txt b/contrib/restricted/boost/mp11/CMakeLists.linux.txt index 897c1a10e3..88c153c72c 100644 --- a/contrib/restricted/boost/mp11/CMakeLists.linux.txt +++ b/contrib/restricted/boost/mp11/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/mp11/CMakeLists.txt b/contrib/restricted/boost/mp11/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/mp11/CMakeLists.txt +++ b/contrib/restricted/boost/mp11/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/mpl/CMakeLists.darwin.txt b/contrib/restricted/boost/mpl/CMakeLists.darwin.txt index cbad9d763d..8b161d3adf 100644 --- a/contrib/restricted/boost/mpl/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/mpl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/mpl/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/mpl/CMakeLists.linux-aarch64.txt index e9910e61ad..2a2813d50c 100644 --- a/contrib/restricted/boost/mpl/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/mpl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/mpl/CMakeLists.linux.txt b/contrib/restricted/boost/mpl/CMakeLists.linux.txt index e9910e61ad..2a2813d50c 100644 --- a/contrib/restricted/boost/mpl/CMakeLists.linux.txt +++ b/contrib/restricted/boost/mpl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/mpl/CMakeLists.txt b/contrib/restricted/boost/mpl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/mpl/CMakeLists.txt +++ b/contrib/restricted/boost/mpl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/multi_array/CMakeLists.darwin.txt b/contrib/restricted/boost/multi_array/CMakeLists.darwin.txt index 32ed6da433..0f36dd5b20 100644 --- a/contrib/restricted/boost/multi_array/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/multi_array/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/multi_array/CMakeLists.linux.txt b/contrib/restricted/boost/multi_array/CMakeLists.linux.txt index 8f37bc8495..a9bf7bfcb3 100644 --- a/contrib/restricted/boost/multi_array/CMakeLists.linux.txt +++ b/contrib/restricted/boost/multi_array/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/multi_array/CMakeLists.txt b/contrib/restricted/boost/multi_array/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/restricted/boost/multi_array/CMakeLists.txt +++ b/contrib/restricted/boost/multi_array/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/multi_index/CMakeLists.darwin.txt b/contrib/restricted/boost/multi_index/CMakeLists.darwin.txt index 0106a2ad7d..e8f6c61e6e 100644 --- a/contrib/restricted/boost/multi_index/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/multi_index/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/multi_index/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/multi_index/CMakeLists.linux-aarch64.txt index aefa4822be..fb769ceb01 100644 --- a/contrib/restricted/boost/multi_index/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/multi_index/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/multi_index/CMakeLists.linux.txt b/contrib/restricted/boost/multi_index/CMakeLists.linux.txt index aefa4822be..fb769ceb01 100644 --- a/contrib/restricted/boost/multi_index/CMakeLists.linux.txt +++ b/contrib/restricted/boost/multi_index/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/multi_index/CMakeLists.txt b/contrib/restricted/boost/multi_index/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/multi_index/CMakeLists.txt +++ b/contrib/restricted/boost/multi_index/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/numeric_conversion/CMakeLists.darwin.txt b/contrib/restricted/boost/numeric_conversion/CMakeLists.darwin.txt index 5fc070b8fb..c4797132e9 100644 --- a/contrib/restricted/boost/numeric_conversion/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/numeric_conversion/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/numeric_conversion/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/numeric_conversion/CMakeLists.linux-aarch64.txt index e357d3b792..46d33c5f9d 100644 --- a/contrib/restricted/boost/numeric_conversion/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/numeric_conversion/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/numeric_conversion/CMakeLists.linux.txt b/contrib/restricted/boost/numeric_conversion/CMakeLists.linux.txt index e357d3b792..46d33c5f9d 100644 --- a/contrib/restricted/boost/numeric_conversion/CMakeLists.linux.txt +++ b/contrib/restricted/boost/numeric_conversion/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/numeric_conversion/CMakeLists.txt b/contrib/restricted/boost/numeric_conversion/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/numeric_conversion/CMakeLists.txt +++ b/contrib/restricted/boost/numeric_conversion/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/optional/CMakeLists.darwin.txt b/contrib/restricted/boost/optional/CMakeLists.darwin.txt index 0d26f48531..b94f64d5c4 100644 --- a/contrib/restricted/boost/optional/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/optional/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/optional/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/optional/CMakeLists.linux-aarch64.txt index e2ba8bc776..0bf5a6292d 100644 --- a/contrib/restricted/boost/optional/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/optional/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/optional/CMakeLists.linux.txt b/contrib/restricted/boost/optional/CMakeLists.linux.txt index e2ba8bc776..0bf5a6292d 100644 --- a/contrib/restricted/boost/optional/CMakeLists.linux.txt +++ b/contrib/restricted/boost/optional/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/optional/CMakeLists.txt b/contrib/restricted/boost/optional/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/optional/CMakeLists.txt +++ b/contrib/restricted/boost/optional/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/parameter/CMakeLists.darwin.txt b/contrib/restricted/boost/parameter/CMakeLists.darwin.txt index c1a655382b..7aad728341 100644 --- a/contrib/restricted/boost/parameter/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/parameter/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/parameter/CMakeLists.linux.txt b/contrib/restricted/boost/parameter/CMakeLists.linux.txt index 024b5dbef7..d5bb0e8b6e 100644 --- a/contrib/restricted/boost/parameter/CMakeLists.linux.txt +++ b/contrib/restricted/boost/parameter/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/parameter/CMakeLists.txt b/contrib/restricted/boost/parameter/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/restricted/boost/parameter/CMakeLists.txt +++ b/contrib/restricted/boost/parameter/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/phoenix/CMakeLists.darwin.txt b/contrib/restricted/boost/phoenix/CMakeLists.darwin.txt index 79782ad58b..7bf8181aa5 100644 --- a/contrib/restricted/boost/phoenix/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/phoenix/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/phoenix/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/phoenix/CMakeLists.linux-aarch64.txt index 1fe1a631e5..80062339a3 100644 --- a/contrib/restricted/boost/phoenix/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/phoenix/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/phoenix/CMakeLists.linux.txt b/contrib/restricted/boost/phoenix/CMakeLists.linux.txt index 1fe1a631e5..80062339a3 100644 --- a/contrib/restricted/boost/phoenix/CMakeLists.linux.txt +++ b/contrib/restricted/boost/phoenix/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/phoenix/CMakeLists.txt b/contrib/restricted/boost/phoenix/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/phoenix/CMakeLists.txt +++ b/contrib/restricted/boost/phoenix/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/pool/CMakeLists.darwin.txt b/contrib/restricted/boost/pool/CMakeLists.darwin.txt index e2e15aa542..a0e50e5cde 100644 --- a/contrib/restricted/boost/pool/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/pool/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/pool/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/pool/CMakeLists.linux-aarch64.txt index b522ec0d4d..a5d127cffb 100644 --- a/contrib/restricted/boost/pool/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/pool/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/pool/CMakeLists.linux.txt b/contrib/restricted/boost/pool/CMakeLists.linux.txt index b522ec0d4d..a5d127cffb 100644 --- a/contrib/restricted/boost/pool/CMakeLists.linux.txt +++ b/contrib/restricted/boost/pool/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/pool/CMakeLists.txt b/contrib/restricted/boost/pool/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/pool/CMakeLists.txt +++ b/contrib/restricted/boost/pool/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/predef/CMakeLists.darwin.txt b/contrib/restricted/boost/predef/CMakeLists.darwin.txt index 05a1f70216..c55eab9d0f 100644 --- a/contrib/restricted/boost/predef/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/predef/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/predef/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/predef/CMakeLists.linux-aarch64.txt index eadec50a06..a0087e3f0d 100644 --- a/contrib/restricted/boost/predef/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/predef/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/predef/CMakeLists.linux.txt b/contrib/restricted/boost/predef/CMakeLists.linux.txt index eadec50a06..a0087e3f0d 100644 --- a/contrib/restricted/boost/predef/CMakeLists.linux.txt +++ b/contrib/restricted/boost/predef/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/predef/CMakeLists.txt b/contrib/restricted/boost/predef/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/predef/CMakeLists.txt +++ b/contrib/restricted/boost/predef/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/preprocessor/CMakeLists.darwin.txt b/contrib/restricted/boost/preprocessor/CMakeLists.darwin.txt index 237b030610..7df51769d9 100644 --- a/contrib/restricted/boost/preprocessor/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/preprocessor/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/preprocessor/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/preprocessor/CMakeLists.linux-aarch64.txt index aaac164521..e6e835b5ad 100644 --- a/contrib/restricted/boost/preprocessor/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/preprocessor/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/preprocessor/CMakeLists.linux.txt b/contrib/restricted/boost/preprocessor/CMakeLists.linux.txt index aaac164521..e6e835b5ad 100644 --- a/contrib/restricted/boost/preprocessor/CMakeLists.linux.txt +++ b/contrib/restricted/boost/preprocessor/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/preprocessor/CMakeLists.txt b/contrib/restricted/boost/preprocessor/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/preprocessor/CMakeLists.txt +++ b/contrib/restricted/boost/preprocessor/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/program_options/CMakeLists.darwin.txt b/contrib/restricted/boost/program_options/CMakeLists.darwin.txt index e8458ebf7d..e6d6184a47 100644 --- a/contrib/restricted/boost/program_options/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/program_options/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/program_options/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/program_options/CMakeLists.linux-aarch64.txt index f1386f26b3..ea86a32d2a 100644 --- a/contrib/restricted/boost/program_options/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/program_options/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/program_options/CMakeLists.linux.txt b/contrib/restricted/boost/program_options/CMakeLists.linux.txt index f1386f26b3..ea86a32d2a 100644 --- a/contrib/restricted/boost/program_options/CMakeLists.linux.txt +++ b/contrib/restricted/boost/program_options/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/program_options/CMakeLists.txt b/contrib/restricted/boost/program_options/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/program_options/CMakeLists.txt +++ b/contrib/restricted/boost/program_options/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/property_map/CMakeLists.darwin.txt b/contrib/restricted/boost/property_map/CMakeLists.darwin.txt index b7c60d2dc7..d49456c891 100644 --- a/contrib/restricted/boost/property_map/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/property_map/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/property_map/CMakeLists.linux.txt b/contrib/restricted/boost/property_map/CMakeLists.linux.txt index e85695aecc..cfb3bee945 100644 --- a/contrib/restricted/boost/property_map/CMakeLists.linux.txt +++ b/contrib/restricted/boost/property_map/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/property_map/CMakeLists.txt b/contrib/restricted/boost/property_map/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/restricted/boost/property_map/CMakeLists.txt +++ b/contrib/restricted/boost/property_map/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/property_tree/CMakeLists.darwin.txt b/contrib/restricted/boost/property_tree/CMakeLists.darwin.txt index 3295bdbf89..57f107d22d 100644 --- a/contrib/restricted/boost/property_tree/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/property_tree/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/property_tree/CMakeLists.linux.txt b/contrib/restricted/boost/property_tree/CMakeLists.linux.txt index 472ad4c0d5..b64b977a64 100644 --- a/contrib/restricted/boost/property_tree/CMakeLists.linux.txt +++ b/contrib/restricted/boost/property_tree/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/property_tree/CMakeLists.txt b/contrib/restricted/boost/property_tree/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/restricted/boost/property_tree/CMakeLists.txt +++ b/contrib/restricted/boost/property_tree/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/proto/CMakeLists.darwin.txt b/contrib/restricted/boost/proto/CMakeLists.darwin.txt index fd2d65c3f9..370165e4ff 100644 --- a/contrib/restricted/boost/proto/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/proto/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/proto/CMakeLists.linux-aarch64.txt index f6a4d6728d..8fa3b296b2 100644 --- a/contrib/restricted/boost/proto/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/proto/CMakeLists.linux.txt b/contrib/restricted/boost/proto/CMakeLists.linux.txt index f6a4d6728d..8fa3b296b2 100644 --- a/contrib/restricted/boost/proto/CMakeLists.linux.txt +++ b/contrib/restricted/boost/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/proto/CMakeLists.txt b/contrib/restricted/boost/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/proto/CMakeLists.txt +++ b/contrib/restricted/boost/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/random/CMakeLists.darwin.txt b/contrib/restricted/boost/random/CMakeLists.darwin.txt index ef23430088..fbaeddaaa0 100644 --- a/contrib/restricted/boost/random/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/random/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/random/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/random/CMakeLists.linux-aarch64.txt index 43993d3aaf..dd72204f90 100644 --- a/contrib/restricted/boost/random/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/random/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/random/CMakeLists.linux.txt b/contrib/restricted/boost/random/CMakeLists.linux.txt index 43993d3aaf..dd72204f90 100644 --- a/contrib/restricted/boost/random/CMakeLists.linux.txt +++ b/contrib/restricted/boost/random/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/random/CMakeLists.txt b/contrib/restricted/boost/random/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/random/CMakeLists.txt +++ b/contrib/restricted/boost/random/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/range/CMakeLists.darwin.txt b/contrib/restricted/boost/range/CMakeLists.darwin.txt index dde55caac6..eadd2f290c 100644 --- a/contrib/restricted/boost/range/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/range/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/range/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/range/CMakeLists.linux-aarch64.txt index d4f7793f84..a97889d7f6 100644 --- a/contrib/restricted/boost/range/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/range/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/range/CMakeLists.linux.txt b/contrib/restricted/boost/range/CMakeLists.linux.txt index d4f7793f84..a97889d7f6 100644 --- a/contrib/restricted/boost/range/CMakeLists.linux.txt +++ b/contrib/restricted/boost/range/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/range/CMakeLists.txt b/contrib/restricted/boost/range/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/range/CMakeLists.txt +++ b/contrib/restricted/boost/range/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/ratio/CMakeLists.darwin.txt b/contrib/restricted/boost/ratio/CMakeLists.darwin.txt index a83b2db714..7171c49b08 100644 --- a/contrib/restricted/boost/ratio/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/ratio/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/ratio/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/ratio/CMakeLists.linux-aarch64.txt index b5753d77ea..90cac9ef7a 100644 --- a/contrib/restricted/boost/ratio/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/ratio/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/ratio/CMakeLists.linux.txt b/contrib/restricted/boost/ratio/CMakeLists.linux.txt index b5753d77ea..90cac9ef7a 100644 --- a/contrib/restricted/boost/ratio/CMakeLists.linux.txt +++ b/contrib/restricted/boost/ratio/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/ratio/CMakeLists.txt b/contrib/restricted/boost/ratio/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/ratio/CMakeLists.txt +++ b/contrib/restricted/boost/ratio/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/rational/CMakeLists.darwin.txt b/contrib/restricted/boost/rational/CMakeLists.darwin.txt index 4c4ddfe8e5..c4d92a21a6 100644 --- a/contrib/restricted/boost/rational/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/rational/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/rational/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/rational/CMakeLists.linux-aarch64.txt index b42caeeba8..61fd5149ab 100644 --- a/contrib/restricted/boost/rational/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/rational/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/rational/CMakeLists.linux.txt b/contrib/restricted/boost/rational/CMakeLists.linux.txt index b42caeeba8..61fd5149ab 100644 --- a/contrib/restricted/boost/rational/CMakeLists.linux.txt +++ b/contrib/restricted/boost/rational/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/rational/CMakeLists.txt b/contrib/restricted/boost/rational/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/rational/CMakeLists.txt +++ b/contrib/restricted/boost/rational/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/regex/CMakeLists.darwin.txt b/contrib/restricted/boost/regex/CMakeLists.darwin.txt index 104c40ccbf..7249a02715 100644 --- a/contrib/restricted/boost/regex/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/regex/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/regex/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/regex/CMakeLists.linux-aarch64.txt index cf95fe3f49..dae13bda83 100644 --- a/contrib/restricted/boost/regex/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/regex/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/regex/CMakeLists.linux.txt b/contrib/restricted/boost/regex/CMakeLists.linux.txt index cf95fe3f49..dae13bda83 100644 --- a/contrib/restricted/boost/regex/CMakeLists.linux.txt +++ b/contrib/restricted/boost/regex/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/regex/CMakeLists.txt b/contrib/restricted/boost/regex/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/regex/CMakeLists.txt +++ b/contrib/restricted/boost/regex/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/serialization/CMakeLists.darwin.txt b/contrib/restricted/boost/serialization/CMakeLists.darwin.txt index 2f331f669d..9e600c2b80 100644 --- a/contrib/restricted/boost/serialization/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/serialization/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/serialization/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/serialization/CMakeLists.linux-aarch64.txt index 2e07d810b0..9ac87d57db 100644 --- a/contrib/restricted/boost/serialization/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/serialization/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/serialization/CMakeLists.linux.txt b/contrib/restricted/boost/serialization/CMakeLists.linux.txt index 2e07d810b0..9ac87d57db 100644 --- a/contrib/restricted/boost/serialization/CMakeLists.linux.txt +++ b/contrib/restricted/boost/serialization/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/serialization/CMakeLists.txt b/contrib/restricted/boost/serialization/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/serialization/CMakeLists.txt +++ b/contrib/restricted/boost/serialization/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/smart_ptr/CMakeLists.darwin.txt b/contrib/restricted/boost/smart_ptr/CMakeLists.darwin.txt index 56e02aa353..e13c238580 100644 --- a/contrib/restricted/boost/smart_ptr/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/smart_ptr/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/smart_ptr/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/smart_ptr/CMakeLists.linux-aarch64.txt index 8db35ccd05..1c30f857e3 100644 --- a/contrib/restricted/boost/smart_ptr/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/smart_ptr/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/smart_ptr/CMakeLists.linux.txt b/contrib/restricted/boost/smart_ptr/CMakeLists.linux.txt index 8db35ccd05..1c30f857e3 100644 --- a/contrib/restricted/boost/smart_ptr/CMakeLists.linux.txt +++ b/contrib/restricted/boost/smart_ptr/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/smart_ptr/CMakeLists.txt b/contrib/restricted/boost/smart_ptr/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/smart_ptr/CMakeLists.txt +++ b/contrib/restricted/boost/smart_ptr/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/spirit/CMakeLists.darwin.txt b/contrib/restricted/boost/spirit/CMakeLists.darwin.txt index d44747f796..6a804f549d 100644 --- a/contrib/restricted/boost/spirit/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/spirit/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/spirit/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/spirit/CMakeLists.linux-aarch64.txt index 05b0380527..01948379bb 100644 --- a/contrib/restricted/boost/spirit/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/spirit/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/spirit/CMakeLists.linux.txt b/contrib/restricted/boost/spirit/CMakeLists.linux.txt index 05b0380527..01948379bb 100644 --- a/contrib/restricted/boost/spirit/CMakeLists.linux.txt +++ b/contrib/restricted/boost/spirit/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/spirit/CMakeLists.txt b/contrib/restricted/boost/spirit/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/spirit/CMakeLists.txt +++ b/contrib/restricted/boost/spirit/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/static_assert/CMakeLists.darwin.txt b/contrib/restricted/boost/static_assert/CMakeLists.darwin.txt index 015fb291bd..6506f1babd 100644 --- a/contrib/restricted/boost/static_assert/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/static_assert/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/static_assert/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/static_assert/CMakeLists.linux-aarch64.txt index 566d2cc2ea..efc171911e 100644 --- a/contrib/restricted/boost/static_assert/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/static_assert/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/static_assert/CMakeLists.linux.txt b/contrib/restricted/boost/static_assert/CMakeLists.linux.txt index 566d2cc2ea..efc171911e 100644 --- a/contrib/restricted/boost/static_assert/CMakeLists.linux.txt +++ b/contrib/restricted/boost/static_assert/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/static_assert/CMakeLists.txt b/contrib/restricted/boost/static_assert/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/static_assert/CMakeLists.txt +++ b/contrib/restricted/boost/static_assert/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/system/CMakeLists.darwin.txt b/contrib/restricted/boost/system/CMakeLists.darwin.txt index 0595b614f2..49847620cb 100644 --- a/contrib/restricted/boost/system/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/system/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/system/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/system/CMakeLists.linux-aarch64.txt index 1405260d5c..bb535c4333 100644 --- a/contrib/restricted/boost/system/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/system/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/system/CMakeLists.linux.txt b/contrib/restricted/boost/system/CMakeLists.linux.txt index 1405260d5c..bb535c4333 100644 --- a/contrib/restricted/boost/system/CMakeLists.linux.txt +++ b/contrib/restricted/boost/system/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/system/CMakeLists.txt b/contrib/restricted/boost/system/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/system/CMakeLists.txt +++ b/contrib/restricted/boost/system/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/thread/CMakeLists.darwin.txt b/contrib/restricted/boost/thread/CMakeLists.darwin.txt index 951cc87dfa..064c029f62 100644 --- a/contrib/restricted/boost/thread/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/thread/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/thread/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/thread/CMakeLists.linux-aarch64.txt index 42985ae40d..ff651659fb 100644 --- a/contrib/restricted/boost/thread/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/thread/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/thread/CMakeLists.linux.txt b/contrib/restricted/boost/thread/CMakeLists.linux.txt index 42985ae40d..ff651659fb 100644 --- a/contrib/restricted/boost/thread/CMakeLists.linux.txt +++ b/contrib/restricted/boost/thread/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/thread/CMakeLists.txt b/contrib/restricted/boost/thread/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/thread/CMakeLists.txt +++ b/contrib/restricted/boost/thread/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/throw_exception/CMakeLists.darwin.txt b/contrib/restricted/boost/throw_exception/CMakeLists.darwin.txt index cf2fd042f2..eefa32cee2 100644 --- a/contrib/restricted/boost/throw_exception/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/throw_exception/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/throw_exception/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/throw_exception/CMakeLists.linux-aarch64.txt index 79b48a4806..105ee3325e 100644 --- a/contrib/restricted/boost/throw_exception/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/throw_exception/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/throw_exception/CMakeLists.linux.txt b/contrib/restricted/boost/throw_exception/CMakeLists.linux.txt index 79b48a4806..105ee3325e 100644 --- a/contrib/restricted/boost/throw_exception/CMakeLists.linux.txt +++ b/contrib/restricted/boost/throw_exception/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/throw_exception/CMakeLists.txt b/contrib/restricted/boost/throw_exception/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/throw_exception/CMakeLists.txt +++ b/contrib/restricted/boost/throw_exception/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/tokenizer/CMakeLists.darwin.txt b/contrib/restricted/boost/tokenizer/CMakeLists.darwin.txt index 4060cd2d15..484614506f 100644 --- a/contrib/restricted/boost/tokenizer/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/tokenizer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/tokenizer/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/tokenizer/CMakeLists.linux-aarch64.txt index ca523cc402..f150b16ca2 100644 --- a/contrib/restricted/boost/tokenizer/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/tokenizer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/tokenizer/CMakeLists.linux.txt b/contrib/restricted/boost/tokenizer/CMakeLists.linux.txt index ca523cc402..f150b16ca2 100644 --- a/contrib/restricted/boost/tokenizer/CMakeLists.linux.txt +++ b/contrib/restricted/boost/tokenizer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/tokenizer/CMakeLists.txt b/contrib/restricted/boost/tokenizer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/tokenizer/CMakeLists.txt +++ b/contrib/restricted/boost/tokenizer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/tti/CMakeLists.darwin.txt b/contrib/restricted/boost/tti/CMakeLists.darwin.txt index d0e9356d6f..21cde2d8ba 100644 --- a/contrib/restricted/boost/tti/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/tti/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/tti/CMakeLists.linux.txt b/contrib/restricted/boost/tti/CMakeLists.linux.txt index 2c50d54bbc..9c8dd5bc54 100644 --- a/contrib/restricted/boost/tti/CMakeLists.linux.txt +++ b/contrib/restricted/boost/tti/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/tti/CMakeLists.txt b/contrib/restricted/boost/tti/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/restricted/boost/tti/CMakeLists.txt +++ b/contrib/restricted/boost/tti/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/tuple/CMakeLists.darwin.txt b/contrib/restricted/boost/tuple/CMakeLists.darwin.txt index 2e16ce8330..35051c1252 100644 --- a/contrib/restricted/boost/tuple/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/tuple/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/tuple/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/tuple/CMakeLists.linux-aarch64.txt index a751695fa1..de83f3637a 100644 --- a/contrib/restricted/boost/tuple/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/tuple/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/tuple/CMakeLists.linux.txt b/contrib/restricted/boost/tuple/CMakeLists.linux.txt index a751695fa1..de83f3637a 100644 --- a/contrib/restricted/boost/tuple/CMakeLists.linux.txt +++ b/contrib/restricted/boost/tuple/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/tuple/CMakeLists.txt b/contrib/restricted/boost/tuple/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/tuple/CMakeLists.txt +++ b/contrib/restricted/boost/tuple/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/type_index/CMakeLists.darwin.txt b/contrib/restricted/boost/type_index/CMakeLists.darwin.txt index ee86d3cc0e..e6366d2523 100644 --- a/contrib/restricted/boost/type_index/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/type_index/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/type_index/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/type_index/CMakeLists.linux-aarch64.txt index 8b78d2fc07..333b4a45fd 100644 --- a/contrib/restricted/boost/type_index/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/type_index/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/type_index/CMakeLists.linux.txt b/contrib/restricted/boost/type_index/CMakeLists.linux.txt index 8b78d2fc07..333b4a45fd 100644 --- a/contrib/restricted/boost/type_index/CMakeLists.linux.txt +++ b/contrib/restricted/boost/type_index/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/type_index/CMakeLists.txt b/contrib/restricted/boost/type_index/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/type_index/CMakeLists.txt +++ b/contrib/restricted/boost/type_index/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/type_traits/CMakeLists.darwin.txt b/contrib/restricted/boost/type_traits/CMakeLists.darwin.txt index 6c791f8970..a32d4a750e 100644 --- a/contrib/restricted/boost/type_traits/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/type_traits/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/type_traits/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/type_traits/CMakeLists.linux-aarch64.txt index d6704deae9..9771ff8a74 100644 --- a/contrib/restricted/boost/type_traits/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/type_traits/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/type_traits/CMakeLists.linux.txt b/contrib/restricted/boost/type_traits/CMakeLists.linux.txt index d6704deae9..9771ff8a74 100644 --- a/contrib/restricted/boost/type_traits/CMakeLists.linux.txt +++ b/contrib/restricted/boost/type_traits/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/type_traits/CMakeLists.txt b/contrib/restricted/boost/type_traits/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/type_traits/CMakeLists.txt +++ b/contrib/restricted/boost/type_traits/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/typeof/CMakeLists.darwin.txt b/contrib/restricted/boost/typeof/CMakeLists.darwin.txt index 909cef05f9..04fff27108 100644 --- a/contrib/restricted/boost/typeof/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/typeof/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/typeof/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/typeof/CMakeLists.linux-aarch64.txt index 544ed14c25..ff3ee3a266 100644 --- a/contrib/restricted/boost/typeof/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/typeof/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/typeof/CMakeLists.linux.txt b/contrib/restricted/boost/typeof/CMakeLists.linux.txt index 544ed14c25..ff3ee3a266 100644 --- a/contrib/restricted/boost/typeof/CMakeLists.linux.txt +++ b/contrib/restricted/boost/typeof/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/typeof/CMakeLists.txt b/contrib/restricted/boost/typeof/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/typeof/CMakeLists.txt +++ b/contrib/restricted/boost/typeof/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/unordered/CMakeLists.darwin.txt b/contrib/restricted/boost/unordered/CMakeLists.darwin.txt index 5ec77e1e81..0a1dbba096 100644 --- a/contrib/restricted/boost/unordered/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/unordered/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/unordered/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/unordered/CMakeLists.linux-aarch64.txt index d222e9e684..2c662b8703 100644 --- a/contrib/restricted/boost/unordered/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/unordered/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/unordered/CMakeLists.linux.txt b/contrib/restricted/boost/unordered/CMakeLists.linux.txt index d222e9e684..2c662b8703 100644 --- a/contrib/restricted/boost/unordered/CMakeLists.linux.txt +++ b/contrib/restricted/boost/unordered/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/unordered/CMakeLists.txt b/contrib/restricted/boost/unordered/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/unordered/CMakeLists.txt +++ b/contrib/restricted/boost/unordered/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/utility/CMakeLists.darwin.txt b/contrib/restricted/boost/utility/CMakeLists.darwin.txt index c5bcdfa3ac..75fd878529 100644 --- a/contrib/restricted/boost/utility/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/utility/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/utility/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/utility/CMakeLists.linux-aarch64.txt index fb7d194911..a04da10363 100644 --- a/contrib/restricted/boost/utility/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/utility/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/utility/CMakeLists.linux.txt b/contrib/restricted/boost/utility/CMakeLists.linux.txt index fb7d194911..a04da10363 100644 --- a/contrib/restricted/boost/utility/CMakeLists.linux.txt +++ b/contrib/restricted/boost/utility/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/utility/CMakeLists.txt b/contrib/restricted/boost/utility/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/utility/CMakeLists.txt +++ b/contrib/restricted/boost/utility/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/variant/CMakeLists.darwin.txt b/contrib/restricted/boost/variant/CMakeLists.darwin.txt index 4082f7e5aa..609c9606b8 100644 --- a/contrib/restricted/boost/variant/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/variant/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/variant/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/variant/CMakeLists.linux-aarch64.txt index 9633868ec3..051a57fd90 100644 --- a/contrib/restricted/boost/variant/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/variant/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/variant/CMakeLists.linux.txt b/contrib/restricted/boost/variant/CMakeLists.linux.txt index 9633868ec3..051a57fd90 100644 --- a/contrib/restricted/boost/variant/CMakeLists.linux.txt +++ b/contrib/restricted/boost/variant/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/variant/CMakeLists.txt b/contrib/restricted/boost/variant/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/variant/CMakeLists.txt +++ b/contrib/restricted/boost/variant/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/variant2/CMakeLists.darwin.txt b/contrib/restricted/boost/variant2/CMakeLists.darwin.txt index 8d14bfc176..faec5d9097 100644 --- a/contrib/restricted/boost/variant2/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/variant2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/variant2/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/variant2/CMakeLists.linux-aarch64.txt index 0d359289cf..b3cdd31e10 100644 --- a/contrib/restricted/boost/variant2/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/variant2/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/variant2/CMakeLists.linux.txt b/contrib/restricted/boost/variant2/CMakeLists.linux.txt index 0d359289cf..b3cdd31e10 100644 --- a/contrib/restricted/boost/variant2/CMakeLists.linux.txt +++ b/contrib/restricted/boost/variant2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/variant2/CMakeLists.txt b/contrib/restricted/boost/variant2/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/variant2/CMakeLists.txt +++ b/contrib/restricted/boost/variant2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/winapi/CMakeLists.darwin.txt b/contrib/restricted/boost/winapi/CMakeLists.darwin.txt index e94a648670..13fd04341f 100644 --- a/contrib/restricted/boost/winapi/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/winapi/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/winapi/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/winapi/CMakeLists.linux-aarch64.txt index 0266e621ad..08c0809361 100644 --- a/contrib/restricted/boost/winapi/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/winapi/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/winapi/CMakeLists.linux.txt b/contrib/restricted/boost/winapi/CMakeLists.linux.txt index 0266e621ad..08c0809361 100644 --- a/contrib/restricted/boost/winapi/CMakeLists.linux.txt +++ b/contrib/restricted/boost/winapi/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/winapi/CMakeLists.txt b/contrib/restricted/boost/winapi/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/boost/winapi/CMakeLists.txt +++ b/contrib/restricted/boost/winapi/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/xpressive/CMakeLists.darwin.txt b/contrib/restricted/boost/xpressive/CMakeLists.darwin.txt index eaad6e815c..d897400340 100644 --- a/contrib/restricted/boost/xpressive/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/xpressive/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/xpressive/CMakeLists.linux.txt b/contrib/restricted/boost/xpressive/CMakeLists.linux.txt index 24c63a1ab3..ad59415763 100644 --- a/contrib/restricted/boost/xpressive/CMakeLists.linux.txt +++ b/contrib/restricted/boost/xpressive/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/boost/xpressive/CMakeLists.txt b/contrib/restricted/boost/xpressive/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/contrib/restricted/boost/xpressive/CMakeLists.txt +++ b/contrib/restricted/boost/xpressive/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/cityhash-1.0.2/CMakeLists.darwin.txt b/contrib/restricted/cityhash-1.0.2/CMakeLists.darwin.txt index 3d8bc6c8a7..d7518da2f4 100644 --- a/contrib/restricted/cityhash-1.0.2/CMakeLists.darwin.txt +++ b/contrib/restricted/cityhash-1.0.2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/cityhash-1.0.2/CMakeLists.linux-aarch64.txt b/contrib/restricted/cityhash-1.0.2/CMakeLists.linux-aarch64.txt index 950206c18e..1abb1abf0a 100644 --- a/contrib/restricted/cityhash-1.0.2/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/cityhash-1.0.2/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/cityhash-1.0.2/CMakeLists.linux.txt b/contrib/restricted/cityhash-1.0.2/CMakeLists.linux.txt index 950206c18e..1abb1abf0a 100644 --- a/contrib/restricted/cityhash-1.0.2/CMakeLists.linux.txt +++ b/contrib/restricted/cityhash-1.0.2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/cityhash-1.0.2/CMakeLists.txt b/contrib/restricted/cityhash-1.0.2/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/cityhash-1.0.2/CMakeLists.txt +++ b/contrib/restricted/cityhash-1.0.2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/dragonbox/CMakeLists.darwin.txt b/contrib/restricted/dragonbox/CMakeLists.darwin.txt index e3422e0298..9f9ecc0c0f 100644 --- a/contrib/restricted/dragonbox/CMakeLists.darwin.txt +++ b/contrib/restricted/dragonbox/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/dragonbox/CMakeLists.linux-aarch64.txt b/contrib/restricted/dragonbox/CMakeLists.linux-aarch64.txt index 59d06503b4..15179f00ad 100644 --- a/contrib/restricted/dragonbox/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/dragonbox/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/dragonbox/CMakeLists.linux.txt b/contrib/restricted/dragonbox/CMakeLists.linux.txt index 59d06503b4..15179f00ad 100644 --- a/contrib/restricted/dragonbox/CMakeLists.linux.txt +++ b/contrib/restricted/dragonbox/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/dragonbox/CMakeLists.txt b/contrib/restricted/dragonbox/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/dragonbox/CMakeLists.txt +++ b/contrib/restricted/dragonbox/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/fast_float/CMakeLists.darwin.txt b/contrib/restricted/fast_float/CMakeLists.darwin.txt index dd04ac711b..277929ec2e 100644 --- a/contrib/restricted/fast_float/CMakeLists.darwin.txt +++ b/contrib/restricted/fast_float/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/fast_float/CMakeLists.linux-aarch64.txt b/contrib/restricted/fast_float/CMakeLists.linux-aarch64.txt index 173ab6fa69..4541d2ed55 100644 --- a/contrib/restricted/fast_float/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/fast_float/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/fast_float/CMakeLists.linux.txt b/contrib/restricted/fast_float/CMakeLists.linux.txt index 173ab6fa69..4541d2ed55 100644 --- a/contrib/restricted/fast_float/CMakeLists.linux.txt +++ b/contrib/restricted/fast_float/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/fast_float/CMakeLists.txt b/contrib/restricted/fast_float/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/fast_float/CMakeLists.txt +++ b/contrib/restricted/fast_float/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/googletest/CMakeLists.txt b/contrib/restricted/googletest/CMakeLists.txt index a0dd95bcc3..83e1a42901 100644 --- a/contrib/restricted/googletest/CMakeLists.txt +++ b/contrib/restricted/googletest/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/googletest/googlemock/CMakeLists.darwin.txt b/contrib/restricted/googletest/googlemock/CMakeLists.darwin.txt index dac4f8570b..01a09f2518 100644 --- a/contrib/restricted/googletest/googlemock/CMakeLists.darwin.txt +++ b/contrib/restricted/googletest/googlemock/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/googletest/googlemock/CMakeLists.linux-aarch64.txt b/contrib/restricted/googletest/googlemock/CMakeLists.linux-aarch64.txt index c7fdcb17a7..c4c70f8184 100644 --- a/contrib/restricted/googletest/googlemock/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/googletest/googlemock/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/googletest/googlemock/CMakeLists.linux.txt b/contrib/restricted/googletest/googlemock/CMakeLists.linux.txt index c7fdcb17a7..c4c70f8184 100644 --- a/contrib/restricted/googletest/googlemock/CMakeLists.linux.txt +++ b/contrib/restricted/googletest/googlemock/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/googletest/googlemock/CMakeLists.txt b/contrib/restricted/googletest/googlemock/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/googletest/googlemock/CMakeLists.txt +++ b/contrib/restricted/googletest/googlemock/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/googletest/googletest/CMakeLists.darwin.txt b/contrib/restricted/googletest/googletest/CMakeLists.darwin.txt index 0fac034dfe..5036ceefb6 100644 --- a/contrib/restricted/googletest/googletest/CMakeLists.darwin.txt +++ b/contrib/restricted/googletest/googletest/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/googletest/googletest/CMakeLists.linux-aarch64.txt b/contrib/restricted/googletest/googletest/CMakeLists.linux-aarch64.txt index 66de4ec88d..94afee8256 100644 --- a/contrib/restricted/googletest/googletest/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/googletest/googletest/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/googletest/googletest/CMakeLists.linux.txt b/contrib/restricted/googletest/googletest/CMakeLists.linux.txt index 66de4ec88d..94afee8256 100644 --- a/contrib/restricted/googletest/googletest/CMakeLists.linux.txt +++ b/contrib/restricted/googletest/googletest/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/googletest/googletest/CMakeLists.txt b/contrib/restricted/googletest/googletest/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/googletest/googletest/CMakeLists.txt +++ b/contrib/restricted/googletest/googletest/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/nlohmann_json/CMakeLists.darwin.txt b/contrib/restricted/nlohmann_json/CMakeLists.darwin.txt index 99692782d8..0c96110bcc 100644 --- a/contrib/restricted/nlohmann_json/CMakeLists.darwin.txt +++ b/contrib/restricted/nlohmann_json/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/nlohmann_json/CMakeLists.linux-aarch64.txt b/contrib/restricted/nlohmann_json/CMakeLists.linux-aarch64.txt index e404971312..2641b31de2 100644 --- a/contrib/restricted/nlohmann_json/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/nlohmann_json/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/nlohmann_json/CMakeLists.linux.txt b/contrib/restricted/nlohmann_json/CMakeLists.linux.txt index e404971312..2641b31de2 100644 --- a/contrib/restricted/nlohmann_json/CMakeLists.linux.txt +++ b/contrib/restricted/nlohmann_json/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/nlohmann_json/CMakeLists.txt b/contrib/restricted/nlohmann_json/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/nlohmann_json/CMakeLists.txt +++ b/contrib/restricted/nlohmann_json/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/thrift/CMakeLists.darwin.txt b/contrib/restricted/thrift/CMakeLists.darwin.txt index 29dfc5fd2e..a60784163d 100644 --- a/contrib/restricted/thrift/CMakeLists.darwin.txt +++ b/contrib/restricted/thrift/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/thrift/CMakeLists.linux-aarch64.txt b/contrib/restricted/thrift/CMakeLists.linux-aarch64.txt index 67ef17ea98..886cb8a9a9 100644 --- a/contrib/restricted/thrift/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/thrift/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/thrift/CMakeLists.linux.txt b/contrib/restricted/thrift/CMakeLists.linux.txt index 67ef17ea98..886cb8a9a9 100644 --- a/contrib/restricted/thrift/CMakeLists.linux.txt +++ b/contrib/restricted/thrift/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/thrift/CMakeLists.txt b/contrib/restricted/thrift/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/thrift/CMakeLists.txt +++ b/contrib/restricted/thrift/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/uriparser/CMakeLists.darwin.txt b/contrib/restricted/uriparser/CMakeLists.darwin.txt index 56d967e249..4c9e486744 100644 --- a/contrib/restricted/uriparser/CMakeLists.darwin.txt +++ b/contrib/restricted/uriparser/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/uriparser/CMakeLists.linux-aarch64.txt b/contrib/restricted/uriparser/CMakeLists.linux-aarch64.txt index 7eb450f890..9f87bb369b 100644 --- a/contrib/restricted/uriparser/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/uriparser/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/uriparser/CMakeLists.linux.txt b/contrib/restricted/uriparser/CMakeLists.linux.txt index 7eb450f890..9f87bb369b 100644 --- a/contrib/restricted/uriparser/CMakeLists.linux.txt +++ b/contrib/restricted/uriparser/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/restricted/uriparser/CMakeLists.txt b/contrib/restricted/uriparser/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/restricted/uriparser/CMakeLists.txt +++ b/contrib/restricted/uriparser/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/CMakeLists.txt b/contrib/tools/CMakeLists.txt index 07c36cc20d..38b046d368 100644 --- a/contrib/tools/CMakeLists.txt +++ b/contrib/tools/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/protoc/CMakeLists.txt b/contrib/tools/protoc/CMakeLists.txt index 5b078f6e25..bdcaeeca99 100644 --- a/contrib/tools/protoc/CMakeLists.txt +++ b/contrib/tools/protoc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/protoc/bin/CMakeLists.darwin.txt b/contrib/tools/protoc/bin/CMakeLists.darwin.txt index b5459c4b7d..4896c29313 100644 --- a/contrib/tools/protoc/bin/CMakeLists.darwin.txt +++ b/contrib/tools/protoc/bin/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/protoc/bin/CMakeLists.linux-aarch64.txt b/contrib/tools/protoc/bin/CMakeLists.linux-aarch64.txt index fa15b1bc5a..8e702243f1 100644 --- a/contrib/tools/protoc/bin/CMakeLists.linux-aarch64.txt +++ b/contrib/tools/protoc/bin/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/protoc/bin/CMakeLists.linux.txt b/contrib/tools/protoc/bin/CMakeLists.linux.txt index 3396847b0e..5a4ba3a997 100644 --- a/contrib/tools/protoc/bin/CMakeLists.linux.txt +++ b/contrib/tools/protoc/bin/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/protoc/bin/CMakeLists.txt b/contrib/tools/protoc/bin/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/tools/protoc/bin/CMakeLists.txt +++ b/contrib/tools/protoc/bin/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/protoc/plugins/CMakeLists.txt b/contrib/tools/protoc/plugins/CMakeLists.txt index 27af5d725b..f6c7b58a9e 100644 --- a/contrib/tools/protoc/plugins/CMakeLists.txt +++ b/contrib/tools/protoc/plugins/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.darwin.txt b/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.darwin.txt index e71fc5346e..6147bb9159 100644 --- a/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.darwin.txt +++ b/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.linux-aarch64.txt b/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.linux-aarch64.txt index 8536b1fe4c..ef0d126e79 100644 --- a/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.linux-aarch64.txt +++ b/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.linux.txt b/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.linux.txt index 37c74bd002..5d14ec0bdc 100644 --- a/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.linux.txt +++ b/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.txt b/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.txt +++ b/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.darwin.txt b/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.darwin.txt index 9bfc26b944..58a75143b7 100644 --- a/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.darwin.txt +++ b/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.linux-aarch64.txt b/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.linux-aarch64.txt index e0bdb5f0f3..ee3ffd3368 100644 --- a/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.linux-aarch64.txt +++ b/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.linux.txt b/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.linux.txt index 46bf076905..3fe424d72e 100644 --- a/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.linux.txt +++ b/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.txt b/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.txt +++ b/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt index 48e888c46d..95ff6b8ebf 100644 --- a/library/CMakeLists.txt +++ b/library/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/CMakeLists.darwin.txt b/library/cpp/CMakeLists.darwin.txt index 74f3a1430a..c583b41c41 100644 --- a/library/cpp/CMakeLists.darwin.txt +++ b/library/cpp/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/CMakeLists.linux-aarch64.txt b/library/cpp/CMakeLists.linux-aarch64.txt index 7ccca0159a..45ca41d349 100644 --- a/library/cpp/CMakeLists.linux-aarch64.txt +++ b/library/cpp/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/CMakeLists.linux.txt b/library/cpp/CMakeLists.linux.txt index 74f3a1430a..c583b41c41 100644 --- a/library/cpp/CMakeLists.linux.txt +++ b/library/cpp/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/CMakeLists.txt b/library/cpp/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/CMakeLists.txt +++ b/library/cpp/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/accurate_accumulate/CMakeLists.darwin.txt b/library/cpp/accurate_accumulate/CMakeLists.darwin.txt index 4db4e1b24d..6d68faefed 100644 --- a/library/cpp/accurate_accumulate/CMakeLists.darwin.txt +++ b/library/cpp/accurate_accumulate/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/accurate_accumulate/CMakeLists.linux-aarch64.txt b/library/cpp/accurate_accumulate/CMakeLists.linux-aarch64.txt index cbc505d4ba..d168ea5295 100644 --- a/library/cpp/accurate_accumulate/CMakeLists.linux-aarch64.txt +++ b/library/cpp/accurate_accumulate/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/accurate_accumulate/CMakeLists.linux.txt b/library/cpp/accurate_accumulate/CMakeLists.linux.txt index cbc505d4ba..d168ea5295 100644 --- a/library/cpp/accurate_accumulate/CMakeLists.linux.txt +++ b/library/cpp/accurate_accumulate/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/accurate_accumulate/CMakeLists.txt b/library/cpp/accurate_accumulate/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/accurate_accumulate/CMakeLists.txt +++ b/library/cpp/accurate_accumulate/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/CMakeLists.txt b/library/cpp/actors/CMakeLists.txt index b19b18f7a9..85c57c9506 100644 --- a/library/cpp/actors/CMakeLists.txt +++ b/library/cpp/actors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/core/CMakeLists.darwin.txt b/library/cpp/actors/core/CMakeLists.darwin.txt index 7bbf9297c2..e1527f1687 100644 --- a/library/cpp/actors/core/CMakeLists.darwin.txt +++ b/library/cpp/actors/core/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/core/CMakeLists.linux-aarch64.txt b/library/cpp/actors/core/CMakeLists.linux-aarch64.txt index 54c3427d28..c6abc709a6 100644 --- a/library/cpp/actors/core/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/core/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/core/CMakeLists.linux.txt b/library/cpp/actors/core/CMakeLists.linux.txt index 54c3427d28..c6abc709a6 100644 --- a/library/cpp/actors/core/CMakeLists.linux.txt +++ b/library/cpp/actors/core/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/core/CMakeLists.txt b/library/cpp/actors/core/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/actors/core/CMakeLists.txt +++ b/library/cpp/actors/core/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/dnscachelib/CMakeLists.darwin.txt b/library/cpp/actors/dnscachelib/CMakeLists.darwin.txt index 63e3450fa2..539f17a1a2 100644 --- a/library/cpp/actors/dnscachelib/CMakeLists.darwin.txt +++ b/library/cpp/actors/dnscachelib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/dnscachelib/CMakeLists.linux-aarch64.txt b/library/cpp/actors/dnscachelib/CMakeLists.linux-aarch64.txt index 9f29adc7bc..03a286a663 100644 --- a/library/cpp/actors/dnscachelib/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/dnscachelib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/dnscachelib/CMakeLists.linux.txt b/library/cpp/actors/dnscachelib/CMakeLists.linux.txt index 9f29adc7bc..03a286a663 100644 --- a/library/cpp/actors/dnscachelib/CMakeLists.linux.txt +++ b/library/cpp/actors/dnscachelib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/dnscachelib/CMakeLists.txt b/library/cpp/actors/dnscachelib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/actors/dnscachelib/CMakeLists.txt +++ b/library/cpp/actors/dnscachelib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/dnsresolver/CMakeLists.darwin.txt b/library/cpp/actors/dnsresolver/CMakeLists.darwin.txt index f4a0909db2..341f9e7593 100644 --- a/library/cpp/actors/dnsresolver/CMakeLists.darwin.txt +++ b/library/cpp/actors/dnsresolver/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/dnsresolver/CMakeLists.linux-aarch64.txt b/library/cpp/actors/dnsresolver/CMakeLists.linux-aarch64.txt index 7e622c1693..202d9028bc 100644 --- a/library/cpp/actors/dnsresolver/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/dnsresolver/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/dnsresolver/CMakeLists.linux.txt b/library/cpp/actors/dnsresolver/CMakeLists.linux.txt index 7e622c1693..202d9028bc 100644 --- a/library/cpp/actors/dnsresolver/CMakeLists.linux.txt +++ b/library/cpp/actors/dnsresolver/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/dnsresolver/CMakeLists.txt b/library/cpp/actors/dnsresolver/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/actors/dnsresolver/CMakeLists.txt +++ b/library/cpp/actors/dnsresolver/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/helpers/CMakeLists.darwin.txt b/library/cpp/actors/helpers/CMakeLists.darwin.txt index a9e3e369eb..16ecfc7b98 100644 --- a/library/cpp/actors/helpers/CMakeLists.darwin.txt +++ b/library/cpp/actors/helpers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/helpers/CMakeLists.linux-aarch64.txt b/library/cpp/actors/helpers/CMakeLists.linux-aarch64.txt index 52ef906f05..b00db82fde 100644 --- a/library/cpp/actors/helpers/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/helpers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/helpers/CMakeLists.linux.txt b/library/cpp/actors/helpers/CMakeLists.linux.txt index 52ef906f05..b00db82fde 100644 --- a/library/cpp/actors/helpers/CMakeLists.linux.txt +++ b/library/cpp/actors/helpers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/helpers/CMakeLists.txt b/library/cpp/actors/helpers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/actors/helpers/CMakeLists.txt +++ b/library/cpp/actors/helpers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/http/CMakeLists.darwin.txt b/library/cpp/actors/http/CMakeLists.darwin.txt index 277ffc4560..c60599beaa 100644 --- a/library/cpp/actors/http/CMakeLists.darwin.txt +++ b/library/cpp/actors/http/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/http/CMakeLists.linux-aarch64.txt b/library/cpp/actors/http/CMakeLists.linux-aarch64.txt index 66011d9355..d6e3868652 100644 --- a/library/cpp/actors/http/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/http/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/http/CMakeLists.linux.txt b/library/cpp/actors/http/CMakeLists.linux.txt index 66011d9355..d6e3868652 100644 --- a/library/cpp/actors/http/CMakeLists.linux.txt +++ b/library/cpp/actors/http/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/http/CMakeLists.txt b/library/cpp/actors/http/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/actors/http/CMakeLists.txt +++ b/library/cpp/actors/http/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/interconnect/CMakeLists.darwin.txt b/library/cpp/actors/interconnect/CMakeLists.darwin.txt index f73af2defe..49ad9e634b 100644 --- a/library/cpp/actors/interconnect/CMakeLists.darwin.txt +++ b/library/cpp/actors/interconnect/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/interconnect/CMakeLists.linux-aarch64.txt b/library/cpp/actors/interconnect/CMakeLists.linux-aarch64.txt index b5201f16a0..255f935cda 100644 --- a/library/cpp/actors/interconnect/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/interconnect/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/interconnect/CMakeLists.linux.txt b/library/cpp/actors/interconnect/CMakeLists.linux.txt index b5201f16a0..255f935cda 100644 --- a/library/cpp/actors/interconnect/CMakeLists.linux.txt +++ b/library/cpp/actors/interconnect/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/interconnect/CMakeLists.txt b/library/cpp/actors/interconnect/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/actors/interconnect/CMakeLists.txt +++ b/library/cpp/actors/interconnect/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/interconnect/mock/CMakeLists.darwin.txt b/library/cpp/actors/interconnect/mock/CMakeLists.darwin.txt index 13db21524e..c29d87b0ce 100644 --- a/library/cpp/actors/interconnect/mock/CMakeLists.darwin.txt +++ b/library/cpp/actors/interconnect/mock/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/interconnect/mock/CMakeLists.linux-aarch64.txt b/library/cpp/actors/interconnect/mock/CMakeLists.linux-aarch64.txt index e86545f9c2..85d0cf4696 100644 --- a/library/cpp/actors/interconnect/mock/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/interconnect/mock/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/interconnect/mock/CMakeLists.linux.txt b/library/cpp/actors/interconnect/mock/CMakeLists.linux.txt index e86545f9c2..85d0cf4696 100644 --- a/library/cpp/actors/interconnect/mock/CMakeLists.linux.txt +++ b/library/cpp/actors/interconnect/mock/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/interconnect/mock/CMakeLists.txt b/library/cpp/actors/interconnect/mock/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/actors/interconnect/mock/CMakeLists.txt +++ b/library/cpp/actors/interconnect/mock/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/memory_log/CMakeLists.darwin.txt b/library/cpp/actors/memory_log/CMakeLists.darwin.txt index 3eb16eed1d..5109f0fcce 100644 --- a/library/cpp/actors/memory_log/CMakeLists.darwin.txt +++ b/library/cpp/actors/memory_log/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/memory_log/CMakeLists.linux-aarch64.txt b/library/cpp/actors/memory_log/CMakeLists.linux-aarch64.txt index 46c24e7d71..1fa79db3ff 100644 --- a/library/cpp/actors/memory_log/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/memory_log/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/memory_log/CMakeLists.linux.txt b/library/cpp/actors/memory_log/CMakeLists.linux.txt index 46c24e7d71..1fa79db3ff 100644 --- a/library/cpp/actors/memory_log/CMakeLists.linux.txt +++ b/library/cpp/actors/memory_log/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/memory_log/CMakeLists.txt b/library/cpp/actors/memory_log/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/actors/memory_log/CMakeLists.txt +++ b/library/cpp/actors/memory_log/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/prof/CMakeLists.darwin.txt b/library/cpp/actors/prof/CMakeLists.darwin.txt index da4124b232..9ee960950d 100644 --- a/library/cpp/actors/prof/CMakeLists.darwin.txt +++ b/library/cpp/actors/prof/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/prof/CMakeLists.linux-aarch64.txt b/library/cpp/actors/prof/CMakeLists.linux-aarch64.txt index a0ec95e1ab..a7ee6c9586 100644 --- a/library/cpp/actors/prof/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/prof/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/prof/CMakeLists.linux.txt b/library/cpp/actors/prof/CMakeLists.linux.txt index a0ec95e1ab..a7ee6c9586 100644 --- a/library/cpp/actors/prof/CMakeLists.linux.txt +++ b/library/cpp/actors/prof/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/prof/CMakeLists.txt b/library/cpp/actors/prof/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/actors/prof/CMakeLists.txt +++ b/library/cpp/actors/prof/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/protos/CMakeLists.darwin.txt b/library/cpp/actors/protos/CMakeLists.darwin.txt index 207460e2cc..7b69be3ba5 100644 --- a/library/cpp/actors/protos/CMakeLists.darwin.txt +++ b/library/cpp/actors/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/protos/CMakeLists.linux-aarch64.txt b/library/cpp/actors/protos/CMakeLists.linux-aarch64.txt index 9733ae60e8..84a923e5c2 100644 --- a/library/cpp/actors/protos/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/protos/CMakeLists.linux.txt b/library/cpp/actors/protos/CMakeLists.linux.txt index 9733ae60e8..84a923e5c2 100644 --- a/library/cpp/actors/protos/CMakeLists.linux.txt +++ b/library/cpp/actors/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/protos/CMakeLists.txt b/library/cpp/actors/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/actors/protos/CMakeLists.txt +++ b/library/cpp/actors/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/testlib/CMakeLists.darwin.txt b/library/cpp/actors/testlib/CMakeLists.darwin.txt index 07cf982905..1508c82e9b 100644 --- a/library/cpp/actors/testlib/CMakeLists.darwin.txt +++ b/library/cpp/actors/testlib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/testlib/CMakeLists.linux-aarch64.txt b/library/cpp/actors/testlib/CMakeLists.linux-aarch64.txt index 4f565a0769..68cb3d3199 100644 --- a/library/cpp/actors/testlib/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/testlib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/testlib/CMakeLists.linux.txt b/library/cpp/actors/testlib/CMakeLists.linux.txt index 4f565a0769..68cb3d3199 100644 --- a/library/cpp/actors/testlib/CMakeLists.linux.txt +++ b/library/cpp/actors/testlib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/testlib/CMakeLists.txt b/library/cpp/actors/testlib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/actors/testlib/CMakeLists.txt +++ b/library/cpp/actors/testlib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/util/CMakeLists.darwin.txt b/library/cpp/actors/util/CMakeLists.darwin.txt index 19f683cb2a..2bac6f5b8a 100644 --- a/library/cpp/actors/util/CMakeLists.darwin.txt +++ b/library/cpp/actors/util/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/util/CMakeLists.linux-aarch64.txt b/library/cpp/actors/util/CMakeLists.linux-aarch64.txt index c6673cde78..9eebd23475 100644 --- a/library/cpp/actors/util/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/util/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/util/CMakeLists.linux.txt b/library/cpp/actors/util/CMakeLists.linux.txt index c6673cde78..9eebd23475 100644 --- a/library/cpp/actors/util/CMakeLists.linux.txt +++ b/library/cpp/actors/util/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/util/CMakeLists.txt b/library/cpp/actors/util/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/actors/util/CMakeLists.txt +++ b/library/cpp/actors/util/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/wilson/CMakeLists.darwin.txt b/library/cpp/actors/wilson/CMakeLists.darwin.txt index 91f380ee05..45704ccd5a 100644 --- a/library/cpp/actors/wilson/CMakeLists.darwin.txt +++ b/library/cpp/actors/wilson/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/wilson/CMakeLists.linux-aarch64.txt b/library/cpp/actors/wilson/CMakeLists.linux-aarch64.txt index edcc32e752..ccc87489ae 100644 --- a/library/cpp/actors/wilson/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/wilson/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/wilson/CMakeLists.linux.txt b/library/cpp/actors/wilson/CMakeLists.linux.txt index edcc32e752..ccc87489ae 100644 --- a/library/cpp/actors/wilson/CMakeLists.linux.txt +++ b/library/cpp/actors/wilson/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/wilson/CMakeLists.txt b/library/cpp/actors/wilson/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/actors/wilson/CMakeLists.txt +++ b/library/cpp/actors/wilson/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/wilson/protos/CMakeLists.darwin.txt b/library/cpp/actors/wilson/protos/CMakeLists.darwin.txt index f61a5ee58d..dec2734c21 100644 --- a/library/cpp/actors/wilson/protos/CMakeLists.darwin.txt +++ b/library/cpp/actors/wilson/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/wilson/protos/CMakeLists.linux-aarch64.txt b/library/cpp/actors/wilson/protos/CMakeLists.linux-aarch64.txt index 8b1fac6642..a190ace589 100644 --- a/library/cpp/actors/wilson/protos/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/wilson/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/wilson/protos/CMakeLists.linux.txt b/library/cpp/actors/wilson/protos/CMakeLists.linux.txt index 8b1fac6642..a190ace589 100644 --- a/library/cpp/actors/wilson/protos/CMakeLists.linux.txt +++ b/library/cpp/actors/wilson/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/actors/wilson/protos/CMakeLists.txt b/library/cpp/actors/wilson/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/actors/wilson/protos/CMakeLists.txt +++ b/library/cpp/actors/wilson/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/archive/CMakeLists.darwin.txt b/library/cpp/archive/CMakeLists.darwin.txt index 161dcb35f0..37c28ba02a 100644 --- a/library/cpp/archive/CMakeLists.darwin.txt +++ b/library/cpp/archive/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/archive/CMakeLists.linux-aarch64.txt b/library/cpp/archive/CMakeLists.linux-aarch64.txt index 3e060d55bc..03631029dd 100644 --- a/library/cpp/archive/CMakeLists.linux-aarch64.txt +++ b/library/cpp/archive/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/archive/CMakeLists.linux.txt b/library/cpp/archive/CMakeLists.linux.txt index 3e060d55bc..03631029dd 100644 --- a/library/cpp/archive/CMakeLists.linux.txt +++ b/library/cpp/archive/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/archive/CMakeLists.txt b/library/cpp/archive/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/archive/CMakeLists.txt +++ b/library/cpp/archive/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/balloc/CMakeLists.darwin.txt b/library/cpp/balloc/CMakeLists.darwin.txt index 9f044845ba..2c4846bcb8 100644 --- a/library/cpp/balloc/CMakeLists.darwin.txt +++ b/library/cpp/balloc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/balloc/CMakeLists.linux-aarch64.txt b/library/cpp/balloc/CMakeLists.linux-aarch64.txt index 912c679532..110601bb08 100644 --- a/library/cpp/balloc/CMakeLists.linux-aarch64.txt +++ b/library/cpp/balloc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/balloc/CMakeLists.linux.txt b/library/cpp/balloc/CMakeLists.linux.txt index 912c679532..110601bb08 100644 --- a/library/cpp/balloc/CMakeLists.linux.txt +++ b/library/cpp/balloc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/balloc/CMakeLists.txt b/library/cpp/balloc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/balloc/CMakeLists.txt +++ b/library/cpp/balloc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/balloc/lib/CMakeLists.darwin.txt b/library/cpp/balloc/lib/CMakeLists.darwin.txt index 6ce3b4e072..8e1e7a84cb 100644 --- a/library/cpp/balloc/lib/CMakeLists.darwin.txt +++ b/library/cpp/balloc/lib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/balloc/lib/CMakeLists.linux-aarch64.txt b/library/cpp/balloc/lib/CMakeLists.linux-aarch64.txt index cc75248d9d..647ad5f6ba 100644 --- a/library/cpp/balloc/lib/CMakeLists.linux-aarch64.txt +++ b/library/cpp/balloc/lib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/balloc/lib/CMakeLists.linux.txt b/library/cpp/balloc/lib/CMakeLists.linux.txt index cc75248d9d..647ad5f6ba 100644 --- a/library/cpp/balloc/lib/CMakeLists.linux.txt +++ b/library/cpp/balloc/lib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/balloc/lib/CMakeLists.txt b/library/cpp/balloc/lib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/balloc/lib/CMakeLists.txt +++ b/library/cpp/balloc/lib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/balloc/setup/CMakeLists.darwin.txt b/library/cpp/balloc/setup/CMakeLists.darwin.txt index 82c9d69c0c..37f588f7f7 100644 --- a/library/cpp/balloc/setup/CMakeLists.darwin.txt +++ b/library/cpp/balloc/setup/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/balloc/setup/CMakeLists.linux-aarch64.txt b/library/cpp/balloc/setup/CMakeLists.linux-aarch64.txt index e6b75f9983..aa604e5d20 100644 --- a/library/cpp/balloc/setup/CMakeLists.linux-aarch64.txt +++ b/library/cpp/balloc/setup/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/balloc/setup/CMakeLists.linux.txt b/library/cpp/balloc/setup/CMakeLists.linux.txt index e6b75f9983..aa604e5d20 100644 --- a/library/cpp/balloc/setup/CMakeLists.linux.txt +++ b/library/cpp/balloc/setup/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/balloc/setup/CMakeLists.txt b/library/cpp/balloc/setup/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/balloc/setup/CMakeLists.txt +++ b/library/cpp/balloc/setup/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/binsaver/CMakeLists.darwin.txt b/library/cpp/binsaver/CMakeLists.darwin.txt index 4ae1718e76..3430226be1 100644 --- a/library/cpp/binsaver/CMakeLists.darwin.txt +++ b/library/cpp/binsaver/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/binsaver/CMakeLists.linux-aarch64.txt b/library/cpp/binsaver/CMakeLists.linux-aarch64.txt index 2ba71f7408..1a5048d32f 100644 --- a/library/cpp/binsaver/CMakeLists.linux-aarch64.txt +++ b/library/cpp/binsaver/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/binsaver/CMakeLists.linux.txt b/library/cpp/binsaver/CMakeLists.linux.txt index 2ba71f7408..1a5048d32f 100644 --- a/library/cpp/binsaver/CMakeLists.linux.txt +++ b/library/cpp/binsaver/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/binsaver/CMakeLists.txt b/library/cpp/binsaver/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/binsaver/CMakeLists.txt +++ b/library/cpp/binsaver/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/bit_io/CMakeLists.darwin.txt b/library/cpp/bit_io/CMakeLists.darwin.txt index 63b4030bb2..3e27b7a842 100644 --- a/library/cpp/bit_io/CMakeLists.darwin.txt +++ b/library/cpp/bit_io/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/bit_io/CMakeLists.linux-aarch64.txt b/library/cpp/bit_io/CMakeLists.linux-aarch64.txt index f5d238c88b..35dab036ed 100644 --- a/library/cpp/bit_io/CMakeLists.linux-aarch64.txt +++ b/library/cpp/bit_io/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/bit_io/CMakeLists.linux.txt b/library/cpp/bit_io/CMakeLists.linux.txt index f5d238c88b..35dab036ed 100644 --- a/library/cpp/bit_io/CMakeLists.linux.txt +++ b/library/cpp/bit_io/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/bit_io/CMakeLists.txt b/library/cpp/bit_io/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/bit_io/CMakeLists.txt +++ b/library/cpp/bit_io/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/CMakeLists.darwin.txt b/library/cpp/blockcodecs/CMakeLists.darwin.txt index 999004c65a..3b5f212510 100644 --- a/library/cpp/blockcodecs/CMakeLists.darwin.txt +++ b/library/cpp/blockcodecs/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/CMakeLists.linux-aarch64.txt b/library/cpp/blockcodecs/CMakeLists.linux-aarch64.txt index 764ab46e5d..4b75027197 100644 --- a/library/cpp/blockcodecs/CMakeLists.linux-aarch64.txt +++ b/library/cpp/blockcodecs/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/CMakeLists.linux.txt b/library/cpp/blockcodecs/CMakeLists.linux.txt index 764ab46e5d..4b75027197 100644 --- a/library/cpp/blockcodecs/CMakeLists.linux.txt +++ b/library/cpp/blockcodecs/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/CMakeLists.txt b/library/cpp/blockcodecs/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/blockcodecs/CMakeLists.txt +++ b/library/cpp/blockcodecs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/CMakeLists.txt b/library/cpp/blockcodecs/codecs/CMakeLists.txt index 1dc34f79b8..6bcc688bd3 100644 --- a/library/cpp/blockcodecs/codecs/CMakeLists.txt +++ b/library/cpp/blockcodecs/codecs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/brotli/CMakeLists.darwin.txt b/library/cpp/blockcodecs/codecs/brotli/CMakeLists.darwin.txt index 908fc0c444..0af596c5de 100644 --- a/library/cpp/blockcodecs/codecs/brotli/CMakeLists.darwin.txt +++ b/library/cpp/blockcodecs/codecs/brotli/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/brotli/CMakeLists.linux-aarch64.txt b/library/cpp/blockcodecs/codecs/brotli/CMakeLists.linux-aarch64.txt index 38d4a7598e..ccb11a5288 100644 --- a/library/cpp/blockcodecs/codecs/brotli/CMakeLists.linux-aarch64.txt +++ b/library/cpp/blockcodecs/codecs/brotli/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/brotli/CMakeLists.linux.txt b/library/cpp/blockcodecs/codecs/brotli/CMakeLists.linux.txt index 38d4a7598e..ccb11a5288 100644 --- a/library/cpp/blockcodecs/codecs/brotli/CMakeLists.linux.txt +++ b/library/cpp/blockcodecs/codecs/brotli/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/brotli/CMakeLists.txt b/library/cpp/blockcodecs/codecs/brotli/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/blockcodecs/codecs/brotli/CMakeLists.txt +++ b/library/cpp/blockcodecs/codecs/brotli/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/bzip/CMakeLists.darwin.txt b/library/cpp/blockcodecs/codecs/bzip/CMakeLists.darwin.txt index 0dfce1c69c..fd7180543c 100644 --- a/library/cpp/blockcodecs/codecs/bzip/CMakeLists.darwin.txt +++ b/library/cpp/blockcodecs/codecs/bzip/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/bzip/CMakeLists.linux-aarch64.txt b/library/cpp/blockcodecs/codecs/bzip/CMakeLists.linux-aarch64.txt index 6ac7c4bd30..cb9bd53db1 100644 --- a/library/cpp/blockcodecs/codecs/bzip/CMakeLists.linux-aarch64.txt +++ b/library/cpp/blockcodecs/codecs/bzip/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/bzip/CMakeLists.linux.txt b/library/cpp/blockcodecs/codecs/bzip/CMakeLists.linux.txt index 6ac7c4bd30..cb9bd53db1 100644 --- a/library/cpp/blockcodecs/codecs/bzip/CMakeLists.linux.txt +++ b/library/cpp/blockcodecs/codecs/bzip/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/bzip/CMakeLists.txt b/library/cpp/blockcodecs/codecs/bzip/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/blockcodecs/codecs/bzip/CMakeLists.txt +++ b/library/cpp/blockcodecs/codecs/bzip/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.darwin.txt b/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.darwin.txt index 42d960fe08..0acda91a4d 100644 --- a/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.darwin.txt +++ b/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.linux-aarch64.txt b/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.linux-aarch64.txt index 7adf3fc267..841e41dc33 100644 --- a/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.linux-aarch64.txt +++ b/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.linux.txt b/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.linux.txt index 7adf3fc267..841e41dc33 100644 --- a/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.linux.txt +++ b/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.txt b/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.txt +++ b/library/cpp/blockcodecs/codecs/fastlz/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.darwin.txt b/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.darwin.txt index 783efe8d80..c6d20bf8fc 100644 --- a/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.darwin.txt +++ b/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.linux-aarch64.txt b/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.linux-aarch64.txt index 9964ee703c..e0dbc8de82 100644 --- a/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.linux-aarch64.txt +++ b/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.linux.txt b/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.linux.txt index 9964ee703c..e0dbc8de82 100644 --- a/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.linux.txt +++ b/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.txt b/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.txt +++ b/library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/lz4/CMakeLists.darwin.txt b/library/cpp/blockcodecs/codecs/lz4/CMakeLists.darwin.txt index 3f0a426090..92e6f5f9db 100644 --- a/library/cpp/blockcodecs/codecs/lz4/CMakeLists.darwin.txt +++ b/library/cpp/blockcodecs/codecs/lz4/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/lz4/CMakeLists.linux-aarch64.txt b/library/cpp/blockcodecs/codecs/lz4/CMakeLists.linux-aarch64.txt index b85eb25074..0d4874b329 100644 --- a/library/cpp/blockcodecs/codecs/lz4/CMakeLists.linux-aarch64.txt +++ b/library/cpp/blockcodecs/codecs/lz4/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/lz4/CMakeLists.linux.txt b/library/cpp/blockcodecs/codecs/lz4/CMakeLists.linux.txt index b85eb25074..0d4874b329 100644 --- a/library/cpp/blockcodecs/codecs/lz4/CMakeLists.linux.txt +++ b/library/cpp/blockcodecs/codecs/lz4/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/lz4/CMakeLists.txt b/library/cpp/blockcodecs/codecs/lz4/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/blockcodecs/codecs/lz4/CMakeLists.txt +++ b/library/cpp/blockcodecs/codecs/lz4/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/lzma/CMakeLists.darwin.txt b/library/cpp/blockcodecs/codecs/lzma/CMakeLists.darwin.txt index 3a7415f5de..acaf2f9e8d 100644 --- a/library/cpp/blockcodecs/codecs/lzma/CMakeLists.darwin.txt +++ b/library/cpp/blockcodecs/codecs/lzma/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/lzma/CMakeLists.linux-aarch64.txt b/library/cpp/blockcodecs/codecs/lzma/CMakeLists.linux-aarch64.txt index 68f881690d..0fee0bb18d 100644 --- a/library/cpp/blockcodecs/codecs/lzma/CMakeLists.linux-aarch64.txt +++ b/library/cpp/blockcodecs/codecs/lzma/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/lzma/CMakeLists.linux.txt b/library/cpp/blockcodecs/codecs/lzma/CMakeLists.linux.txt index 68f881690d..0fee0bb18d 100644 --- a/library/cpp/blockcodecs/codecs/lzma/CMakeLists.linux.txt +++ b/library/cpp/blockcodecs/codecs/lzma/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/lzma/CMakeLists.txt b/library/cpp/blockcodecs/codecs/lzma/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/blockcodecs/codecs/lzma/CMakeLists.txt +++ b/library/cpp/blockcodecs/codecs/lzma/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/snappy/CMakeLists.darwin.txt b/library/cpp/blockcodecs/codecs/snappy/CMakeLists.darwin.txt index 4da098e001..995fd58dfc 100644 --- a/library/cpp/blockcodecs/codecs/snappy/CMakeLists.darwin.txt +++ b/library/cpp/blockcodecs/codecs/snappy/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/snappy/CMakeLists.linux-aarch64.txt b/library/cpp/blockcodecs/codecs/snappy/CMakeLists.linux-aarch64.txt index dd1befc31b..de6eef3de0 100644 --- a/library/cpp/blockcodecs/codecs/snappy/CMakeLists.linux-aarch64.txt +++ b/library/cpp/blockcodecs/codecs/snappy/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/snappy/CMakeLists.linux.txt b/library/cpp/blockcodecs/codecs/snappy/CMakeLists.linux.txt index dd1befc31b..de6eef3de0 100644 --- a/library/cpp/blockcodecs/codecs/snappy/CMakeLists.linux.txt +++ b/library/cpp/blockcodecs/codecs/snappy/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/snappy/CMakeLists.txt b/library/cpp/blockcodecs/codecs/snappy/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/blockcodecs/codecs/snappy/CMakeLists.txt +++ b/library/cpp/blockcodecs/codecs/snappy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/zlib/CMakeLists.darwin.txt b/library/cpp/blockcodecs/codecs/zlib/CMakeLists.darwin.txt index 49742a0aa9..2e13dbce8c 100644 --- a/library/cpp/blockcodecs/codecs/zlib/CMakeLists.darwin.txt +++ b/library/cpp/blockcodecs/codecs/zlib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/zlib/CMakeLists.linux-aarch64.txt b/library/cpp/blockcodecs/codecs/zlib/CMakeLists.linux-aarch64.txt index 1ed2ce0103..22fe89535f 100644 --- a/library/cpp/blockcodecs/codecs/zlib/CMakeLists.linux-aarch64.txt +++ b/library/cpp/blockcodecs/codecs/zlib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/zlib/CMakeLists.linux.txt b/library/cpp/blockcodecs/codecs/zlib/CMakeLists.linux.txt index 1ed2ce0103..22fe89535f 100644 --- a/library/cpp/blockcodecs/codecs/zlib/CMakeLists.linux.txt +++ b/library/cpp/blockcodecs/codecs/zlib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/zlib/CMakeLists.txt b/library/cpp/blockcodecs/codecs/zlib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/blockcodecs/codecs/zlib/CMakeLists.txt +++ b/library/cpp/blockcodecs/codecs/zlib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/zstd/CMakeLists.darwin.txt b/library/cpp/blockcodecs/codecs/zstd/CMakeLists.darwin.txt index 353bd285e4..894ad9b9a8 100644 --- a/library/cpp/blockcodecs/codecs/zstd/CMakeLists.darwin.txt +++ b/library/cpp/blockcodecs/codecs/zstd/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/zstd/CMakeLists.linux-aarch64.txt b/library/cpp/blockcodecs/codecs/zstd/CMakeLists.linux-aarch64.txt index ed2bef4ac5..46c472e81f 100644 --- a/library/cpp/blockcodecs/codecs/zstd/CMakeLists.linux-aarch64.txt +++ b/library/cpp/blockcodecs/codecs/zstd/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/zstd/CMakeLists.linux.txt b/library/cpp/blockcodecs/codecs/zstd/CMakeLists.linux.txt index ed2bef4ac5..46c472e81f 100644 --- a/library/cpp/blockcodecs/codecs/zstd/CMakeLists.linux.txt +++ b/library/cpp/blockcodecs/codecs/zstd/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/codecs/zstd/CMakeLists.txt b/library/cpp/blockcodecs/codecs/zstd/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/blockcodecs/codecs/zstd/CMakeLists.txt +++ b/library/cpp/blockcodecs/codecs/zstd/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/core/CMakeLists.darwin.txt b/library/cpp/blockcodecs/core/CMakeLists.darwin.txt index e52f16b776..c49c7d01b8 100644 --- a/library/cpp/blockcodecs/core/CMakeLists.darwin.txt +++ b/library/cpp/blockcodecs/core/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/core/CMakeLists.linux-aarch64.txt b/library/cpp/blockcodecs/core/CMakeLists.linux-aarch64.txt index 0fbd0b6ae5..407f8f62e1 100644 --- a/library/cpp/blockcodecs/core/CMakeLists.linux-aarch64.txt +++ b/library/cpp/blockcodecs/core/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/core/CMakeLists.linux.txt b/library/cpp/blockcodecs/core/CMakeLists.linux.txt index 0fbd0b6ae5..407f8f62e1 100644 --- a/library/cpp/blockcodecs/core/CMakeLists.linux.txt +++ b/library/cpp/blockcodecs/core/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/blockcodecs/core/CMakeLists.txt b/library/cpp/blockcodecs/core/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/blockcodecs/core/CMakeLists.txt +++ b/library/cpp/blockcodecs/core/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/bucket_quoter/CMakeLists.darwin.txt b/library/cpp/bucket_quoter/CMakeLists.darwin.txt index 3f20798aed..64ef18e5d9 100644 --- a/library/cpp/bucket_quoter/CMakeLists.darwin.txt +++ b/library/cpp/bucket_quoter/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/bucket_quoter/CMakeLists.linux-aarch64.txt b/library/cpp/bucket_quoter/CMakeLists.linux-aarch64.txt index 3513a3b6df..249edbf20a 100644 --- a/library/cpp/bucket_quoter/CMakeLists.linux-aarch64.txt +++ b/library/cpp/bucket_quoter/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/bucket_quoter/CMakeLists.linux.txt b/library/cpp/bucket_quoter/CMakeLists.linux.txt index 3513a3b6df..249edbf20a 100644 --- a/library/cpp/bucket_quoter/CMakeLists.linux.txt +++ b/library/cpp/bucket_quoter/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/bucket_quoter/CMakeLists.txt b/library/cpp/bucket_quoter/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/bucket_quoter/CMakeLists.txt +++ b/library/cpp/bucket_quoter/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/build_info/CMakeLists.darwin.txt b/library/cpp/build_info/CMakeLists.darwin.txt index 1308ae1ed6..d80c3b7893 100644 --- a/library/cpp/build_info/CMakeLists.darwin.txt +++ b/library/cpp/build_info/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/build_info/CMakeLists.linux-aarch64.txt b/library/cpp/build_info/CMakeLists.linux-aarch64.txt index 71cca054b4..b839d5515e 100644 --- a/library/cpp/build_info/CMakeLists.linux-aarch64.txt +++ b/library/cpp/build_info/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/build_info/CMakeLists.linux.txt b/library/cpp/build_info/CMakeLists.linux.txt index 71cca054b4..b839d5515e 100644 --- a/library/cpp/build_info/CMakeLists.linux.txt +++ b/library/cpp/build_info/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/build_info/CMakeLists.txt b/library/cpp/build_info/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/build_info/CMakeLists.txt +++ b/library/cpp/build_info/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cache/CMakeLists.darwin.txt b/library/cpp/cache/CMakeLists.darwin.txt index 8b88a0562f..82cae52ee2 100644 --- a/library/cpp/cache/CMakeLists.darwin.txt +++ b/library/cpp/cache/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cache/CMakeLists.linux-aarch64.txt b/library/cpp/cache/CMakeLists.linux-aarch64.txt index ae6d09f6bc..4278ad1c77 100644 --- a/library/cpp/cache/CMakeLists.linux-aarch64.txt +++ b/library/cpp/cache/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cache/CMakeLists.linux.txt b/library/cpp/cache/CMakeLists.linux.txt index ae6d09f6bc..4278ad1c77 100644 --- a/library/cpp/cache/CMakeLists.linux.txt +++ b/library/cpp/cache/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cache/CMakeLists.txt b/library/cpp/cache/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/cache/CMakeLists.txt +++ b/library/cpp/cache/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/case_insensitive_string/CMakeLists.darwin.txt b/library/cpp/case_insensitive_string/CMakeLists.darwin.txt index c7bbde9588..d6d3602e2d 100644 --- a/library/cpp/case_insensitive_string/CMakeLists.darwin.txt +++ b/library/cpp/case_insensitive_string/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/case_insensitive_string/CMakeLists.linux-aarch64.txt b/library/cpp/case_insensitive_string/CMakeLists.linux-aarch64.txt index bceb1c8cb7..d02118b8f7 100644 --- a/library/cpp/case_insensitive_string/CMakeLists.linux-aarch64.txt +++ b/library/cpp/case_insensitive_string/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/case_insensitive_string/CMakeLists.linux.txt b/library/cpp/case_insensitive_string/CMakeLists.linux.txt index bceb1c8cb7..d02118b8f7 100644 --- a/library/cpp/case_insensitive_string/CMakeLists.linux.txt +++ b/library/cpp/case_insensitive_string/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/case_insensitive_string/CMakeLists.txt b/library/cpp/case_insensitive_string/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/case_insensitive_string/CMakeLists.txt +++ b/library/cpp/case_insensitive_string/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cgiparam/CMakeLists.darwin.txt b/library/cpp/cgiparam/CMakeLists.darwin.txt index 2b360f82a1..186d00a938 100644 --- a/library/cpp/cgiparam/CMakeLists.darwin.txt +++ b/library/cpp/cgiparam/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cgiparam/CMakeLists.linux-aarch64.txt b/library/cpp/cgiparam/CMakeLists.linux-aarch64.txt index cbd35ae798..eec57f881a 100644 --- a/library/cpp/cgiparam/CMakeLists.linux-aarch64.txt +++ b/library/cpp/cgiparam/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cgiparam/CMakeLists.linux.txt b/library/cpp/cgiparam/CMakeLists.linux.txt index cbd35ae798..eec57f881a 100644 --- a/library/cpp/cgiparam/CMakeLists.linux.txt +++ b/library/cpp/cgiparam/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cgiparam/CMakeLists.txt b/library/cpp/cgiparam/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/cgiparam/CMakeLists.txt +++ b/library/cpp/cgiparam/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/charset/CMakeLists.darwin.txt b/library/cpp/charset/CMakeLists.darwin.txt index cb5c16891d..2be179087c 100644 --- a/library/cpp/charset/CMakeLists.darwin.txt +++ b/library/cpp/charset/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/charset/CMakeLists.linux-aarch64.txt b/library/cpp/charset/CMakeLists.linux-aarch64.txt index 03b01e7c69..b2e97648f9 100644 --- a/library/cpp/charset/CMakeLists.linux-aarch64.txt +++ b/library/cpp/charset/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/charset/CMakeLists.linux.txt b/library/cpp/charset/CMakeLists.linux.txt index 03b01e7c69..b2e97648f9 100644 --- a/library/cpp/charset/CMakeLists.linux.txt +++ b/library/cpp/charset/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/charset/CMakeLists.txt b/library/cpp/charset/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/charset/CMakeLists.txt +++ b/library/cpp/charset/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/codecs/CMakeLists.darwin.txt b/library/cpp/codecs/CMakeLists.darwin.txt index 776e37d335..2bc3133ce1 100644 --- a/library/cpp/codecs/CMakeLists.darwin.txt +++ b/library/cpp/codecs/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/codecs/CMakeLists.linux-aarch64.txt b/library/cpp/codecs/CMakeLists.linux-aarch64.txt index 183a8c0739..e70090edcb 100644 --- a/library/cpp/codecs/CMakeLists.linux-aarch64.txt +++ b/library/cpp/codecs/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/codecs/CMakeLists.linux.txt b/library/cpp/codecs/CMakeLists.linux.txt index 183a8c0739..e70090edcb 100644 --- a/library/cpp/codecs/CMakeLists.linux.txt +++ b/library/cpp/codecs/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/codecs/CMakeLists.txt b/library/cpp/codecs/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/codecs/CMakeLists.txt +++ b/library/cpp/codecs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/codecs/greedy_dict/CMakeLists.darwin.txt b/library/cpp/codecs/greedy_dict/CMakeLists.darwin.txt index aee24f27e9..7f06cf83d8 100644 --- a/library/cpp/codecs/greedy_dict/CMakeLists.darwin.txt +++ b/library/cpp/codecs/greedy_dict/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/codecs/greedy_dict/CMakeLists.linux-aarch64.txt b/library/cpp/codecs/greedy_dict/CMakeLists.linux-aarch64.txt index ae35bfcfa2..734416a527 100644 --- a/library/cpp/codecs/greedy_dict/CMakeLists.linux-aarch64.txt +++ b/library/cpp/codecs/greedy_dict/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/codecs/greedy_dict/CMakeLists.linux.txt b/library/cpp/codecs/greedy_dict/CMakeLists.linux.txt index ae35bfcfa2..734416a527 100644 --- a/library/cpp/codecs/greedy_dict/CMakeLists.linux.txt +++ b/library/cpp/codecs/greedy_dict/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/codecs/greedy_dict/CMakeLists.txt b/library/cpp/codecs/greedy_dict/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/codecs/greedy_dict/CMakeLists.txt +++ b/library/cpp/codecs/greedy_dict/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/colorizer/CMakeLists.darwin.txt b/library/cpp/colorizer/CMakeLists.darwin.txt index 41068e8c8f..a47c86d7ea 100644 --- a/library/cpp/colorizer/CMakeLists.darwin.txt +++ b/library/cpp/colorizer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/colorizer/CMakeLists.linux-aarch64.txt b/library/cpp/colorizer/CMakeLists.linux-aarch64.txt index da3f19cc78..d407d96e14 100644 --- a/library/cpp/colorizer/CMakeLists.linux-aarch64.txt +++ b/library/cpp/colorizer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/colorizer/CMakeLists.linux.txt b/library/cpp/colorizer/CMakeLists.linux.txt index da3f19cc78..d407d96e14 100644 --- a/library/cpp/colorizer/CMakeLists.linux.txt +++ b/library/cpp/colorizer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/colorizer/CMakeLists.txt b/library/cpp/colorizer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/colorizer/CMakeLists.txt +++ b/library/cpp/colorizer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/compproto/CMakeLists.darwin.txt b/library/cpp/compproto/CMakeLists.darwin.txt index efca6472a2..abcc95d486 100644 --- a/library/cpp/compproto/CMakeLists.darwin.txt +++ b/library/cpp/compproto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/compproto/CMakeLists.linux-aarch64.txt b/library/cpp/compproto/CMakeLists.linux-aarch64.txt index 59bcdb195c..f7c1ee7be7 100644 --- a/library/cpp/compproto/CMakeLists.linux-aarch64.txt +++ b/library/cpp/compproto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/compproto/CMakeLists.linux.txt b/library/cpp/compproto/CMakeLists.linux.txt index 59bcdb195c..f7c1ee7be7 100644 --- a/library/cpp/compproto/CMakeLists.linux.txt +++ b/library/cpp/compproto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/compproto/CMakeLists.txt b/library/cpp/compproto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/compproto/CMakeLists.txt +++ b/library/cpp/compproto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/comptable/CMakeLists.darwin.txt b/library/cpp/comptable/CMakeLists.darwin.txt index e1c2fde855..e695ca6521 100644 --- a/library/cpp/comptable/CMakeLists.darwin.txt +++ b/library/cpp/comptable/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/comptable/CMakeLists.linux-aarch64.txt b/library/cpp/comptable/CMakeLists.linux-aarch64.txt index e67292b425..d438e07d93 100644 --- a/library/cpp/comptable/CMakeLists.linux-aarch64.txt +++ b/library/cpp/comptable/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/comptable/CMakeLists.linux.txt b/library/cpp/comptable/CMakeLists.linux.txt index e67292b425..d438e07d93 100644 --- a/library/cpp/comptable/CMakeLists.linux.txt +++ b/library/cpp/comptable/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/comptable/CMakeLists.txt b/library/cpp/comptable/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/comptable/CMakeLists.txt +++ b/library/cpp/comptable/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/config/CMakeLists.darwin.txt b/library/cpp/config/CMakeLists.darwin.txt index ff3bb032ac..b5e4b4686e 100644 --- a/library/cpp/config/CMakeLists.darwin.txt +++ b/library/cpp/config/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/config/CMakeLists.linux-aarch64.txt b/library/cpp/config/CMakeLists.linux-aarch64.txt index f86696046e..b9f853c8c8 100644 --- a/library/cpp/config/CMakeLists.linux-aarch64.txt +++ b/library/cpp/config/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/config/CMakeLists.linux.txt b/library/cpp/config/CMakeLists.linux.txt index f86696046e..b9f853c8c8 100644 --- a/library/cpp/config/CMakeLists.linux.txt +++ b/library/cpp/config/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/config/CMakeLists.txt b/library/cpp/config/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/config/CMakeLists.txt +++ b/library/cpp/config/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/2d_array/CMakeLists.darwin.txt b/library/cpp/containers/2d_array/CMakeLists.darwin.txt index cd7339a2fb..c1371c0def 100644 --- a/library/cpp/containers/2d_array/CMakeLists.darwin.txt +++ b/library/cpp/containers/2d_array/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/2d_array/CMakeLists.linux-aarch64.txt b/library/cpp/containers/2d_array/CMakeLists.linux-aarch64.txt index ed411391b7..25140f3dc9 100644 --- a/library/cpp/containers/2d_array/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/2d_array/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/2d_array/CMakeLists.linux.txt b/library/cpp/containers/2d_array/CMakeLists.linux.txt index ed411391b7..25140f3dc9 100644 --- a/library/cpp/containers/2d_array/CMakeLists.linux.txt +++ b/library/cpp/containers/2d_array/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/2d_array/CMakeLists.txt b/library/cpp/containers/2d_array/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/2d_array/CMakeLists.txt +++ b/library/cpp/containers/2d_array/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/CMakeLists.txt b/library/cpp/containers/CMakeLists.txt index 47256015a0..b782222041 100644 --- a/library/cpp/containers/CMakeLists.txt +++ b/library/cpp/containers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/absl_flat_hash/CMakeLists.darwin.txt b/library/cpp/containers/absl_flat_hash/CMakeLists.darwin.txt index aeed1a3f3d..4ab79d02db 100644 --- a/library/cpp/containers/absl_flat_hash/CMakeLists.darwin.txt +++ b/library/cpp/containers/absl_flat_hash/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/absl_flat_hash/CMakeLists.linux-aarch64.txt b/library/cpp/containers/absl_flat_hash/CMakeLists.linux-aarch64.txt index fe55f4aef7..379fc48361 100644 --- a/library/cpp/containers/absl_flat_hash/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/absl_flat_hash/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/absl_flat_hash/CMakeLists.linux.txt b/library/cpp/containers/absl_flat_hash/CMakeLists.linux.txt index fe55f4aef7..379fc48361 100644 --- a/library/cpp/containers/absl_flat_hash/CMakeLists.linux.txt +++ b/library/cpp/containers/absl_flat_hash/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/absl_flat_hash/CMakeLists.txt b/library/cpp/containers/absl_flat_hash/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/absl_flat_hash/CMakeLists.txt +++ b/library/cpp/containers/absl_flat_hash/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/atomizer/CMakeLists.darwin.txt b/library/cpp/containers/atomizer/CMakeLists.darwin.txt index 296d4292ad..d0486e1c36 100644 --- a/library/cpp/containers/atomizer/CMakeLists.darwin.txt +++ b/library/cpp/containers/atomizer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/atomizer/CMakeLists.linux-aarch64.txt b/library/cpp/containers/atomizer/CMakeLists.linux-aarch64.txt index dabe644416..2db431da3f 100644 --- a/library/cpp/containers/atomizer/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/atomizer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/atomizer/CMakeLists.linux.txt b/library/cpp/containers/atomizer/CMakeLists.linux.txt index dabe644416..2db431da3f 100644 --- a/library/cpp/containers/atomizer/CMakeLists.linux.txt +++ b/library/cpp/containers/atomizer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/atomizer/CMakeLists.txt b/library/cpp/containers/atomizer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/atomizer/CMakeLists.txt +++ b/library/cpp/containers/atomizer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/bitseq/CMakeLists.darwin.txt b/library/cpp/containers/bitseq/CMakeLists.darwin.txt index 1d730a2627..97b139a7fa 100644 --- a/library/cpp/containers/bitseq/CMakeLists.darwin.txt +++ b/library/cpp/containers/bitseq/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/bitseq/CMakeLists.linux-aarch64.txt b/library/cpp/containers/bitseq/CMakeLists.linux-aarch64.txt index 8b9cc5e039..758be4fd4c 100644 --- a/library/cpp/containers/bitseq/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/bitseq/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/bitseq/CMakeLists.linux.txt b/library/cpp/containers/bitseq/CMakeLists.linux.txt index 8b9cc5e039..758be4fd4c 100644 --- a/library/cpp/containers/bitseq/CMakeLists.linux.txt +++ b/library/cpp/containers/bitseq/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/bitseq/CMakeLists.txt b/library/cpp/containers/bitseq/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/bitseq/CMakeLists.txt +++ b/library/cpp/containers/bitseq/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/compact_vector/CMakeLists.darwin.txt b/library/cpp/containers/compact_vector/CMakeLists.darwin.txt index f5e51e3fb6..57d3af0a1b 100644 --- a/library/cpp/containers/compact_vector/CMakeLists.darwin.txt +++ b/library/cpp/containers/compact_vector/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/compact_vector/CMakeLists.linux-aarch64.txt b/library/cpp/containers/compact_vector/CMakeLists.linux-aarch64.txt index 705b18ee37..a2171479e9 100644 --- a/library/cpp/containers/compact_vector/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/compact_vector/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/compact_vector/CMakeLists.linux.txt b/library/cpp/containers/compact_vector/CMakeLists.linux.txt index 705b18ee37..a2171479e9 100644 --- a/library/cpp/containers/compact_vector/CMakeLists.linux.txt +++ b/library/cpp/containers/compact_vector/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/compact_vector/CMakeLists.txt b/library/cpp/containers/compact_vector/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/compact_vector/CMakeLists.txt +++ b/library/cpp/containers/compact_vector/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/comptrie/CMakeLists.darwin.txt b/library/cpp/containers/comptrie/CMakeLists.darwin.txt index b1a1259c3a..3a3d86aed7 100644 --- a/library/cpp/containers/comptrie/CMakeLists.darwin.txt +++ b/library/cpp/containers/comptrie/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/comptrie/CMakeLists.linux-aarch64.txt b/library/cpp/containers/comptrie/CMakeLists.linux-aarch64.txt index cb761f4ab0..599cc37088 100644 --- a/library/cpp/containers/comptrie/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/comptrie/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/comptrie/CMakeLists.linux.txt b/library/cpp/containers/comptrie/CMakeLists.linux.txt index cb761f4ab0..599cc37088 100644 --- a/library/cpp/containers/comptrie/CMakeLists.linux.txt +++ b/library/cpp/containers/comptrie/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/comptrie/CMakeLists.txt b/library/cpp/containers/comptrie/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/comptrie/CMakeLists.txt +++ b/library/cpp/containers/comptrie/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/disjoint_interval_tree/CMakeLists.darwin.txt b/library/cpp/containers/disjoint_interval_tree/CMakeLists.darwin.txt index 88d6b886b3..1fd4597d59 100644 --- a/library/cpp/containers/disjoint_interval_tree/CMakeLists.darwin.txt +++ b/library/cpp/containers/disjoint_interval_tree/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/disjoint_interval_tree/CMakeLists.linux-aarch64.txt b/library/cpp/containers/disjoint_interval_tree/CMakeLists.linux-aarch64.txt index 5a00fb808f..c62ad5f23c 100644 --- a/library/cpp/containers/disjoint_interval_tree/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/disjoint_interval_tree/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/disjoint_interval_tree/CMakeLists.linux.txt b/library/cpp/containers/disjoint_interval_tree/CMakeLists.linux.txt index 5a00fb808f..c62ad5f23c 100644 --- a/library/cpp/containers/disjoint_interval_tree/CMakeLists.linux.txt +++ b/library/cpp/containers/disjoint_interval_tree/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/disjoint_interval_tree/CMakeLists.txt b/library/cpp/containers/disjoint_interval_tree/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/disjoint_interval_tree/CMakeLists.txt +++ b/library/cpp/containers/disjoint_interval_tree/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/flat_hash/CMakeLists.darwin.txt b/library/cpp/containers/flat_hash/CMakeLists.darwin.txt index 11e1864b0a..17eb5a21b7 100644 --- a/library/cpp/containers/flat_hash/CMakeLists.darwin.txt +++ b/library/cpp/containers/flat_hash/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/flat_hash/CMakeLists.linux-aarch64.txt b/library/cpp/containers/flat_hash/CMakeLists.linux-aarch64.txt index 89b7265143..d5ab2865c7 100644 --- a/library/cpp/containers/flat_hash/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/flat_hash/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/flat_hash/CMakeLists.linux.txt b/library/cpp/containers/flat_hash/CMakeLists.linux.txt index 89b7265143..d5ab2865c7 100644 --- a/library/cpp/containers/flat_hash/CMakeLists.linux.txt +++ b/library/cpp/containers/flat_hash/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/flat_hash/CMakeLists.txt b/library/cpp/containers/flat_hash/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/flat_hash/CMakeLists.txt +++ b/library/cpp/containers/flat_hash/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/intrusive_avl_tree/CMakeLists.darwin.txt b/library/cpp/containers/intrusive_avl_tree/CMakeLists.darwin.txt index 58f8367088..651df561c1 100644 --- a/library/cpp/containers/intrusive_avl_tree/CMakeLists.darwin.txt +++ b/library/cpp/containers/intrusive_avl_tree/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/intrusive_avl_tree/CMakeLists.linux-aarch64.txt b/library/cpp/containers/intrusive_avl_tree/CMakeLists.linux-aarch64.txt index 8ac656ad60..b558f155bc 100644 --- a/library/cpp/containers/intrusive_avl_tree/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/intrusive_avl_tree/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/intrusive_avl_tree/CMakeLists.linux.txt b/library/cpp/containers/intrusive_avl_tree/CMakeLists.linux.txt index 8ac656ad60..b558f155bc 100644 --- a/library/cpp/containers/intrusive_avl_tree/CMakeLists.linux.txt +++ b/library/cpp/containers/intrusive_avl_tree/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/intrusive_avl_tree/CMakeLists.txt b/library/cpp/containers/intrusive_avl_tree/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/intrusive_avl_tree/CMakeLists.txt +++ b/library/cpp/containers/intrusive_avl_tree/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/intrusive_rb_tree/CMakeLists.darwin.txt b/library/cpp/containers/intrusive_rb_tree/CMakeLists.darwin.txt index 0c626f6cba..45d7acb838 100644 --- a/library/cpp/containers/intrusive_rb_tree/CMakeLists.darwin.txt +++ b/library/cpp/containers/intrusive_rb_tree/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/intrusive_rb_tree/CMakeLists.linux-aarch64.txt b/library/cpp/containers/intrusive_rb_tree/CMakeLists.linux-aarch64.txt index 8a46ac4ef0..82927607d1 100644 --- a/library/cpp/containers/intrusive_rb_tree/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/intrusive_rb_tree/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/intrusive_rb_tree/CMakeLists.linux.txt b/library/cpp/containers/intrusive_rb_tree/CMakeLists.linux.txt index 8a46ac4ef0..82927607d1 100644 --- a/library/cpp/containers/intrusive_rb_tree/CMakeLists.linux.txt +++ b/library/cpp/containers/intrusive_rb_tree/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/intrusive_rb_tree/CMakeLists.txt b/library/cpp/containers/intrusive_rb_tree/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/intrusive_rb_tree/CMakeLists.txt +++ b/library/cpp/containers/intrusive_rb_tree/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/paged_vector/CMakeLists.darwin.txt b/library/cpp/containers/paged_vector/CMakeLists.darwin.txt index 8a88a59482..c44af664bc 100644 --- a/library/cpp/containers/paged_vector/CMakeLists.darwin.txt +++ b/library/cpp/containers/paged_vector/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/paged_vector/CMakeLists.linux-aarch64.txt b/library/cpp/containers/paged_vector/CMakeLists.linux-aarch64.txt index 31e11d56f9..b1f740cc45 100644 --- a/library/cpp/containers/paged_vector/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/paged_vector/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/paged_vector/CMakeLists.linux.txt b/library/cpp/containers/paged_vector/CMakeLists.linux.txt index 31e11d56f9..b1f740cc45 100644 --- a/library/cpp/containers/paged_vector/CMakeLists.linux.txt +++ b/library/cpp/containers/paged_vector/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/paged_vector/CMakeLists.txt b/library/cpp/containers/paged_vector/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/paged_vector/CMakeLists.txt +++ b/library/cpp/containers/paged_vector/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/ring_buffer/CMakeLists.darwin.txt b/library/cpp/containers/ring_buffer/CMakeLists.darwin.txt index b59b1af604..490e1427d4 100644 --- a/library/cpp/containers/ring_buffer/CMakeLists.darwin.txt +++ b/library/cpp/containers/ring_buffer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/ring_buffer/CMakeLists.linux-aarch64.txt b/library/cpp/containers/ring_buffer/CMakeLists.linux-aarch64.txt index f0cd02503c..59e7ab0928 100644 --- a/library/cpp/containers/ring_buffer/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/ring_buffer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/ring_buffer/CMakeLists.linux.txt b/library/cpp/containers/ring_buffer/CMakeLists.linux.txt index f0cd02503c..59e7ab0928 100644 --- a/library/cpp/containers/ring_buffer/CMakeLists.linux.txt +++ b/library/cpp/containers/ring_buffer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/ring_buffer/CMakeLists.txt b/library/cpp/containers/ring_buffer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/ring_buffer/CMakeLists.txt +++ b/library/cpp/containers/ring_buffer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/sorted_vector/CMakeLists.darwin.txt b/library/cpp/containers/sorted_vector/CMakeLists.darwin.txt index 26b0a47688..e1438df974 100644 --- a/library/cpp/containers/sorted_vector/CMakeLists.darwin.txt +++ b/library/cpp/containers/sorted_vector/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/sorted_vector/CMakeLists.linux-aarch64.txt b/library/cpp/containers/sorted_vector/CMakeLists.linux-aarch64.txt index 5333cc9b7a..8af3de1300 100644 --- a/library/cpp/containers/sorted_vector/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/sorted_vector/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/sorted_vector/CMakeLists.linux.txt b/library/cpp/containers/sorted_vector/CMakeLists.linux.txt index 5333cc9b7a..8af3de1300 100644 --- a/library/cpp/containers/sorted_vector/CMakeLists.linux.txt +++ b/library/cpp/containers/sorted_vector/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/sorted_vector/CMakeLists.txt b/library/cpp/containers/sorted_vector/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/sorted_vector/CMakeLists.txt +++ b/library/cpp/containers/sorted_vector/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/stack_array/CMakeLists.darwin.txt b/library/cpp/containers/stack_array/CMakeLists.darwin.txt index 6062e296aa..83fde56a05 100644 --- a/library/cpp/containers/stack_array/CMakeLists.darwin.txt +++ b/library/cpp/containers/stack_array/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/stack_array/CMakeLists.linux-aarch64.txt b/library/cpp/containers/stack_array/CMakeLists.linux-aarch64.txt index 2efefec797..1d3d430a32 100644 --- a/library/cpp/containers/stack_array/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/stack_array/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/stack_array/CMakeLists.linux.txt b/library/cpp/containers/stack_array/CMakeLists.linux.txt index 2efefec797..1d3d430a32 100644 --- a/library/cpp/containers/stack_array/CMakeLists.linux.txt +++ b/library/cpp/containers/stack_array/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/stack_array/CMakeLists.txt b/library/cpp/containers/stack_array/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/stack_array/CMakeLists.txt +++ b/library/cpp/containers/stack_array/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/stack_vector/CMakeLists.darwin.txt b/library/cpp/containers/stack_vector/CMakeLists.darwin.txt index 89a2a0aca8..2950b6b535 100644 --- a/library/cpp/containers/stack_vector/CMakeLists.darwin.txt +++ b/library/cpp/containers/stack_vector/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/stack_vector/CMakeLists.linux-aarch64.txt b/library/cpp/containers/stack_vector/CMakeLists.linux-aarch64.txt index 370a7e0d44..c4bb46961f 100644 --- a/library/cpp/containers/stack_vector/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/stack_vector/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/stack_vector/CMakeLists.linux.txt b/library/cpp/containers/stack_vector/CMakeLists.linux.txt index 370a7e0d44..c4bb46961f 100644 --- a/library/cpp/containers/stack_vector/CMakeLists.linux.txt +++ b/library/cpp/containers/stack_vector/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/stack_vector/CMakeLists.txt b/library/cpp/containers/stack_vector/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/stack_vector/CMakeLists.txt +++ b/library/cpp/containers/stack_vector/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/str_map/CMakeLists.darwin.txt b/library/cpp/containers/str_map/CMakeLists.darwin.txt index 24888fd3a4..ee42c250c6 100644 --- a/library/cpp/containers/str_map/CMakeLists.darwin.txt +++ b/library/cpp/containers/str_map/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/str_map/CMakeLists.linux-aarch64.txt b/library/cpp/containers/str_map/CMakeLists.linux-aarch64.txt index 2669acee3d..e78f115ba1 100644 --- a/library/cpp/containers/str_map/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/str_map/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/str_map/CMakeLists.linux.txt b/library/cpp/containers/str_map/CMakeLists.linux.txt index 2669acee3d..e78f115ba1 100644 --- a/library/cpp/containers/str_map/CMakeLists.linux.txt +++ b/library/cpp/containers/str_map/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/str_map/CMakeLists.txt b/library/cpp/containers/str_map/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/str_map/CMakeLists.txt +++ b/library/cpp/containers/str_map/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/top_keeper/CMakeLists.darwin.txt b/library/cpp/containers/top_keeper/CMakeLists.darwin.txt index a3f6fac500..cc2996b511 100644 --- a/library/cpp/containers/top_keeper/CMakeLists.darwin.txt +++ b/library/cpp/containers/top_keeper/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/top_keeper/CMakeLists.linux-aarch64.txt b/library/cpp/containers/top_keeper/CMakeLists.linux-aarch64.txt index a150f56fdd..0549b8da46 100644 --- a/library/cpp/containers/top_keeper/CMakeLists.linux-aarch64.txt +++ b/library/cpp/containers/top_keeper/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/top_keeper/CMakeLists.linux.txt b/library/cpp/containers/top_keeper/CMakeLists.linux.txt index a150f56fdd..0549b8da46 100644 --- a/library/cpp/containers/top_keeper/CMakeLists.linux.txt +++ b/library/cpp/containers/top_keeper/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/containers/top_keeper/CMakeLists.txt b/library/cpp/containers/top_keeper/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/containers/top_keeper/CMakeLists.txt +++ b/library/cpp/containers/top_keeper/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/coroutine/CMakeLists.txt b/library/cpp/coroutine/CMakeLists.txt index e684f539b2..865443d945 100644 --- a/library/cpp/coroutine/CMakeLists.txt +++ b/library/cpp/coroutine/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/coroutine/engine/CMakeLists.darwin.txt b/library/cpp/coroutine/engine/CMakeLists.darwin.txt index da424f72d7..be1a41d15f 100644 --- a/library/cpp/coroutine/engine/CMakeLists.darwin.txt +++ b/library/cpp/coroutine/engine/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/coroutine/engine/CMakeLists.linux-aarch64.txt b/library/cpp/coroutine/engine/CMakeLists.linux-aarch64.txt index 61e7371d82..7b3580b27f 100644 --- a/library/cpp/coroutine/engine/CMakeLists.linux-aarch64.txt +++ b/library/cpp/coroutine/engine/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/coroutine/engine/CMakeLists.linux.txt b/library/cpp/coroutine/engine/CMakeLists.linux.txt index 61e7371d82..7b3580b27f 100644 --- a/library/cpp/coroutine/engine/CMakeLists.linux.txt +++ b/library/cpp/coroutine/engine/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/coroutine/engine/CMakeLists.txt b/library/cpp/coroutine/engine/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/coroutine/engine/CMakeLists.txt +++ b/library/cpp/coroutine/engine/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/coroutine/listener/CMakeLists.darwin.txt b/library/cpp/coroutine/listener/CMakeLists.darwin.txt index 585aa89816..125cb4b2ed 100644 --- a/library/cpp/coroutine/listener/CMakeLists.darwin.txt +++ b/library/cpp/coroutine/listener/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/coroutine/listener/CMakeLists.linux-aarch64.txt b/library/cpp/coroutine/listener/CMakeLists.linux-aarch64.txt index a9494fef75..6e1b4b95d1 100644 --- a/library/cpp/coroutine/listener/CMakeLists.linux-aarch64.txt +++ b/library/cpp/coroutine/listener/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/coroutine/listener/CMakeLists.linux.txt b/library/cpp/coroutine/listener/CMakeLists.linux.txt index a9494fef75..6e1b4b95d1 100644 --- a/library/cpp/coroutine/listener/CMakeLists.linux.txt +++ b/library/cpp/coroutine/listener/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/coroutine/listener/CMakeLists.txt b/library/cpp/coroutine/listener/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/coroutine/listener/CMakeLists.txt +++ b/library/cpp/coroutine/listener/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cppparser/CMakeLists.darwin.txt b/library/cpp/cppparser/CMakeLists.darwin.txt index d77f7e725d..73f1df8e6f 100644 --- a/library/cpp/cppparser/CMakeLists.darwin.txt +++ b/library/cpp/cppparser/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cppparser/CMakeLists.linux-aarch64.txt b/library/cpp/cppparser/CMakeLists.linux-aarch64.txt index bd38bb85e3..1e9530b77d 100644 --- a/library/cpp/cppparser/CMakeLists.linux-aarch64.txt +++ b/library/cpp/cppparser/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cppparser/CMakeLists.linux.txt b/library/cpp/cppparser/CMakeLists.linux.txt index bd38bb85e3..1e9530b77d 100644 --- a/library/cpp/cppparser/CMakeLists.linux.txt +++ b/library/cpp/cppparser/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cppparser/CMakeLists.txt b/library/cpp/cppparser/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/cppparser/CMakeLists.txt +++ b/library/cpp/cppparser/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cpuid_check/CMakeLists.darwin.txt b/library/cpp/cpuid_check/CMakeLists.darwin.txt index 4e9fc0d5d4..78664f1ffe 100644 --- a/library/cpp/cpuid_check/CMakeLists.darwin.txt +++ b/library/cpp/cpuid_check/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cpuid_check/CMakeLists.linux.txt b/library/cpp/cpuid_check/CMakeLists.linux.txt index abca0f5e94..a45f22e5e3 100644 --- a/library/cpp/cpuid_check/CMakeLists.linux.txt +++ b/library/cpp/cpuid_check/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/cpuid_check/CMakeLists.txt b/library/cpp/cpuid_check/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/library/cpp/cpuid_check/CMakeLists.txt +++ b/library/cpp/cpuid_check/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/dbg_output/CMakeLists.darwin.txt b/library/cpp/dbg_output/CMakeLists.darwin.txt index 13652632f6..6e29430ec2 100644 --- a/library/cpp/dbg_output/CMakeLists.darwin.txt +++ b/library/cpp/dbg_output/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/dbg_output/CMakeLists.linux-aarch64.txt b/library/cpp/dbg_output/CMakeLists.linux-aarch64.txt index 09a29146d4..1e819ca723 100644 --- a/library/cpp/dbg_output/CMakeLists.linux-aarch64.txt +++ b/library/cpp/dbg_output/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/dbg_output/CMakeLists.linux.txt b/library/cpp/dbg_output/CMakeLists.linux.txt index 09a29146d4..1e819ca723 100644 --- a/library/cpp/dbg_output/CMakeLists.linux.txt +++ b/library/cpp/dbg_output/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/dbg_output/CMakeLists.txt b/library/cpp/dbg_output/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/dbg_output/CMakeLists.txt +++ b/library/cpp/dbg_output/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/CMakeLists.txt b/library/cpp/deprecated/CMakeLists.txt index 3afb649cd0..ad818e3662 100644 --- a/library/cpp/deprecated/CMakeLists.txt +++ b/library/cpp/deprecated/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/accessors/CMakeLists.darwin.txt b/library/cpp/deprecated/accessors/CMakeLists.darwin.txt index d7056aa5d6..62226eb559 100644 --- a/library/cpp/deprecated/accessors/CMakeLists.darwin.txt +++ b/library/cpp/deprecated/accessors/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/accessors/CMakeLists.linux-aarch64.txt b/library/cpp/deprecated/accessors/CMakeLists.linux-aarch64.txt index 56eaadf643..0d8a3a9ed2 100644 --- a/library/cpp/deprecated/accessors/CMakeLists.linux-aarch64.txt +++ b/library/cpp/deprecated/accessors/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/accessors/CMakeLists.linux.txt b/library/cpp/deprecated/accessors/CMakeLists.linux.txt index 56eaadf643..0d8a3a9ed2 100644 --- a/library/cpp/deprecated/accessors/CMakeLists.linux.txt +++ b/library/cpp/deprecated/accessors/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/accessors/CMakeLists.txt b/library/cpp/deprecated/accessors/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/deprecated/accessors/CMakeLists.txt +++ b/library/cpp/deprecated/accessors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/atomic/CMakeLists.darwin.txt b/library/cpp/deprecated/atomic/CMakeLists.darwin.txt index 7afcd3565d..411024be15 100644 --- a/library/cpp/deprecated/atomic/CMakeLists.darwin.txt +++ b/library/cpp/deprecated/atomic/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/atomic/CMakeLists.linux-aarch64.txt b/library/cpp/deprecated/atomic/CMakeLists.linux-aarch64.txt index 706127dd15..29db7b690f 100644 --- a/library/cpp/deprecated/atomic/CMakeLists.linux-aarch64.txt +++ b/library/cpp/deprecated/atomic/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/atomic/CMakeLists.linux.txt b/library/cpp/deprecated/atomic/CMakeLists.linux.txt index 706127dd15..29db7b690f 100644 --- a/library/cpp/deprecated/atomic/CMakeLists.linux.txt +++ b/library/cpp/deprecated/atomic/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/atomic/CMakeLists.txt b/library/cpp/deprecated/atomic/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/deprecated/atomic/CMakeLists.txt +++ b/library/cpp/deprecated/atomic/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/enum_codegen/CMakeLists.darwin.txt b/library/cpp/deprecated/enum_codegen/CMakeLists.darwin.txt index a35b336170..3ec6a99b97 100644 --- a/library/cpp/deprecated/enum_codegen/CMakeLists.darwin.txt +++ b/library/cpp/deprecated/enum_codegen/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/enum_codegen/CMakeLists.linux-aarch64.txt b/library/cpp/deprecated/enum_codegen/CMakeLists.linux-aarch64.txt index 0855fdce8d..255bbbe453 100644 --- a/library/cpp/deprecated/enum_codegen/CMakeLists.linux-aarch64.txt +++ b/library/cpp/deprecated/enum_codegen/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/enum_codegen/CMakeLists.linux.txt b/library/cpp/deprecated/enum_codegen/CMakeLists.linux.txt index 0855fdce8d..255bbbe453 100644 --- a/library/cpp/deprecated/enum_codegen/CMakeLists.linux.txt +++ b/library/cpp/deprecated/enum_codegen/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/enum_codegen/CMakeLists.txt b/library/cpp/deprecated/enum_codegen/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/deprecated/enum_codegen/CMakeLists.txt +++ b/library/cpp/deprecated/enum_codegen/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/kmp/CMakeLists.darwin.txt b/library/cpp/deprecated/kmp/CMakeLists.darwin.txt index 71f0b8fd1a..1a8b825dad 100644 --- a/library/cpp/deprecated/kmp/CMakeLists.darwin.txt +++ b/library/cpp/deprecated/kmp/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/kmp/CMakeLists.linux-aarch64.txt b/library/cpp/deprecated/kmp/CMakeLists.linux-aarch64.txt index 9f105605ae..ed7a436e3c 100644 --- a/library/cpp/deprecated/kmp/CMakeLists.linux-aarch64.txt +++ b/library/cpp/deprecated/kmp/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/kmp/CMakeLists.linux.txt b/library/cpp/deprecated/kmp/CMakeLists.linux.txt index 9f105605ae..ed7a436e3c 100644 --- a/library/cpp/deprecated/kmp/CMakeLists.linux.txt +++ b/library/cpp/deprecated/kmp/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/kmp/CMakeLists.txt b/library/cpp/deprecated/kmp/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/deprecated/kmp/CMakeLists.txt +++ b/library/cpp/deprecated/kmp/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/split/CMakeLists.darwin.txt b/library/cpp/deprecated/split/CMakeLists.darwin.txt index d2a9fd7309..d23b1620f7 100644 --- a/library/cpp/deprecated/split/CMakeLists.darwin.txt +++ b/library/cpp/deprecated/split/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/split/CMakeLists.linux-aarch64.txt b/library/cpp/deprecated/split/CMakeLists.linux-aarch64.txt index f858c1775f..4851ba6aba 100644 --- a/library/cpp/deprecated/split/CMakeLists.linux-aarch64.txt +++ b/library/cpp/deprecated/split/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/split/CMakeLists.linux.txt b/library/cpp/deprecated/split/CMakeLists.linux.txt index f858c1775f..4851ba6aba 100644 --- a/library/cpp/deprecated/split/CMakeLists.linux.txt +++ b/library/cpp/deprecated/split/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/deprecated/split/CMakeLists.txt b/library/cpp/deprecated/split/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/deprecated/split/CMakeLists.txt +++ b/library/cpp/deprecated/split/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/diff/CMakeLists.darwin.txt b/library/cpp/diff/CMakeLists.darwin.txt index 53785b9c0d..f6c4677907 100644 --- a/library/cpp/diff/CMakeLists.darwin.txt +++ b/library/cpp/diff/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/diff/CMakeLists.linux-aarch64.txt b/library/cpp/diff/CMakeLists.linux-aarch64.txt index 36d694a9a4..47ba972f0f 100644 --- a/library/cpp/diff/CMakeLists.linux-aarch64.txt +++ b/library/cpp/diff/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/diff/CMakeLists.linux.txt b/library/cpp/diff/CMakeLists.linux.txt index 36d694a9a4..47ba972f0f 100644 --- a/library/cpp/diff/CMakeLists.linux.txt +++ b/library/cpp/diff/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/diff/CMakeLists.txt b/library/cpp/diff/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/diff/CMakeLists.txt +++ b/library/cpp/diff/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/CMakeLists.txt b/library/cpp/digest/CMakeLists.txt index 7c361872e4..1cb9552331 100644 --- a/library/cpp/digest/CMakeLists.txt +++ b/library/cpp/digest/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/CMakeLists.darwin.txt b/library/cpp/digest/argonish/CMakeLists.darwin.txt index 617cc9aa13..7b132051da 100644 --- a/library/cpp/digest/argonish/CMakeLists.darwin.txt +++ b/library/cpp/digest/argonish/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/CMakeLists.linux-aarch64.txt b/library/cpp/digest/argonish/CMakeLists.linux-aarch64.txt index 66ab4d61ce..94d73f4522 100644 --- a/library/cpp/digest/argonish/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/argonish/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/CMakeLists.linux.txt b/library/cpp/digest/argonish/CMakeLists.linux.txt index 5da6d6e49c..2eafc5fe69 100644 --- a/library/cpp/digest/argonish/CMakeLists.linux.txt +++ b/library/cpp/digest/argonish/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/CMakeLists.txt b/library/cpp/digest/argonish/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/argonish/CMakeLists.txt +++ b/library/cpp/digest/argonish/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/CMakeLists.txt b/library/cpp/digest/argonish/internal/CMakeLists.txt index 8311b4e2a7..7ade5161ea 100644 --- a/library/cpp/digest/argonish/internal/CMakeLists.txt +++ b/library/cpp/digest/argonish/internal/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/argon2/CMakeLists.darwin.txt b/library/cpp/digest/argonish/internal/argon2/CMakeLists.darwin.txt index cded958216..e2dbc9ace9 100644 --- a/library/cpp/digest/argonish/internal/argon2/CMakeLists.darwin.txt +++ b/library/cpp/digest/argonish/internal/argon2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/argon2/CMakeLists.linux-aarch64.txt b/library/cpp/digest/argonish/internal/argon2/CMakeLists.linux-aarch64.txt index ffa2bb1146..b0bc4fd1cd 100644 --- a/library/cpp/digest/argonish/internal/argon2/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/argonish/internal/argon2/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/argon2/CMakeLists.linux.txt b/library/cpp/digest/argonish/internal/argon2/CMakeLists.linux.txt index ffa2bb1146..b0bc4fd1cd 100644 --- a/library/cpp/digest/argonish/internal/argon2/CMakeLists.linux.txt +++ b/library/cpp/digest/argonish/internal/argon2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/argon2/CMakeLists.txt b/library/cpp/digest/argonish/internal/argon2/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/argonish/internal/argon2/CMakeLists.txt +++ b/library/cpp/digest/argonish/internal/argon2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/blake2b/CMakeLists.darwin.txt b/library/cpp/digest/argonish/internal/blake2b/CMakeLists.darwin.txt index 3b3ff75316..63474af49f 100644 --- a/library/cpp/digest/argonish/internal/blake2b/CMakeLists.darwin.txt +++ b/library/cpp/digest/argonish/internal/blake2b/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/blake2b/CMakeLists.linux-aarch64.txt b/library/cpp/digest/argonish/internal/blake2b/CMakeLists.linux-aarch64.txt index b33e219cd5..390ba10548 100644 --- a/library/cpp/digest/argonish/internal/blake2b/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/argonish/internal/blake2b/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/blake2b/CMakeLists.linux.txt b/library/cpp/digest/argonish/internal/blake2b/CMakeLists.linux.txt index b33e219cd5..390ba10548 100644 --- a/library/cpp/digest/argonish/internal/blake2b/CMakeLists.linux.txt +++ b/library/cpp/digest/argonish/internal/blake2b/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/blake2b/CMakeLists.txt b/library/cpp/digest/argonish/internal/blake2b/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/argonish/internal/blake2b/CMakeLists.txt +++ b/library/cpp/digest/argonish/internal/blake2b/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/blamka/CMakeLists.darwin.txt b/library/cpp/digest/argonish/internal/blamka/CMakeLists.darwin.txt index 61d5ee7284..7e8d1fcb36 100644 --- a/library/cpp/digest/argonish/internal/blamka/CMakeLists.darwin.txt +++ b/library/cpp/digest/argonish/internal/blamka/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/blamka/CMakeLists.linux-aarch64.txt b/library/cpp/digest/argonish/internal/blamka/CMakeLists.linux-aarch64.txt index 9faf79895e..f6df186ad2 100644 --- a/library/cpp/digest/argonish/internal/blamka/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/argonish/internal/blamka/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/blamka/CMakeLists.linux.txt b/library/cpp/digest/argonish/internal/blamka/CMakeLists.linux.txt index 9faf79895e..f6df186ad2 100644 --- a/library/cpp/digest/argonish/internal/blamka/CMakeLists.linux.txt +++ b/library/cpp/digest/argonish/internal/blamka/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/blamka/CMakeLists.txt b/library/cpp/digest/argonish/internal/blamka/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/argonish/internal/blamka/CMakeLists.txt +++ b/library/cpp/digest/argonish/internal/blamka/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/CMakeLists.darwin.txt b/library/cpp/digest/argonish/internal/proxies/CMakeLists.darwin.txt index 4ea0d5c2d9..e34d1b9065 100644 --- a/library/cpp/digest/argonish/internal/proxies/CMakeLists.darwin.txt +++ b/library/cpp/digest/argonish/internal/proxies/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/CMakeLists.linux-aarch64.txt b/library/cpp/digest/argonish/internal/proxies/CMakeLists.linux-aarch64.txt index 9ed3a427f3..a6a754848a 100644 --- a/library/cpp/digest/argonish/internal/proxies/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/argonish/internal/proxies/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/CMakeLists.linux.txt b/library/cpp/digest/argonish/internal/proxies/CMakeLists.linux.txt index 4ea0d5c2d9..e34d1b9065 100644 --- a/library/cpp/digest/argonish/internal/proxies/CMakeLists.linux.txt +++ b/library/cpp/digest/argonish/internal/proxies/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/CMakeLists.txt b/library/cpp/digest/argonish/internal/proxies/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/argonish/internal/proxies/CMakeLists.txt +++ b/library/cpp/digest/argonish/internal/proxies/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/avx2/CMakeLists.darwin.txt b/library/cpp/digest/argonish/internal/proxies/avx2/CMakeLists.darwin.txt index 4b8bb68b72..6242e299b8 100644 --- a/library/cpp/digest/argonish/internal/proxies/avx2/CMakeLists.darwin.txt +++ b/library/cpp/digest/argonish/internal/proxies/avx2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/avx2/CMakeLists.linux.txt b/library/cpp/digest/argonish/internal/proxies/avx2/CMakeLists.linux.txt index 1abe77ffed..1f954bb636 100644 --- a/library/cpp/digest/argonish/internal/proxies/avx2/CMakeLists.linux.txt +++ b/library/cpp/digest/argonish/internal/proxies/avx2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/avx2/CMakeLists.txt b/library/cpp/digest/argonish/internal/proxies/avx2/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/library/cpp/digest/argonish/internal/proxies/avx2/CMakeLists.txt +++ b/library/cpp/digest/argonish/internal/proxies/avx2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.darwin.txt b/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.darwin.txt index 804d6035e6..bb153d887a 100644 --- a/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.darwin.txt +++ b/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.linux-aarch64.txt b/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.linux-aarch64.txt index c20224ddd6..a5caf518c9 100644 --- a/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.linux.txt b/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.linux.txt index c20224ddd6..a5caf518c9 100644 --- a/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.linux.txt +++ b/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.txt b/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.txt +++ b/library/cpp/digest/argonish/internal/proxies/macro/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.darwin.txt b/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.darwin.txt index 86f8c18d61..f4ed53513c 100644 --- a/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.darwin.txt +++ b/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.linux-aarch64.txt b/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.linux-aarch64.txt index a19f8b6157..0f6d317b77 100644 --- a/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.linux.txt b/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.linux.txt index a19f8b6157..0f6d317b77 100644 --- a/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.linux.txt +++ b/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.txt b/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.txt +++ b/library/cpp/digest/argonish/internal/proxies/ref/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/sse2/CMakeLists.darwin.txt b/library/cpp/digest/argonish/internal/proxies/sse2/CMakeLists.darwin.txt index 353f9e487e..7b57a5e09b 100644 --- a/library/cpp/digest/argonish/internal/proxies/sse2/CMakeLists.darwin.txt +++ b/library/cpp/digest/argonish/internal/proxies/sse2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/sse2/CMakeLists.linux.txt b/library/cpp/digest/argonish/internal/proxies/sse2/CMakeLists.linux.txt index 23f190dfb3..3c12d16117 100644 --- a/library/cpp/digest/argonish/internal/proxies/sse2/CMakeLists.linux.txt +++ b/library/cpp/digest/argonish/internal/proxies/sse2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/sse2/CMakeLists.txt b/library/cpp/digest/argonish/internal/proxies/sse2/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/library/cpp/digest/argonish/internal/proxies/sse2/CMakeLists.txt +++ b/library/cpp/digest/argonish/internal/proxies/sse2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/sse41/CMakeLists.darwin.txt b/library/cpp/digest/argonish/internal/proxies/sse41/CMakeLists.darwin.txt index 004aaa1e52..48f772826d 100644 --- a/library/cpp/digest/argonish/internal/proxies/sse41/CMakeLists.darwin.txt +++ b/library/cpp/digest/argonish/internal/proxies/sse41/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/sse41/CMakeLists.linux.txt b/library/cpp/digest/argonish/internal/proxies/sse41/CMakeLists.linux.txt index b96cac18a2..602f000ee5 100644 --- a/library/cpp/digest/argonish/internal/proxies/sse41/CMakeLists.linux.txt +++ b/library/cpp/digest/argonish/internal/proxies/sse41/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/sse41/CMakeLists.txt b/library/cpp/digest/argonish/internal/proxies/sse41/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/library/cpp/digest/argonish/internal/proxies/sse41/CMakeLists.txt +++ b/library/cpp/digest/argonish/internal/proxies/sse41/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/ssse3/CMakeLists.darwin.txt b/library/cpp/digest/argonish/internal/proxies/ssse3/CMakeLists.darwin.txt index 1a30e0e974..8c1d2591ed 100644 --- a/library/cpp/digest/argonish/internal/proxies/ssse3/CMakeLists.darwin.txt +++ b/library/cpp/digest/argonish/internal/proxies/ssse3/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/ssse3/CMakeLists.linux.txt b/library/cpp/digest/argonish/internal/proxies/ssse3/CMakeLists.linux.txt index e3320f059b..b70cc4d942 100644 --- a/library/cpp/digest/argonish/internal/proxies/ssse3/CMakeLists.linux.txt +++ b/library/cpp/digest/argonish/internal/proxies/ssse3/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/proxies/ssse3/CMakeLists.txt b/library/cpp/digest/argonish/internal/proxies/ssse3/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/library/cpp/digest/argonish/internal/proxies/ssse3/CMakeLists.txt +++ b/library/cpp/digest/argonish/internal/proxies/ssse3/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/rotations/CMakeLists.darwin.txt b/library/cpp/digest/argonish/internal/rotations/CMakeLists.darwin.txt index ebaa6579db..b4468ed351 100644 --- a/library/cpp/digest/argonish/internal/rotations/CMakeLists.darwin.txt +++ b/library/cpp/digest/argonish/internal/rotations/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/rotations/CMakeLists.linux-aarch64.txt b/library/cpp/digest/argonish/internal/rotations/CMakeLists.linux-aarch64.txt index 55cea73177..1ef3f3119d 100644 --- a/library/cpp/digest/argonish/internal/rotations/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/argonish/internal/rotations/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/rotations/CMakeLists.linux.txt b/library/cpp/digest/argonish/internal/rotations/CMakeLists.linux.txt index 55cea73177..1ef3f3119d 100644 --- a/library/cpp/digest/argonish/internal/rotations/CMakeLists.linux.txt +++ b/library/cpp/digest/argonish/internal/rotations/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/argonish/internal/rotations/CMakeLists.txt b/library/cpp/digest/argonish/internal/rotations/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/argonish/internal/rotations/CMakeLists.txt +++ b/library/cpp/digest/argonish/internal/rotations/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/crc32c/CMakeLists.darwin.txt b/library/cpp/digest/crc32c/CMakeLists.darwin.txt index cfdceca99c..295652eae0 100644 --- a/library/cpp/digest/crc32c/CMakeLists.darwin.txt +++ b/library/cpp/digest/crc32c/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/crc32c/CMakeLists.linux-aarch64.txt b/library/cpp/digest/crc32c/CMakeLists.linux-aarch64.txt index a1d009dc27..8d93b2e289 100644 --- a/library/cpp/digest/crc32c/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/crc32c/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/crc32c/CMakeLists.linux.txt b/library/cpp/digest/crc32c/CMakeLists.linux.txt index a1d009dc27..8d93b2e289 100644 --- a/library/cpp/digest/crc32c/CMakeLists.linux.txt +++ b/library/cpp/digest/crc32c/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/crc32c/CMakeLists.txt b/library/cpp/digest/crc32c/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/crc32c/CMakeLists.txt +++ b/library/cpp/digest/crc32c/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/lower_case/CMakeLists.darwin.txt b/library/cpp/digest/lower_case/CMakeLists.darwin.txt index bb63566e83..5ab4c75fd0 100644 --- a/library/cpp/digest/lower_case/CMakeLists.darwin.txt +++ b/library/cpp/digest/lower_case/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/lower_case/CMakeLists.linux-aarch64.txt b/library/cpp/digest/lower_case/CMakeLists.linux-aarch64.txt index e14001d041..f4bbc65bf6 100644 --- a/library/cpp/digest/lower_case/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/lower_case/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/lower_case/CMakeLists.linux.txt b/library/cpp/digest/lower_case/CMakeLists.linux.txt index e14001d041..f4bbc65bf6 100644 --- a/library/cpp/digest/lower_case/CMakeLists.linux.txt +++ b/library/cpp/digest/lower_case/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/lower_case/CMakeLists.txt b/library/cpp/digest/lower_case/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/lower_case/CMakeLists.txt +++ b/library/cpp/digest/lower_case/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/md5/CMakeLists.darwin.txt b/library/cpp/digest/md5/CMakeLists.darwin.txt index e143da452b..bbf3a1fc1e 100644 --- a/library/cpp/digest/md5/CMakeLists.darwin.txt +++ b/library/cpp/digest/md5/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/md5/CMakeLists.linux-aarch64.txt b/library/cpp/digest/md5/CMakeLists.linux-aarch64.txt index dbfb1dc72e..86eead7bfa 100644 --- a/library/cpp/digest/md5/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/md5/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/md5/CMakeLists.linux.txt b/library/cpp/digest/md5/CMakeLists.linux.txt index dbfb1dc72e..86eead7bfa 100644 --- a/library/cpp/digest/md5/CMakeLists.linux.txt +++ b/library/cpp/digest/md5/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/md5/CMakeLists.txt b/library/cpp/digest/md5/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/md5/CMakeLists.txt +++ b/library/cpp/digest/md5/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/murmur/CMakeLists.darwin.txt b/library/cpp/digest/murmur/CMakeLists.darwin.txt index ad4f1ed021..ac2e722ed8 100644 --- a/library/cpp/digest/murmur/CMakeLists.darwin.txt +++ b/library/cpp/digest/murmur/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/murmur/CMakeLists.linux-aarch64.txt b/library/cpp/digest/murmur/CMakeLists.linux-aarch64.txt index c291d6c8ad..71c5ec831d 100644 --- a/library/cpp/digest/murmur/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/murmur/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/murmur/CMakeLists.linux.txt b/library/cpp/digest/murmur/CMakeLists.linux.txt index c291d6c8ad..71c5ec831d 100644 --- a/library/cpp/digest/murmur/CMakeLists.linux.txt +++ b/library/cpp/digest/murmur/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/murmur/CMakeLists.txt b/library/cpp/digest/murmur/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/murmur/CMakeLists.txt +++ b/library/cpp/digest/murmur/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/old_crc/CMakeLists.darwin.txt b/library/cpp/digest/old_crc/CMakeLists.darwin.txt index c764aa0ff7..247ca3494b 100644 --- a/library/cpp/digest/old_crc/CMakeLists.darwin.txt +++ b/library/cpp/digest/old_crc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/old_crc/CMakeLists.linux-aarch64.txt b/library/cpp/digest/old_crc/CMakeLists.linux-aarch64.txt index b59fc0cdfe..9c1091a218 100644 --- a/library/cpp/digest/old_crc/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/old_crc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/old_crc/CMakeLists.linux.txt b/library/cpp/digest/old_crc/CMakeLists.linux.txt index b59fc0cdfe..9c1091a218 100644 --- a/library/cpp/digest/old_crc/CMakeLists.linux.txt +++ b/library/cpp/digest/old_crc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/old_crc/CMakeLists.txt b/library/cpp/digest/old_crc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/old_crc/CMakeLists.txt +++ b/library/cpp/digest/old_crc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/old_crc/gencrc/CMakeLists.darwin.txt b/library/cpp/digest/old_crc/gencrc/CMakeLists.darwin.txt index a99f813ab9..af7ab92d22 100644 --- a/library/cpp/digest/old_crc/gencrc/CMakeLists.darwin.txt +++ b/library/cpp/digest/old_crc/gencrc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/old_crc/gencrc/CMakeLists.linux-aarch64.txt b/library/cpp/digest/old_crc/gencrc/CMakeLists.linux-aarch64.txt index 0b8d0683e4..652815b64d 100644 --- a/library/cpp/digest/old_crc/gencrc/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/old_crc/gencrc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/old_crc/gencrc/CMakeLists.linux.txt b/library/cpp/digest/old_crc/gencrc/CMakeLists.linux.txt index 69cf325c8b..ed861d121c 100644 --- a/library/cpp/digest/old_crc/gencrc/CMakeLists.linux.txt +++ b/library/cpp/digest/old_crc/gencrc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/old_crc/gencrc/CMakeLists.txt b/library/cpp/digest/old_crc/gencrc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/old_crc/gencrc/CMakeLists.txt +++ b/library/cpp/digest/old_crc/gencrc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/sfh/CMakeLists.darwin.txt b/library/cpp/digest/sfh/CMakeLists.darwin.txt index 7dd856c395..53ca09e84e 100644 --- a/library/cpp/digest/sfh/CMakeLists.darwin.txt +++ b/library/cpp/digest/sfh/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/sfh/CMakeLists.linux-aarch64.txt b/library/cpp/digest/sfh/CMakeLists.linux-aarch64.txt index f9d9053447..833aa8c016 100644 --- a/library/cpp/digest/sfh/CMakeLists.linux-aarch64.txt +++ b/library/cpp/digest/sfh/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/sfh/CMakeLists.linux.txt b/library/cpp/digest/sfh/CMakeLists.linux.txt index f9d9053447..833aa8c016 100644 --- a/library/cpp/digest/sfh/CMakeLists.linux.txt +++ b/library/cpp/digest/sfh/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/digest/sfh/CMakeLists.txt b/library/cpp/digest/sfh/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/digest/sfh/CMakeLists.txt +++ b/library/cpp/digest/sfh/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/dns/CMakeLists.darwin.txt b/library/cpp/dns/CMakeLists.darwin.txt index 08f2d57a33..c91919f085 100644 --- a/library/cpp/dns/CMakeLists.darwin.txt +++ b/library/cpp/dns/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/dns/CMakeLists.linux-aarch64.txt b/library/cpp/dns/CMakeLists.linux-aarch64.txt index c5c0bd1db7..e2f9b3b08a 100644 --- a/library/cpp/dns/CMakeLists.linux-aarch64.txt +++ b/library/cpp/dns/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/dns/CMakeLists.linux.txt b/library/cpp/dns/CMakeLists.linux.txt index c5c0bd1db7..e2f9b3b08a 100644 --- a/library/cpp/dns/CMakeLists.linux.txt +++ b/library/cpp/dns/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/dns/CMakeLists.txt b/library/cpp/dns/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/dns/CMakeLists.txt +++ b/library/cpp/dns/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/enumbitset/CMakeLists.darwin.txt b/library/cpp/enumbitset/CMakeLists.darwin.txt index c7ea00792d..ff3bed8f5b 100644 --- a/library/cpp/enumbitset/CMakeLists.darwin.txt +++ b/library/cpp/enumbitset/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/enumbitset/CMakeLists.linux-aarch64.txt b/library/cpp/enumbitset/CMakeLists.linux-aarch64.txt index 650d03c435..29fb5e0956 100644 --- a/library/cpp/enumbitset/CMakeLists.linux-aarch64.txt +++ b/library/cpp/enumbitset/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/enumbitset/CMakeLists.linux.txt b/library/cpp/enumbitset/CMakeLists.linux.txt index 650d03c435..29fb5e0956 100644 --- a/library/cpp/enumbitset/CMakeLists.linux.txt +++ b/library/cpp/enumbitset/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/enumbitset/CMakeLists.txt b/library/cpp/enumbitset/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/enumbitset/CMakeLists.txt +++ b/library/cpp/enumbitset/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/execprofile/CMakeLists.darwin.txt b/library/cpp/execprofile/CMakeLists.darwin.txt index 0b8326bda5..ec649dc8ad 100644 --- a/library/cpp/execprofile/CMakeLists.darwin.txt +++ b/library/cpp/execprofile/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/execprofile/CMakeLists.linux-aarch64.txt b/library/cpp/execprofile/CMakeLists.linux-aarch64.txt index a5f75fd015..208b93382b 100644 --- a/library/cpp/execprofile/CMakeLists.linux-aarch64.txt +++ b/library/cpp/execprofile/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/execprofile/CMakeLists.linux.txt b/library/cpp/execprofile/CMakeLists.linux.txt index a5f75fd015..208b93382b 100644 --- a/library/cpp/execprofile/CMakeLists.linux.txt +++ b/library/cpp/execprofile/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/execprofile/CMakeLists.txt b/library/cpp/execprofile/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/execprofile/CMakeLists.txt +++ b/library/cpp/execprofile/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/getopt/CMakeLists.darwin.txt b/library/cpp/getopt/CMakeLists.darwin.txt index 7c366f9a33..96041aa7d2 100644 --- a/library/cpp/getopt/CMakeLists.darwin.txt +++ b/library/cpp/getopt/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/getopt/CMakeLists.linux-aarch64.txt b/library/cpp/getopt/CMakeLists.linux-aarch64.txt index 80253dd5d7..7b7157919a 100644 --- a/library/cpp/getopt/CMakeLists.linux-aarch64.txt +++ b/library/cpp/getopt/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/getopt/CMakeLists.linux.txt b/library/cpp/getopt/CMakeLists.linux.txt index 80253dd5d7..7b7157919a 100644 --- a/library/cpp/getopt/CMakeLists.linux.txt +++ b/library/cpp/getopt/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/getopt/CMakeLists.txt b/library/cpp/getopt/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/getopt/CMakeLists.txt +++ b/library/cpp/getopt/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/getopt/small/CMakeLists.darwin.txt b/library/cpp/getopt/small/CMakeLists.darwin.txt index 8f823feaa5..04c5b67dda 100644 --- a/library/cpp/getopt/small/CMakeLists.darwin.txt +++ b/library/cpp/getopt/small/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/getopt/small/CMakeLists.linux-aarch64.txt b/library/cpp/getopt/small/CMakeLists.linux-aarch64.txt index cf45ee5d27..5aabced8a3 100644 --- a/library/cpp/getopt/small/CMakeLists.linux-aarch64.txt +++ b/library/cpp/getopt/small/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/getopt/small/CMakeLists.linux.txt b/library/cpp/getopt/small/CMakeLists.linux.txt index cf45ee5d27..5aabced8a3 100644 --- a/library/cpp/getopt/small/CMakeLists.linux.txt +++ b/library/cpp/getopt/small/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/getopt/small/CMakeLists.txt b/library/cpp/getopt/small/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/getopt/small/CMakeLists.txt +++ b/library/cpp/getopt/small/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/grpc/CMakeLists.txt b/library/cpp/grpc/CMakeLists.txt index 28f45865a3..69f43c42a7 100644 --- a/library/cpp/grpc/CMakeLists.txt +++ b/library/cpp/grpc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/grpc/client/CMakeLists.darwin.txt b/library/cpp/grpc/client/CMakeLists.darwin.txt index a356f8f6bd..db6f6bfdc1 100644 --- a/library/cpp/grpc/client/CMakeLists.darwin.txt +++ b/library/cpp/grpc/client/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/grpc/client/CMakeLists.linux-aarch64.txt b/library/cpp/grpc/client/CMakeLists.linux-aarch64.txt index 921c7d716c..80f660d62e 100644 --- a/library/cpp/grpc/client/CMakeLists.linux-aarch64.txt +++ b/library/cpp/grpc/client/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/grpc/client/CMakeLists.linux.txt b/library/cpp/grpc/client/CMakeLists.linux.txt index 921c7d716c..80f660d62e 100644 --- a/library/cpp/grpc/client/CMakeLists.linux.txt +++ b/library/cpp/grpc/client/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/grpc/client/CMakeLists.txt b/library/cpp/grpc/client/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/grpc/client/CMakeLists.txt +++ b/library/cpp/grpc/client/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/grpc/server/CMakeLists.darwin.txt b/library/cpp/grpc/server/CMakeLists.darwin.txt index 0f7e4f6a93..b1c65b786c 100644 --- a/library/cpp/grpc/server/CMakeLists.darwin.txt +++ b/library/cpp/grpc/server/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/grpc/server/CMakeLists.linux-aarch64.txt b/library/cpp/grpc/server/CMakeLists.linux-aarch64.txt index 354b89707b..4d5d77c1bf 100644 --- a/library/cpp/grpc/server/CMakeLists.linux-aarch64.txt +++ b/library/cpp/grpc/server/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/grpc/server/CMakeLists.linux.txt b/library/cpp/grpc/server/CMakeLists.linux.txt index 354b89707b..4d5d77c1bf 100644 --- a/library/cpp/grpc/server/CMakeLists.linux.txt +++ b/library/cpp/grpc/server/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/grpc/server/CMakeLists.txt b/library/cpp/grpc/server/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/grpc/server/CMakeLists.txt +++ b/library/cpp/grpc/server/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/grpc/server/actors/CMakeLists.darwin.txt b/library/cpp/grpc/server/actors/CMakeLists.darwin.txt index f35352acc1..1e710ad49a 100644 --- a/library/cpp/grpc/server/actors/CMakeLists.darwin.txt +++ b/library/cpp/grpc/server/actors/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/grpc/server/actors/CMakeLists.linux-aarch64.txt b/library/cpp/grpc/server/actors/CMakeLists.linux-aarch64.txt index 08a0a5b891..0d8763b93d 100644 --- a/library/cpp/grpc/server/actors/CMakeLists.linux-aarch64.txt +++ b/library/cpp/grpc/server/actors/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/grpc/server/actors/CMakeLists.linux.txt b/library/cpp/grpc/server/actors/CMakeLists.linux.txt index 08a0a5b891..0d8763b93d 100644 --- a/library/cpp/grpc/server/actors/CMakeLists.linux.txt +++ b/library/cpp/grpc/server/actors/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/grpc/server/actors/CMakeLists.txt b/library/cpp/grpc/server/actors/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/grpc/server/actors/CMakeLists.txt +++ b/library/cpp/grpc/server/actors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/histogram/CMakeLists.txt b/library/cpp/histogram/CMakeLists.txt index 0a062c1029..e549178f88 100644 --- a/library/cpp/histogram/CMakeLists.txt +++ b/library/cpp/histogram/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/histogram/adaptive/CMakeLists.darwin.txt b/library/cpp/histogram/adaptive/CMakeLists.darwin.txt index 4b8b25ac3f..82fb24cb78 100644 --- a/library/cpp/histogram/adaptive/CMakeLists.darwin.txt +++ b/library/cpp/histogram/adaptive/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/histogram/adaptive/CMakeLists.linux-aarch64.txt b/library/cpp/histogram/adaptive/CMakeLists.linux-aarch64.txt index 0bd42021ec..089ec72973 100644 --- a/library/cpp/histogram/adaptive/CMakeLists.linux-aarch64.txt +++ b/library/cpp/histogram/adaptive/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/histogram/adaptive/CMakeLists.linux.txt b/library/cpp/histogram/adaptive/CMakeLists.linux.txt index 0bd42021ec..089ec72973 100644 --- a/library/cpp/histogram/adaptive/CMakeLists.linux.txt +++ b/library/cpp/histogram/adaptive/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/histogram/adaptive/CMakeLists.txt b/library/cpp/histogram/adaptive/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/histogram/adaptive/CMakeLists.txt +++ b/library/cpp/histogram/adaptive/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/histogram/adaptive/protos/CMakeLists.darwin.txt b/library/cpp/histogram/adaptive/protos/CMakeLists.darwin.txt index 5047c52591..c1c5db3e56 100644 --- a/library/cpp/histogram/adaptive/protos/CMakeLists.darwin.txt +++ b/library/cpp/histogram/adaptive/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/histogram/adaptive/protos/CMakeLists.linux-aarch64.txt b/library/cpp/histogram/adaptive/protos/CMakeLists.linux-aarch64.txt index d1701dad75..51025bd7f5 100644 --- a/library/cpp/histogram/adaptive/protos/CMakeLists.linux-aarch64.txt +++ b/library/cpp/histogram/adaptive/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/histogram/adaptive/protos/CMakeLists.linux.txt b/library/cpp/histogram/adaptive/protos/CMakeLists.linux.txt index d1701dad75..51025bd7f5 100644 --- a/library/cpp/histogram/adaptive/protos/CMakeLists.linux.txt +++ b/library/cpp/histogram/adaptive/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/histogram/adaptive/protos/CMakeLists.txt b/library/cpp/histogram/adaptive/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/histogram/adaptive/protos/CMakeLists.txt +++ b/library/cpp/histogram/adaptive/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/histogram/hdr/CMakeLists.darwin.txt b/library/cpp/histogram/hdr/CMakeLists.darwin.txt index 68c1139af6..cf961268fa 100644 --- a/library/cpp/histogram/hdr/CMakeLists.darwin.txt +++ b/library/cpp/histogram/hdr/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/histogram/hdr/CMakeLists.linux-aarch64.txt b/library/cpp/histogram/hdr/CMakeLists.linux-aarch64.txt index 741271ddfe..66b62a62a9 100644 --- a/library/cpp/histogram/hdr/CMakeLists.linux-aarch64.txt +++ b/library/cpp/histogram/hdr/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/histogram/hdr/CMakeLists.linux.txt b/library/cpp/histogram/hdr/CMakeLists.linux.txt index 741271ddfe..66b62a62a9 100644 --- a/library/cpp/histogram/hdr/CMakeLists.linux.txt +++ b/library/cpp/histogram/hdr/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/histogram/hdr/CMakeLists.txt b/library/cpp/histogram/hdr/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/histogram/hdr/CMakeLists.txt +++ b/library/cpp/histogram/hdr/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/html/CMakeLists.txt b/library/cpp/html/CMakeLists.txt index 6489ac4594..761bd4421b 100644 --- a/library/cpp/html/CMakeLists.txt +++ b/library/cpp/html/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/html/escape/CMakeLists.darwin.txt b/library/cpp/html/escape/CMakeLists.darwin.txt index 459ccd0cef..890dac1539 100644 --- a/library/cpp/html/escape/CMakeLists.darwin.txt +++ b/library/cpp/html/escape/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/html/escape/CMakeLists.linux-aarch64.txt b/library/cpp/html/escape/CMakeLists.linux-aarch64.txt index 222711bf25..1a4747c4e3 100644 --- a/library/cpp/html/escape/CMakeLists.linux-aarch64.txt +++ b/library/cpp/html/escape/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/html/escape/CMakeLists.linux.txt b/library/cpp/html/escape/CMakeLists.linux.txt index 222711bf25..1a4747c4e3 100644 --- a/library/cpp/html/escape/CMakeLists.linux.txt +++ b/library/cpp/html/escape/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/html/escape/CMakeLists.txt b/library/cpp/html/escape/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/html/escape/CMakeLists.txt +++ b/library/cpp/html/escape/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/html/pcdata/CMakeLists.darwin.txt b/library/cpp/html/pcdata/CMakeLists.darwin.txt index a6d32066c2..0efffd69e0 100644 --- a/library/cpp/html/pcdata/CMakeLists.darwin.txt +++ b/library/cpp/html/pcdata/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/html/pcdata/CMakeLists.linux-aarch64.txt b/library/cpp/html/pcdata/CMakeLists.linux-aarch64.txt index 6bd8d8d350..c6a073acaf 100644 --- a/library/cpp/html/pcdata/CMakeLists.linux-aarch64.txt +++ b/library/cpp/html/pcdata/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/html/pcdata/CMakeLists.linux.txt b/library/cpp/html/pcdata/CMakeLists.linux.txt index 6bd8d8d350..c6a073acaf 100644 --- a/library/cpp/html/pcdata/CMakeLists.linux.txt +++ b/library/cpp/html/pcdata/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/html/pcdata/CMakeLists.txt b/library/cpp/html/pcdata/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/html/pcdata/CMakeLists.txt +++ b/library/cpp/html/pcdata/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/CMakeLists.txt b/library/cpp/http/CMakeLists.txt index 8ce2e73037..302c9d6c7e 100644 --- a/library/cpp/http/CMakeLists.txt +++ b/library/cpp/http/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/fetch/CMakeLists.darwin.txt b/library/cpp/http/fetch/CMakeLists.darwin.txt index eb8cdf251a..c9af1a0150 100644 --- a/library/cpp/http/fetch/CMakeLists.darwin.txt +++ b/library/cpp/http/fetch/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/fetch/CMakeLists.linux-aarch64.txt b/library/cpp/http/fetch/CMakeLists.linux-aarch64.txt index 639b821e70..8b2f6632b8 100644 --- a/library/cpp/http/fetch/CMakeLists.linux-aarch64.txt +++ b/library/cpp/http/fetch/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/fetch/CMakeLists.linux.txt b/library/cpp/http/fetch/CMakeLists.linux.txt index 639b821e70..8b2f6632b8 100644 --- a/library/cpp/http/fetch/CMakeLists.linux.txt +++ b/library/cpp/http/fetch/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/fetch/CMakeLists.txt b/library/cpp/http/fetch/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/http/fetch/CMakeLists.txt +++ b/library/cpp/http/fetch/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/io/CMakeLists.darwin.txt b/library/cpp/http/io/CMakeLists.darwin.txt index b8e477b6b7..1f1eab359c 100644 --- a/library/cpp/http/io/CMakeLists.darwin.txt +++ b/library/cpp/http/io/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/io/CMakeLists.linux-aarch64.txt b/library/cpp/http/io/CMakeLists.linux-aarch64.txt index 7ff56c321d..fb6cf45467 100644 --- a/library/cpp/http/io/CMakeLists.linux-aarch64.txt +++ b/library/cpp/http/io/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/io/CMakeLists.linux.txt b/library/cpp/http/io/CMakeLists.linux.txt index 7ff56c321d..fb6cf45467 100644 --- a/library/cpp/http/io/CMakeLists.linux.txt +++ b/library/cpp/http/io/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/io/CMakeLists.txt b/library/cpp/http/io/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/http/io/CMakeLists.txt +++ b/library/cpp/http/io/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/misc/CMakeLists.darwin.txt b/library/cpp/http/misc/CMakeLists.darwin.txt index e787e14a91..e60ca0d16a 100644 --- a/library/cpp/http/misc/CMakeLists.darwin.txt +++ b/library/cpp/http/misc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/misc/CMakeLists.linux-aarch64.txt b/library/cpp/http/misc/CMakeLists.linux-aarch64.txt index 94a8527883..a4c93f6693 100644 --- a/library/cpp/http/misc/CMakeLists.linux-aarch64.txt +++ b/library/cpp/http/misc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/misc/CMakeLists.linux.txt b/library/cpp/http/misc/CMakeLists.linux.txt index 94a8527883..a4c93f6693 100644 --- a/library/cpp/http/misc/CMakeLists.linux.txt +++ b/library/cpp/http/misc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/misc/CMakeLists.txt b/library/cpp/http/misc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/http/misc/CMakeLists.txt +++ b/library/cpp/http/misc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/server/CMakeLists.darwin.txt b/library/cpp/http/server/CMakeLists.darwin.txt index 34cba14043..9d8b2182ba 100644 --- a/library/cpp/http/server/CMakeLists.darwin.txt +++ b/library/cpp/http/server/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/server/CMakeLists.linux-aarch64.txt b/library/cpp/http/server/CMakeLists.linux-aarch64.txt index 90cc9685a6..be781cf25a 100644 --- a/library/cpp/http/server/CMakeLists.linux-aarch64.txt +++ b/library/cpp/http/server/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/server/CMakeLists.linux.txt b/library/cpp/http/server/CMakeLists.linux.txt index 90cc9685a6..be781cf25a 100644 --- a/library/cpp/http/server/CMakeLists.linux.txt +++ b/library/cpp/http/server/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/server/CMakeLists.txt b/library/cpp/http/server/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/http/server/CMakeLists.txt +++ b/library/cpp/http/server/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/simple/CMakeLists.darwin.txt b/library/cpp/http/simple/CMakeLists.darwin.txt index 317a748a89..68c2fb64a3 100644 --- a/library/cpp/http/simple/CMakeLists.darwin.txt +++ b/library/cpp/http/simple/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/simple/CMakeLists.linux-aarch64.txt b/library/cpp/http/simple/CMakeLists.linux-aarch64.txt index 30a15dbd77..970d858e0e 100644 --- a/library/cpp/http/simple/CMakeLists.linux-aarch64.txt +++ b/library/cpp/http/simple/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/simple/CMakeLists.linux.txt b/library/cpp/http/simple/CMakeLists.linux.txt index 30a15dbd77..970d858e0e 100644 --- a/library/cpp/http/simple/CMakeLists.linux.txt +++ b/library/cpp/http/simple/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/http/simple/CMakeLists.txt b/library/cpp/http/simple/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/http/simple/CMakeLists.txt +++ b/library/cpp/http/simple/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/hyperloglog/CMakeLists.darwin.txt b/library/cpp/hyperloglog/CMakeLists.darwin.txt index 74a57d407b..5a180602bc 100644 --- a/library/cpp/hyperloglog/CMakeLists.darwin.txt +++ b/library/cpp/hyperloglog/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/hyperloglog/CMakeLists.linux-aarch64.txt b/library/cpp/hyperloglog/CMakeLists.linux-aarch64.txt index 0d941118a9..bbbb9103f6 100644 --- a/library/cpp/hyperloglog/CMakeLists.linux-aarch64.txt +++ b/library/cpp/hyperloglog/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/hyperloglog/CMakeLists.linux.txt b/library/cpp/hyperloglog/CMakeLists.linux.txt index 0d941118a9..bbbb9103f6 100644 --- a/library/cpp/hyperloglog/CMakeLists.linux.txt +++ b/library/cpp/hyperloglog/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/hyperloglog/CMakeLists.txt b/library/cpp/hyperloglog/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/hyperloglog/CMakeLists.txt +++ b/library/cpp/hyperloglog/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/int128/CMakeLists.darwin.txt b/library/cpp/int128/CMakeLists.darwin.txt index b4b24d8673..cdc5d289ee 100644 --- a/library/cpp/int128/CMakeLists.darwin.txt +++ b/library/cpp/int128/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/int128/CMakeLists.linux-aarch64.txt b/library/cpp/int128/CMakeLists.linux-aarch64.txt index a4d9f81e3a..504a4558f7 100644 --- a/library/cpp/int128/CMakeLists.linux-aarch64.txt +++ b/library/cpp/int128/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/int128/CMakeLists.linux.txt b/library/cpp/int128/CMakeLists.linux.txt index a4d9f81e3a..504a4558f7 100644 --- a/library/cpp/int128/CMakeLists.linux.txt +++ b/library/cpp/int128/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/int128/CMakeLists.txt b/library/cpp/int128/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/int128/CMakeLists.txt +++ b/library/cpp/int128/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/ipmath/CMakeLists.darwin.txt b/library/cpp/ipmath/CMakeLists.darwin.txt index 2fd6ddd5cd..78a4d06b4b 100644 --- a/library/cpp/ipmath/CMakeLists.darwin.txt +++ b/library/cpp/ipmath/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/ipmath/CMakeLists.linux-aarch64.txt b/library/cpp/ipmath/CMakeLists.linux-aarch64.txt index 7efc3656dc..65648f12ee 100644 --- a/library/cpp/ipmath/CMakeLists.linux-aarch64.txt +++ b/library/cpp/ipmath/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/ipmath/CMakeLists.linux.txt b/library/cpp/ipmath/CMakeLists.linux.txt index 7efc3656dc..65648f12ee 100644 --- a/library/cpp/ipmath/CMakeLists.linux.txt +++ b/library/cpp/ipmath/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/ipmath/CMakeLists.txt b/library/cpp/ipmath/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/ipmath/CMakeLists.txt +++ b/library/cpp/ipmath/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/ipv6_address/CMakeLists.darwin.txt b/library/cpp/ipv6_address/CMakeLists.darwin.txt index d05d9abc33..6156f5cbe2 100644 --- a/library/cpp/ipv6_address/CMakeLists.darwin.txt +++ b/library/cpp/ipv6_address/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/ipv6_address/CMakeLists.linux-aarch64.txt b/library/cpp/ipv6_address/CMakeLists.linux-aarch64.txt index 3cef51b5fb..478d0655cf 100644 --- a/library/cpp/ipv6_address/CMakeLists.linux-aarch64.txt +++ b/library/cpp/ipv6_address/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/ipv6_address/CMakeLists.linux.txt b/library/cpp/ipv6_address/CMakeLists.linux.txt index 3cef51b5fb..478d0655cf 100644 --- a/library/cpp/ipv6_address/CMakeLists.linux.txt +++ b/library/cpp/ipv6_address/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/ipv6_address/CMakeLists.txt b/library/cpp/ipv6_address/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/ipv6_address/CMakeLists.txt +++ b/library/cpp/ipv6_address/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/iterator/CMakeLists.darwin.txt b/library/cpp/iterator/CMakeLists.darwin.txt index c360c953f2..ee33c74cea 100644 --- a/library/cpp/iterator/CMakeLists.darwin.txt +++ b/library/cpp/iterator/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/iterator/CMakeLists.linux-aarch64.txt b/library/cpp/iterator/CMakeLists.linux-aarch64.txt index dbd8c37974..5fb04be066 100644 --- a/library/cpp/iterator/CMakeLists.linux-aarch64.txt +++ b/library/cpp/iterator/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/iterator/CMakeLists.linux.txt b/library/cpp/iterator/CMakeLists.linux.txt index dbd8c37974..5fb04be066 100644 --- a/library/cpp/iterator/CMakeLists.linux.txt +++ b/library/cpp/iterator/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/iterator/CMakeLists.txt b/library/cpp/iterator/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/iterator/CMakeLists.txt +++ b/library/cpp/iterator/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/CMakeLists.darwin.txt b/library/cpp/json/CMakeLists.darwin.txt index 7b11a2bf41..bbf8222242 100644 --- a/library/cpp/json/CMakeLists.darwin.txt +++ b/library/cpp/json/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/CMakeLists.linux-aarch64.txt b/library/cpp/json/CMakeLists.linux-aarch64.txt index 06ee88b57c..d55c7d2c3b 100644 --- a/library/cpp/json/CMakeLists.linux-aarch64.txt +++ b/library/cpp/json/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/CMakeLists.linux.txt b/library/cpp/json/CMakeLists.linux.txt index 06ee88b57c..d55c7d2c3b 100644 --- a/library/cpp/json/CMakeLists.linux.txt +++ b/library/cpp/json/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/CMakeLists.txt b/library/cpp/json/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/json/CMakeLists.txt +++ b/library/cpp/json/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/common/CMakeLists.darwin.txt b/library/cpp/json/common/CMakeLists.darwin.txt index 59aa8f9da7..3fc903e74d 100644 --- a/library/cpp/json/common/CMakeLists.darwin.txt +++ b/library/cpp/json/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/common/CMakeLists.linux-aarch64.txt b/library/cpp/json/common/CMakeLists.linux-aarch64.txt index 2434cd2cbc..e957a68917 100644 --- a/library/cpp/json/common/CMakeLists.linux-aarch64.txt +++ b/library/cpp/json/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/common/CMakeLists.linux.txt b/library/cpp/json/common/CMakeLists.linux.txt index 2434cd2cbc..e957a68917 100644 --- a/library/cpp/json/common/CMakeLists.linux.txt +++ b/library/cpp/json/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/common/CMakeLists.txt b/library/cpp/json/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/json/common/CMakeLists.txt +++ b/library/cpp/json/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/easy_parse/CMakeLists.darwin.txt b/library/cpp/json/easy_parse/CMakeLists.darwin.txt index bcca8e35ca..18daf19913 100644 --- a/library/cpp/json/easy_parse/CMakeLists.darwin.txt +++ b/library/cpp/json/easy_parse/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/easy_parse/CMakeLists.linux-aarch64.txt b/library/cpp/json/easy_parse/CMakeLists.linux-aarch64.txt index e3f9bfd31e..604119958d 100644 --- a/library/cpp/json/easy_parse/CMakeLists.linux-aarch64.txt +++ b/library/cpp/json/easy_parse/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/easy_parse/CMakeLists.linux.txt b/library/cpp/json/easy_parse/CMakeLists.linux.txt index e3f9bfd31e..604119958d 100644 --- a/library/cpp/json/easy_parse/CMakeLists.linux.txt +++ b/library/cpp/json/easy_parse/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/easy_parse/CMakeLists.txt b/library/cpp/json/easy_parse/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/json/easy_parse/CMakeLists.txt +++ b/library/cpp/json/easy_parse/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/fast_sax/CMakeLists.darwin.txt b/library/cpp/json/fast_sax/CMakeLists.darwin.txt index 9561ffc2ac..441d602ca7 100644 --- a/library/cpp/json/fast_sax/CMakeLists.darwin.txt +++ b/library/cpp/json/fast_sax/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/fast_sax/CMakeLists.linux-aarch64.txt b/library/cpp/json/fast_sax/CMakeLists.linux-aarch64.txt index b49f1a8238..5a75c7a88f 100644 --- a/library/cpp/json/fast_sax/CMakeLists.linux-aarch64.txt +++ b/library/cpp/json/fast_sax/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/fast_sax/CMakeLists.linux.txt b/library/cpp/json/fast_sax/CMakeLists.linux.txt index b49f1a8238..5a75c7a88f 100644 --- a/library/cpp/json/fast_sax/CMakeLists.linux.txt +++ b/library/cpp/json/fast_sax/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/fast_sax/CMakeLists.txt b/library/cpp/json/fast_sax/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/json/fast_sax/CMakeLists.txt +++ b/library/cpp/json/fast_sax/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/writer/CMakeLists.darwin.txt b/library/cpp/json/writer/CMakeLists.darwin.txt index 722b40fd49..71c8643720 100644 --- a/library/cpp/json/writer/CMakeLists.darwin.txt +++ b/library/cpp/json/writer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/writer/CMakeLists.linux-aarch64.txt b/library/cpp/json/writer/CMakeLists.linux-aarch64.txt index 67c81d8e70..7ae78ebf12 100644 --- a/library/cpp/json/writer/CMakeLists.linux-aarch64.txt +++ b/library/cpp/json/writer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/writer/CMakeLists.linux.txt b/library/cpp/json/writer/CMakeLists.linux.txt index 67c81d8e70..7ae78ebf12 100644 --- a/library/cpp/json/writer/CMakeLists.linux.txt +++ b/library/cpp/json/writer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/writer/CMakeLists.txt b/library/cpp/json/writer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/json/writer/CMakeLists.txt +++ b/library/cpp/json/writer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/yson/CMakeLists.darwin.txt b/library/cpp/json/yson/CMakeLists.darwin.txt index 6418ceacba..9f16a5a41e 100644 --- a/library/cpp/json/yson/CMakeLists.darwin.txt +++ b/library/cpp/json/yson/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/yson/CMakeLists.linux-aarch64.txt b/library/cpp/json/yson/CMakeLists.linux-aarch64.txt index 151fb4312d..b34d62f0e9 100644 --- a/library/cpp/json/yson/CMakeLists.linux-aarch64.txt +++ b/library/cpp/json/yson/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/yson/CMakeLists.linux.txt b/library/cpp/json/yson/CMakeLists.linux.txt index 151fb4312d..b34d62f0e9 100644 --- a/library/cpp/json/yson/CMakeLists.linux.txt +++ b/library/cpp/json/yson/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/json/yson/CMakeLists.txt b/library/cpp/json/yson/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/json/yson/CMakeLists.txt +++ b/library/cpp/json/yson/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lcs/CMakeLists.darwin.txt b/library/cpp/lcs/CMakeLists.darwin.txt index 505559a06c..52cb38d674 100644 --- a/library/cpp/lcs/CMakeLists.darwin.txt +++ b/library/cpp/lcs/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lcs/CMakeLists.linux-aarch64.txt b/library/cpp/lcs/CMakeLists.linux-aarch64.txt index 58447ed41f..6c570438f2 100644 --- a/library/cpp/lcs/CMakeLists.linux-aarch64.txt +++ b/library/cpp/lcs/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lcs/CMakeLists.linux.txt b/library/cpp/lcs/CMakeLists.linux.txt index 58447ed41f..6c570438f2 100644 --- a/library/cpp/lcs/CMakeLists.linux.txt +++ b/library/cpp/lcs/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lcs/CMakeLists.txt b/library/cpp/lcs/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/lcs/CMakeLists.txt +++ b/library/cpp/lcs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lfalloc/CMakeLists.darwin.txt b/library/cpp/lfalloc/CMakeLists.darwin.txt index 3c17261bd6..0ed088d373 100644 --- a/library/cpp/lfalloc/CMakeLists.darwin.txt +++ b/library/cpp/lfalloc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lfalloc/CMakeLists.linux-aarch64.txt b/library/cpp/lfalloc/CMakeLists.linux-aarch64.txt index 230ec04d20..0d5a6f80f2 100644 --- a/library/cpp/lfalloc/CMakeLists.linux-aarch64.txt +++ b/library/cpp/lfalloc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lfalloc/CMakeLists.linux.txt b/library/cpp/lfalloc/CMakeLists.linux.txt index a6e4dba389..8d6d385cae 100644 --- a/library/cpp/lfalloc/CMakeLists.linux.txt +++ b/library/cpp/lfalloc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lfalloc/CMakeLists.txt b/library/cpp/lfalloc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/lfalloc/CMakeLists.txt +++ b/library/cpp/lfalloc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lfalloc/alloc_profiler/CMakeLists.darwin.txt b/library/cpp/lfalloc/alloc_profiler/CMakeLists.darwin.txt index 5d7e418e56..b94d19ad32 100644 --- a/library/cpp/lfalloc/alloc_profiler/CMakeLists.darwin.txt +++ b/library/cpp/lfalloc/alloc_profiler/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux-aarch64.txt b/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux-aarch64.txt index a16eb2230f..d215bfaccc 100644 --- a/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux-aarch64.txt +++ b/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux.txt b/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux.txt index a16eb2230f..d215bfaccc 100644 --- a/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux.txt +++ b/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lfalloc/alloc_profiler/CMakeLists.txt b/library/cpp/lfalloc/alloc_profiler/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/lfalloc/alloc_profiler/CMakeLists.txt +++ b/library/cpp/lfalloc/alloc_profiler/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lfalloc/dbg_info/CMakeLists.darwin.txt b/library/cpp/lfalloc/dbg_info/CMakeLists.darwin.txt index 93fbda5aa0..ec8b8ba23b 100644 --- a/library/cpp/lfalloc/dbg_info/CMakeLists.darwin.txt +++ b/library/cpp/lfalloc/dbg_info/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lfalloc/dbg_info/CMakeLists.linux-aarch64.txt b/library/cpp/lfalloc/dbg_info/CMakeLists.linux-aarch64.txt index 6a17f3a51c..05ee5297ba 100644 --- a/library/cpp/lfalloc/dbg_info/CMakeLists.linux-aarch64.txt +++ b/library/cpp/lfalloc/dbg_info/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lfalloc/dbg_info/CMakeLists.linux.txt b/library/cpp/lfalloc/dbg_info/CMakeLists.linux.txt index 6a17f3a51c..05ee5297ba 100644 --- a/library/cpp/lfalloc/dbg_info/CMakeLists.linux.txt +++ b/library/cpp/lfalloc/dbg_info/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lfalloc/dbg_info/CMakeLists.txt b/library/cpp/lfalloc/dbg_info/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/lfalloc/dbg_info/CMakeLists.txt +++ b/library/cpp/lfalloc/dbg_info/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lfalloc/yt/CMakeLists.darwin.txt b/library/cpp/lfalloc/yt/CMakeLists.darwin.txt index efd7f13a5c..751d2c05df 100644 --- a/library/cpp/lfalloc/yt/CMakeLists.darwin.txt +++ b/library/cpp/lfalloc/yt/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lfalloc/yt/CMakeLists.txt b/library/cpp/lfalloc/yt/CMakeLists.txt index fcfff838a3..9993490fe5 100644 --- a/library/cpp/lfalloc/yt/CMakeLists.txt +++ b/library/cpp/lfalloc/yt/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/linear_regression/CMakeLists.darwin.txt b/library/cpp/linear_regression/CMakeLists.darwin.txt index 4d62e3876c..db574777d6 100644 --- a/library/cpp/linear_regression/CMakeLists.darwin.txt +++ b/library/cpp/linear_regression/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/linear_regression/CMakeLists.linux-aarch64.txt b/library/cpp/linear_regression/CMakeLists.linux-aarch64.txt index 1e5b46b9d0..154199c952 100644 --- a/library/cpp/linear_regression/CMakeLists.linux-aarch64.txt +++ b/library/cpp/linear_regression/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/linear_regression/CMakeLists.linux.txt b/library/cpp/linear_regression/CMakeLists.linux.txt index 1e5b46b9d0..154199c952 100644 --- a/library/cpp/linear_regression/CMakeLists.linux.txt +++ b/library/cpp/linear_regression/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/linear_regression/CMakeLists.txt b/library/cpp/linear_regression/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/linear_regression/CMakeLists.txt +++ b/library/cpp/linear_regression/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/logger/CMakeLists.darwin.txt b/library/cpp/logger/CMakeLists.darwin.txt index 07d54ae816..f73c91994e 100644 --- a/library/cpp/logger/CMakeLists.darwin.txt +++ b/library/cpp/logger/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/logger/CMakeLists.linux-aarch64.txt b/library/cpp/logger/CMakeLists.linux-aarch64.txt index 91cec09998..35a66da4f6 100644 --- a/library/cpp/logger/CMakeLists.linux-aarch64.txt +++ b/library/cpp/logger/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/logger/CMakeLists.linux.txt b/library/cpp/logger/CMakeLists.linux.txt index 91cec09998..35a66da4f6 100644 --- a/library/cpp/logger/CMakeLists.linux.txt +++ b/library/cpp/logger/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/logger/CMakeLists.txt b/library/cpp/logger/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/logger/CMakeLists.txt +++ b/library/cpp/logger/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/logger/global/CMakeLists.darwin.txt b/library/cpp/logger/global/CMakeLists.darwin.txt index 6be7c41a82..4056287548 100644 --- a/library/cpp/logger/global/CMakeLists.darwin.txt +++ b/library/cpp/logger/global/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/logger/global/CMakeLists.linux-aarch64.txt b/library/cpp/logger/global/CMakeLists.linux-aarch64.txt index 53ad8ac9b0..708e01ed3a 100644 --- a/library/cpp/logger/global/CMakeLists.linux-aarch64.txt +++ b/library/cpp/logger/global/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/logger/global/CMakeLists.linux.txt b/library/cpp/logger/global/CMakeLists.linux.txt index 53ad8ac9b0..708e01ed3a 100644 --- a/library/cpp/logger/global/CMakeLists.linux.txt +++ b/library/cpp/logger/global/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/logger/global/CMakeLists.txt b/library/cpp/logger/global/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/logger/global/CMakeLists.txt +++ b/library/cpp/logger/global/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lua/CMakeLists.darwin.txt b/library/cpp/lua/CMakeLists.darwin.txt index dfa77ac81d..7dc3bec75b 100644 --- a/library/cpp/lua/CMakeLists.darwin.txt +++ b/library/cpp/lua/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lua/CMakeLists.linux-aarch64.txt b/library/cpp/lua/CMakeLists.linux-aarch64.txt index 92b179eecd..e32791dfac 100644 --- a/library/cpp/lua/CMakeLists.linux-aarch64.txt +++ b/library/cpp/lua/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lua/CMakeLists.linux.txt b/library/cpp/lua/CMakeLists.linux.txt index 92b179eecd..e32791dfac 100644 --- a/library/cpp/lua/CMakeLists.linux.txt +++ b/library/cpp/lua/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lua/CMakeLists.txt b/library/cpp/lua/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/lua/CMakeLists.txt +++ b/library/cpp/lua/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/CMakeLists.darwin.txt b/library/cpp/lwtrace/CMakeLists.darwin.txt index 4e5a2aab55..370dbb17fd 100644 --- a/library/cpp/lwtrace/CMakeLists.darwin.txt +++ b/library/cpp/lwtrace/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/CMakeLists.linux-aarch64.txt b/library/cpp/lwtrace/CMakeLists.linux-aarch64.txt index 695cff9c09..c16204ed5a 100644 --- a/library/cpp/lwtrace/CMakeLists.linux-aarch64.txt +++ b/library/cpp/lwtrace/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/CMakeLists.linux.txt b/library/cpp/lwtrace/CMakeLists.linux.txt index 695cff9c09..c16204ed5a 100644 --- a/library/cpp/lwtrace/CMakeLists.linux.txt +++ b/library/cpp/lwtrace/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/CMakeLists.txt b/library/cpp/lwtrace/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/lwtrace/CMakeLists.txt +++ b/library/cpp/lwtrace/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/mon/CMakeLists.darwin.txt b/library/cpp/lwtrace/mon/CMakeLists.darwin.txt index 50bdef36cb..b3c0ec1739 100644 --- a/library/cpp/lwtrace/mon/CMakeLists.darwin.txt +++ b/library/cpp/lwtrace/mon/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/mon/CMakeLists.linux-aarch64.txt b/library/cpp/lwtrace/mon/CMakeLists.linux-aarch64.txt index 992df105eb..728fe5d0fd 100644 --- a/library/cpp/lwtrace/mon/CMakeLists.linux-aarch64.txt +++ b/library/cpp/lwtrace/mon/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/mon/CMakeLists.linux.txt b/library/cpp/lwtrace/mon/CMakeLists.linux.txt index 992df105eb..728fe5d0fd 100644 --- a/library/cpp/lwtrace/mon/CMakeLists.linux.txt +++ b/library/cpp/lwtrace/mon/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/mon/CMakeLists.txt b/library/cpp/lwtrace/mon/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/lwtrace/mon/CMakeLists.txt +++ b/library/cpp/lwtrace/mon/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/mon/analytics/CMakeLists.darwin.txt b/library/cpp/lwtrace/mon/analytics/CMakeLists.darwin.txt index 68709fa66d..f1a03a5f4a 100644 --- a/library/cpp/lwtrace/mon/analytics/CMakeLists.darwin.txt +++ b/library/cpp/lwtrace/mon/analytics/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/mon/analytics/CMakeLists.linux-aarch64.txt b/library/cpp/lwtrace/mon/analytics/CMakeLists.linux-aarch64.txt index b000e97516..21c332ae9c 100644 --- a/library/cpp/lwtrace/mon/analytics/CMakeLists.linux-aarch64.txt +++ b/library/cpp/lwtrace/mon/analytics/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/mon/analytics/CMakeLists.linux.txt b/library/cpp/lwtrace/mon/analytics/CMakeLists.linux.txt index b000e97516..21c332ae9c 100644 --- a/library/cpp/lwtrace/mon/analytics/CMakeLists.linux.txt +++ b/library/cpp/lwtrace/mon/analytics/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/mon/analytics/CMakeLists.txt b/library/cpp/lwtrace/mon/analytics/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/lwtrace/mon/analytics/CMakeLists.txt +++ b/library/cpp/lwtrace/mon/analytics/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/protos/CMakeLists.darwin.txt b/library/cpp/lwtrace/protos/CMakeLists.darwin.txt index bed5cf2669..2c5cd291d4 100644 --- a/library/cpp/lwtrace/protos/CMakeLists.darwin.txt +++ b/library/cpp/lwtrace/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/protos/CMakeLists.linux-aarch64.txt b/library/cpp/lwtrace/protos/CMakeLists.linux-aarch64.txt index d41269194f..4b985095b2 100644 --- a/library/cpp/lwtrace/protos/CMakeLists.linux-aarch64.txt +++ b/library/cpp/lwtrace/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/protos/CMakeLists.linux.txt b/library/cpp/lwtrace/protos/CMakeLists.linux.txt index d41269194f..4b985095b2 100644 --- a/library/cpp/lwtrace/protos/CMakeLists.linux.txt +++ b/library/cpp/lwtrace/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/lwtrace/protos/CMakeLists.txt b/library/cpp/lwtrace/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/lwtrace/protos/CMakeLists.txt +++ b/library/cpp/lwtrace/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/CMakeLists.darwin.txt b/library/cpp/malloc/CMakeLists.darwin.txt index 773e71fc8f..a892a4cca7 100644 --- a/library/cpp/malloc/CMakeLists.darwin.txt +++ b/library/cpp/malloc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/CMakeLists.linux-aarch64.txt b/library/cpp/malloc/CMakeLists.linux-aarch64.txt index b68a3a50a1..974a53462b 100644 --- a/library/cpp/malloc/CMakeLists.linux-aarch64.txt +++ b/library/cpp/malloc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/CMakeLists.linux.txt b/library/cpp/malloc/CMakeLists.linux.txt index b68a3a50a1..974a53462b 100644 --- a/library/cpp/malloc/CMakeLists.linux.txt +++ b/library/cpp/malloc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/CMakeLists.txt b/library/cpp/malloc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/malloc/CMakeLists.txt +++ b/library/cpp/malloc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/api/CMakeLists.darwin.txt b/library/cpp/malloc/api/CMakeLists.darwin.txt index b85dcdd7cf..db837d83de 100644 --- a/library/cpp/malloc/api/CMakeLists.darwin.txt +++ b/library/cpp/malloc/api/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/api/CMakeLists.linux-aarch64.txt b/library/cpp/malloc/api/CMakeLists.linux-aarch64.txt index 7926e806e1..6b81b89d4c 100644 --- a/library/cpp/malloc/api/CMakeLists.linux-aarch64.txt +++ b/library/cpp/malloc/api/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/api/CMakeLists.linux.txt b/library/cpp/malloc/api/CMakeLists.linux.txt index 7926e806e1..6b81b89d4c 100644 --- a/library/cpp/malloc/api/CMakeLists.linux.txt +++ b/library/cpp/malloc/api/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/api/CMakeLists.txt b/library/cpp/malloc/api/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/malloc/api/CMakeLists.txt +++ b/library/cpp/malloc/api/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/jemalloc/CMakeLists.darwin.txt b/library/cpp/malloc/jemalloc/CMakeLists.darwin.txt index c75c562301..ea1e085b74 100644 --- a/library/cpp/malloc/jemalloc/CMakeLists.darwin.txt +++ b/library/cpp/malloc/jemalloc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/jemalloc/CMakeLists.linux-aarch64.txt b/library/cpp/malloc/jemalloc/CMakeLists.linux-aarch64.txt index f28607371c..f4c156bc0c 100644 --- a/library/cpp/malloc/jemalloc/CMakeLists.linux-aarch64.txt +++ b/library/cpp/malloc/jemalloc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/jemalloc/CMakeLists.linux.txt b/library/cpp/malloc/jemalloc/CMakeLists.linux.txt index f28607371c..f4c156bc0c 100644 --- a/library/cpp/malloc/jemalloc/CMakeLists.linux.txt +++ b/library/cpp/malloc/jemalloc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/jemalloc/CMakeLists.txt b/library/cpp/malloc/jemalloc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/malloc/jemalloc/CMakeLists.txt +++ b/library/cpp/malloc/jemalloc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/tcmalloc/CMakeLists.linux-aarch64.txt b/library/cpp/malloc/tcmalloc/CMakeLists.linux-aarch64.txt index 7768cf63e7..be15c6c305 100644 --- a/library/cpp/malloc/tcmalloc/CMakeLists.linux-aarch64.txt +++ b/library/cpp/malloc/tcmalloc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/tcmalloc/CMakeLists.linux.txt b/library/cpp/malloc/tcmalloc/CMakeLists.linux.txt index 7768cf63e7..be15c6c305 100644 --- a/library/cpp/malloc/tcmalloc/CMakeLists.linux.txt +++ b/library/cpp/malloc/tcmalloc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/malloc/tcmalloc/CMakeLists.txt b/library/cpp/malloc/tcmalloc/CMakeLists.txt index fb9f9efce2..1f942d5b2f 100644 --- a/library/cpp/malloc/tcmalloc/CMakeLists.txt +++ b/library/cpp/malloc/tcmalloc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/CMakeLists.darwin.txt b/library/cpp/messagebus/CMakeLists.darwin.txt index 9f0f8baf67..af2b7a2008 100644 --- a/library/cpp/messagebus/CMakeLists.darwin.txt +++ b/library/cpp/messagebus/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/CMakeLists.linux-aarch64.txt b/library/cpp/messagebus/CMakeLists.linux-aarch64.txt index 87688f2f50..e27549d923 100644 --- a/library/cpp/messagebus/CMakeLists.linux-aarch64.txt +++ b/library/cpp/messagebus/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/CMakeLists.linux.txt b/library/cpp/messagebus/CMakeLists.linux.txt index 87688f2f50..e27549d923 100644 --- a/library/cpp/messagebus/CMakeLists.linux.txt +++ b/library/cpp/messagebus/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/CMakeLists.txt b/library/cpp/messagebus/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/messagebus/CMakeLists.txt +++ b/library/cpp/messagebus/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/actor/CMakeLists.darwin.txt b/library/cpp/messagebus/actor/CMakeLists.darwin.txt index defce0ef7b..da26bb12a8 100644 --- a/library/cpp/messagebus/actor/CMakeLists.darwin.txt +++ b/library/cpp/messagebus/actor/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/actor/CMakeLists.linux-aarch64.txt b/library/cpp/messagebus/actor/CMakeLists.linux-aarch64.txt index ee628ebbfd..c14195e952 100644 --- a/library/cpp/messagebus/actor/CMakeLists.linux-aarch64.txt +++ b/library/cpp/messagebus/actor/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/actor/CMakeLists.linux.txt b/library/cpp/messagebus/actor/CMakeLists.linux.txt index ee628ebbfd..c14195e952 100644 --- a/library/cpp/messagebus/actor/CMakeLists.linux.txt +++ b/library/cpp/messagebus/actor/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/actor/CMakeLists.txt b/library/cpp/messagebus/actor/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/messagebus/actor/CMakeLists.txt +++ b/library/cpp/messagebus/actor/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/config/CMakeLists.darwin.txt b/library/cpp/messagebus/config/CMakeLists.darwin.txt index 6b2710b95d..2ac52c60e8 100644 --- a/library/cpp/messagebus/config/CMakeLists.darwin.txt +++ b/library/cpp/messagebus/config/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/config/CMakeLists.linux-aarch64.txt b/library/cpp/messagebus/config/CMakeLists.linux-aarch64.txt index b0bfbc77be..0414cabc63 100644 --- a/library/cpp/messagebus/config/CMakeLists.linux-aarch64.txt +++ b/library/cpp/messagebus/config/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/config/CMakeLists.linux.txt b/library/cpp/messagebus/config/CMakeLists.linux.txt index b0bfbc77be..0414cabc63 100644 --- a/library/cpp/messagebus/config/CMakeLists.linux.txt +++ b/library/cpp/messagebus/config/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/config/CMakeLists.txt b/library/cpp/messagebus/config/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/messagebus/config/CMakeLists.txt +++ b/library/cpp/messagebus/config/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/monitoring/CMakeLists.darwin.txt b/library/cpp/messagebus/monitoring/CMakeLists.darwin.txt index b7390f7c7f..8b0e392fbc 100644 --- a/library/cpp/messagebus/monitoring/CMakeLists.darwin.txt +++ b/library/cpp/messagebus/monitoring/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/monitoring/CMakeLists.linux-aarch64.txt b/library/cpp/messagebus/monitoring/CMakeLists.linux-aarch64.txt index 2fe6527338..38b1aa98a3 100644 --- a/library/cpp/messagebus/monitoring/CMakeLists.linux-aarch64.txt +++ b/library/cpp/messagebus/monitoring/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/monitoring/CMakeLists.linux.txt b/library/cpp/messagebus/monitoring/CMakeLists.linux.txt index 2fe6527338..38b1aa98a3 100644 --- a/library/cpp/messagebus/monitoring/CMakeLists.linux.txt +++ b/library/cpp/messagebus/monitoring/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/monitoring/CMakeLists.txt b/library/cpp/messagebus/monitoring/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/messagebus/monitoring/CMakeLists.txt +++ b/library/cpp/messagebus/monitoring/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/oldmodule/CMakeLists.darwin.txt b/library/cpp/messagebus/oldmodule/CMakeLists.darwin.txt index b4f59bc156..11b6ead04d 100644 --- a/library/cpp/messagebus/oldmodule/CMakeLists.darwin.txt +++ b/library/cpp/messagebus/oldmodule/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/oldmodule/CMakeLists.linux-aarch64.txt b/library/cpp/messagebus/oldmodule/CMakeLists.linux-aarch64.txt index 671dd19395..8e3de5c67f 100644 --- a/library/cpp/messagebus/oldmodule/CMakeLists.linux-aarch64.txt +++ b/library/cpp/messagebus/oldmodule/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/oldmodule/CMakeLists.linux.txt b/library/cpp/messagebus/oldmodule/CMakeLists.linux.txt index 671dd19395..8e3de5c67f 100644 --- a/library/cpp/messagebus/oldmodule/CMakeLists.linux.txt +++ b/library/cpp/messagebus/oldmodule/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/oldmodule/CMakeLists.txt b/library/cpp/messagebus/oldmodule/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/messagebus/oldmodule/CMakeLists.txt +++ b/library/cpp/messagebus/oldmodule/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/protobuf/CMakeLists.darwin.txt b/library/cpp/messagebus/protobuf/CMakeLists.darwin.txt index c7e016b2c0..8566a4b7ef 100644 --- a/library/cpp/messagebus/protobuf/CMakeLists.darwin.txt +++ b/library/cpp/messagebus/protobuf/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/protobuf/CMakeLists.linux-aarch64.txt b/library/cpp/messagebus/protobuf/CMakeLists.linux-aarch64.txt index b66e16cf13..e235083392 100644 --- a/library/cpp/messagebus/protobuf/CMakeLists.linux-aarch64.txt +++ b/library/cpp/messagebus/protobuf/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/protobuf/CMakeLists.linux.txt b/library/cpp/messagebus/protobuf/CMakeLists.linux.txt index b66e16cf13..e235083392 100644 --- a/library/cpp/messagebus/protobuf/CMakeLists.linux.txt +++ b/library/cpp/messagebus/protobuf/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/protobuf/CMakeLists.txt b/library/cpp/messagebus/protobuf/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/messagebus/protobuf/CMakeLists.txt +++ b/library/cpp/messagebus/protobuf/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/scheduler/CMakeLists.darwin.txt b/library/cpp/messagebus/scheduler/CMakeLists.darwin.txt index 051188b05c..510bc01bd5 100644 --- a/library/cpp/messagebus/scheduler/CMakeLists.darwin.txt +++ b/library/cpp/messagebus/scheduler/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/scheduler/CMakeLists.linux-aarch64.txt b/library/cpp/messagebus/scheduler/CMakeLists.linux-aarch64.txt index 618abf8d30..51187c45a4 100644 --- a/library/cpp/messagebus/scheduler/CMakeLists.linux-aarch64.txt +++ b/library/cpp/messagebus/scheduler/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/scheduler/CMakeLists.linux.txt b/library/cpp/messagebus/scheduler/CMakeLists.linux.txt index 618abf8d30..51187c45a4 100644 --- a/library/cpp/messagebus/scheduler/CMakeLists.linux.txt +++ b/library/cpp/messagebus/scheduler/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/scheduler/CMakeLists.txt b/library/cpp/messagebus/scheduler/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/messagebus/scheduler/CMakeLists.txt +++ b/library/cpp/messagebus/scheduler/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/www/CMakeLists.darwin.txt b/library/cpp/messagebus/www/CMakeLists.darwin.txt index 20438aeb6c..5a8c62b635 100644 --- a/library/cpp/messagebus/www/CMakeLists.darwin.txt +++ b/library/cpp/messagebus/www/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/www/CMakeLists.linux-aarch64.txt b/library/cpp/messagebus/www/CMakeLists.linux-aarch64.txt index 2258594273..0776cd5561 100644 --- a/library/cpp/messagebus/www/CMakeLists.linux-aarch64.txt +++ b/library/cpp/messagebus/www/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/www/CMakeLists.linux.txt b/library/cpp/messagebus/www/CMakeLists.linux.txt index 2258594273..0776cd5561 100644 --- a/library/cpp/messagebus/www/CMakeLists.linux.txt +++ b/library/cpp/messagebus/www/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/messagebus/www/CMakeLists.txt b/library/cpp/messagebus/www/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/messagebus/www/CMakeLists.txt +++ b/library/cpp/messagebus/www/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/mime/CMakeLists.txt b/library/cpp/mime/CMakeLists.txt index e9367ea4a9..c3cf229187 100644 --- a/library/cpp/mime/CMakeLists.txt +++ b/library/cpp/mime/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/mime/types/CMakeLists.darwin.txt b/library/cpp/mime/types/CMakeLists.darwin.txt index a29b0abaaa..7336425016 100644 --- a/library/cpp/mime/types/CMakeLists.darwin.txt +++ b/library/cpp/mime/types/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/mime/types/CMakeLists.linux-aarch64.txt b/library/cpp/mime/types/CMakeLists.linux-aarch64.txt index 534a2061d5..272fa8d501 100644 --- a/library/cpp/mime/types/CMakeLists.linux-aarch64.txt +++ b/library/cpp/mime/types/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/mime/types/CMakeLists.linux.txt b/library/cpp/mime/types/CMakeLists.linux.txt index 534a2061d5..272fa8d501 100644 --- a/library/cpp/mime/types/CMakeLists.linux.txt +++ b/library/cpp/mime/types/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/mime/types/CMakeLists.txt b/library/cpp/mime/types/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/mime/types/CMakeLists.txt +++ b/library/cpp/mime/types/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/CMakeLists.txt b/library/cpp/monlib/CMakeLists.txt index f618762aa8..ed66cadbfa 100644 --- a/library/cpp/monlib/CMakeLists.txt +++ b/library/cpp/monlib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/deprecated/CMakeLists.txt b/library/cpp/monlib/deprecated/CMakeLists.txt index b413e0df87..26b87ae471 100644 --- a/library/cpp/monlib/deprecated/CMakeLists.txt +++ b/library/cpp/monlib/deprecated/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/deprecated/json/CMakeLists.darwin.txt b/library/cpp/monlib/deprecated/json/CMakeLists.darwin.txt index 22f7d6227c..6bcb22f8cc 100644 --- a/library/cpp/monlib/deprecated/json/CMakeLists.darwin.txt +++ b/library/cpp/monlib/deprecated/json/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/deprecated/json/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/deprecated/json/CMakeLists.linux-aarch64.txt index 3c526573cb..c7cb3720d3 100644 --- a/library/cpp/monlib/deprecated/json/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/deprecated/json/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/deprecated/json/CMakeLists.linux.txt b/library/cpp/monlib/deprecated/json/CMakeLists.linux.txt index 3c526573cb..c7cb3720d3 100644 --- a/library/cpp/monlib/deprecated/json/CMakeLists.linux.txt +++ b/library/cpp/monlib/deprecated/json/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/deprecated/json/CMakeLists.txt b/library/cpp/monlib/deprecated/json/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/deprecated/json/CMakeLists.txt +++ b/library/cpp/monlib/deprecated/json/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/dynamic_counters/CMakeLists.darwin.txt b/library/cpp/monlib/dynamic_counters/CMakeLists.darwin.txt index e8dacd3a61..35f39a552a 100644 --- a/library/cpp/monlib/dynamic_counters/CMakeLists.darwin.txt +++ b/library/cpp/monlib/dynamic_counters/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/dynamic_counters/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/dynamic_counters/CMakeLists.linux-aarch64.txt index 87a5fa69ea..79ee1ffe0b 100644 --- a/library/cpp/monlib/dynamic_counters/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/dynamic_counters/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/dynamic_counters/CMakeLists.linux.txt b/library/cpp/monlib/dynamic_counters/CMakeLists.linux.txt index 87a5fa69ea..79ee1ffe0b 100644 --- a/library/cpp/monlib/dynamic_counters/CMakeLists.linux.txt +++ b/library/cpp/monlib/dynamic_counters/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/dynamic_counters/CMakeLists.txt b/library/cpp/monlib/dynamic_counters/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/dynamic_counters/CMakeLists.txt +++ b/library/cpp/monlib/dynamic_counters/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.darwin.txt b/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.darwin.txt index 6d9aa304fc..fa99d9dc2f 100644 --- a/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.darwin.txt +++ b/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.linux-aarch64.txt index 7047272351..b6a771543e 100644 --- a/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.linux.txt b/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.linux.txt index 7047272351..b6a771543e 100644 --- a/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.linux.txt +++ b/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.txt b/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.txt +++ b/library/cpp/monlib/dynamic_counters/percentile/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/CMakeLists.darwin.txt b/library/cpp/monlib/encode/CMakeLists.darwin.txt index 539c9b07f3..fec066c72a 100644 --- a/library/cpp/monlib/encode/CMakeLists.darwin.txt +++ b/library/cpp/monlib/encode/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/encode/CMakeLists.linux-aarch64.txt index d43206009f..220c3aa720 100644 --- a/library/cpp/monlib/encode/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/encode/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/CMakeLists.linux.txt b/library/cpp/monlib/encode/CMakeLists.linux.txt index d43206009f..220c3aa720 100644 --- a/library/cpp/monlib/encode/CMakeLists.linux.txt +++ b/library/cpp/monlib/encode/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/CMakeLists.txt b/library/cpp/monlib/encode/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/encode/CMakeLists.txt +++ b/library/cpp/monlib/encode/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/buffered/CMakeLists.darwin.txt b/library/cpp/monlib/encode/buffered/CMakeLists.darwin.txt index 978bbad573..e867afbb8c 100644 --- a/library/cpp/monlib/encode/buffered/CMakeLists.darwin.txt +++ b/library/cpp/monlib/encode/buffered/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/buffered/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/encode/buffered/CMakeLists.linux-aarch64.txt index a3d3f40e98..211beb8b27 100644 --- a/library/cpp/monlib/encode/buffered/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/encode/buffered/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/buffered/CMakeLists.linux.txt b/library/cpp/monlib/encode/buffered/CMakeLists.linux.txt index a3d3f40e98..211beb8b27 100644 --- a/library/cpp/monlib/encode/buffered/CMakeLists.linux.txt +++ b/library/cpp/monlib/encode/buffered/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/buffered/CMakeLists.txt b/library/cpp/monlib/encode/buffered/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/encode/buffered/CMakeLists.txt +++ b/library/cpp/monlib/encode/buffered/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/json/CMakeLists.darwin.txt b/library/cpp/monlib/encode/json/CMakeLists.darwin.txt index bcdb013523..55a0abe1c3 100644 --- a/library/cpp/monlib/encode/json/CMakeLists.darwin.txt +++ b/library/cpp/monlib/encode/json/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/json/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/encode/json/CMakeLists.linux-aarch64.txt index 7c8f4c7d62..6086064a85 100644 --- a/library/cpp/monlib/encode/json/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/encode/json/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/json/CMakeLists.linux.txt b/library/cpp/monlib/encode/json/CMakeLists.linux.txt index 7c8f4c7d62..6086064a85 100644 --- a/library/cpp/monlib/encode/json/CMakeLists.linux.txt +++ b/library/cpp/monlib/encode/json/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/json/CMakeLists.txt b/library/cpp/monlib/encode/json/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/encode/json/CMakeLists.txt +++ b/library/cpp/monlib/encode/json/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/legacy_protobuf/CMakeLists.txt b/library/cpp/monlib/encode/legacy_protobuf/CMakeLists.txt index dde515d0db..6d580ae9ad 100644 --- a/library/cpp/monlib/encode/legacy_protobuf/CMakeLists.txt +++ b/library/cpp/monlib/encode/legacy_protobuf/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.darwin.txt b/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.darwin.txt index 3c051b63a3..9a9caca01c 100644 --- a/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.darwin.txt +++ b/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.linux-aarch64.txt index 20ea45cd67..9f42c554e6 100644 --- a/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.linux.txt b/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.linux.txt index 20ea45cd67..9f42c554e6 100644 --- a/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.linux.txt +++ b/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.txt b/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.txt +++ b/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/prometheus/CMakeLists.darwin.txt b/library/cpp/monlib/encode/prometheus/CMakeLists.darwin.txt index 662ee84590..2db649e693 100644 --- a/library/cpp/monlib/encode/prometheus/CMakeLists.darwin.txt +++ b/library/cpp/monlib/encode/prometheus/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/prometheus/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/encode/prometheus/CMakeLists.linux-aarch64.txt index 501ea0f6e2..7c76369bd9 100644 --- a/library/cpp/monlib/encode/prometheus/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/encode/prometheus/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/prometheus/CMakeLists.linux.txt b/library/cpp/monlib/encode/prometheus/CMakeLists.linux.txt index 501ea0f6e2..7c76369bd9 100644 --- a/library/cpp/monlib/encode/prometheus/CMakeLists.linux.txt +++ b/library/cpp/monlib/encode/prometheus/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/prometheus/CMakeLists.txt b/library/cpp/monlib/encode/prometheus/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/encode/prometheus/CMakeLists.txt +++ b/library/cpp/monlib/encode/prometheus/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/spack/CMakeLists.darwin.txt b/library/cpp/monlib/encode/spack/CMakeLists.darwin.txt index 1be9c24714..9eccd0b629 100644 --- a/library/cpp/monlib/encode/spack/CMakeLists.darwin.txt +++ b/library/cpp/monlib/encode/spack/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/spack/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/encode/spack/CMakeLists.linux-aarch64.txt index 81590acc5d..118b926638 100644 --- a/library/cpp/monlib/encode/spack/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/encode/spack/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/spack/CMakeLists.linux.txt b/library/cpp/monlib/encode/spack/CMakeLists.linux.txt index 81590acc5d..118b926638 100644 --- a/library/cpp/monlib/encode/spack/CMakeLists.linux.txt +++ b/library/cpp/monlib/encode/spack/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/spack/CMakeLists.txt b/library/cpp/monlib/encode/spack/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/encode/spack/CMakeLists.txt +++ b/library/cpp/monlib/encode/spack/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/text/CMakeLists.darwin.txt b/library/cpp/monlib/encode/text/CMakeLists.darwin.txt index 5f8faa7897..58143a2371 100644 --- a/library/cpp/monlib/encode/text/CMakeLists.darwin.txt +++ b/library/cpp/monlib/encode/text/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/text/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/encode/text/CMakeLists.linux-aarch64.txt index 1791a12df9..3089820d80 100644 --- a/library/cpp/monlib/encode/text/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/encode/text/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/text/CMakeLists.linux.txt b/library/cpp/monlib/encode/text/CMakeLists.linux.txt index 1791a12df9..3089820d80 100644 --- a/library/cpp/monlib/encode/text/CMakeLists.linux.txt +++ b/library/cpp/monlib/encode/text/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/encode/text/CMakeLists.txt b/library/cpp/monlib/encode/text/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/encode/text/CMakeLists.txt +++ b/library/cpp/monlib/encode/text/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/exception/CMakeLists.darwin.txt b/library/cpp/monlib/exception/CMakeLists.darwin.txt index 43b9efb77f..94cb28420f 100644 --- a/library/cpp/monlib/exception/CMakeLists.darwin.txt +++ b/library/cpp/monlib/exception/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/exception/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/exception/CMakeLists.linux-aarch64.txt index 24d2a8b619..f1bd66c0da 100644 --- a/library/cpp/monlib/exception/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/exception/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/exception/CMakeLists.linux.txt b/library/cpp/monlib/exception/CMakeLists.linux.txt index 24d2a8b619..f1bd66c0da 100644 --- a/library/cpp/monlib/exception/CMakeLists.linux.txt +++ b/library/cpp/monlib/exception/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/exception/CMakeLists.txt b/library/cpp/monlib/exception/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/exception/CMakeLists.txt +++ b/library/cpp/monlib/exception/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/messagebus/CMakeLists.darwin.txt b/library/cpp/monlib/messagebus/CMakeLists.darwin.txt index 82610ee23f..cae48e0a83 100644 --- a/library/cpp/monlib/messagebus/CMakeLists.darwin.txt +++ b/library/cpp/monlib/messagebus/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/messagebus/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/messagebus/CMakeLists.linux-aarch64.txt index cfe2f66af4..98f2b23c77 100644 --- a/library/cpp/monlib/messagebus/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/messagebus/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/messagebus/CMakeLists.linux.txt b/library/cpp/monlib/messagebus/CMakeLists.linux.txt index cfe2f66af4..98f2b23c77 100644 --- a/library/cpp/monlib/messagebus/CMakeLists.linux.txt +++ b/library/cpp/monlib/messagebus/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/messagebus/CMakeLists.txt b/library/cpp/monlib/messagebus/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/messagebus/CMakeLists.txt +++ b/library/cpp/monlib/messagebus/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/metrics/CMakeLists.darwin.txt b/library/cpp/monlib/metrics/CMakeLists.darwin.txt index d3002d3ad2..1af273310a 100644 --- a/library/cpp/monlib/metrics/CMakeLists.darwin.txt +++ b/library/cpp/monlib/metrics/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/metrics/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/metrics/CMakeLists.linux-aarch64.txt index 2695c03931..999ca3d569 100644 --- a/library/cpp/monlib/metrics/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/metrics/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/metrics/CMakeLists.linux.txt b/library/cpp/monlib/metrics/CMakeLists.linux.txt index 2695c03931..999ca3d569 100644 --- a/library/cpp/monlib/metrics/CMakeLists.linux.txt +++ b/library/cpp/monlib/metrics/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/metrics/CMakeLists.txt b/library/cpp/monlib/metrics/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/metrics/CMakeLists.txt +++ b/library/cpp/monlib/metrics/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/service/CMakeLists.darwin.txt b/library/cpp/monlib/service/CMakeLists.darwin.txt index 24bc76ad29..48ffa45b49 100644 --- a/library/cpp/monlib/service/CMakeLists.darwin.txt +++ b/library/cpp/monlib/service/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/service/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/service/CMakeLists.linux-aarch64.txt index b5a0725893..22d00e4e17 100644 --- a/library/cpp/monlib/service/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/service/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/service/CMakeLists.linux.txt b/library/cpp/monlib/service/CMakeLists.linux.txt index b5a0725893..22d00e4e17 100644 --- a/library/cpp/monlib/service/CMakeLists.linux.txt +++ b/library/cpp/monlib/service/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/service/CMakeLists.txt b/library/cpp/monlib/service/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/service/CMakeLists.txt +++ b/library/cpp/monlib/service/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/service/pages/CMakeLists.darwin.txt b/library/cpp/monlib/service/pages/CMakeLists.darwin.txt index cc2387ede1..062d269d30 100644 --- a/library/cpp/monlib/service/pages/CMakeLists.darwin.txt +++ b/library/cpp/monlib/service/pages/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/service/pages/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/service/pages/CMakeLists.linux-aarch64.txt index 55463581b7..099a0191ef 100644 --- a/library/cpp/monlib/service/pages/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/service/pages/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/service/pages/CMakeLists.linux.txt b/library/cpp/monlib/service/pages/CMakeLists.linux.txt index 55463581b7..099a0191ef 100644 --- a/library/cpp/monlib/service/pages/CMakeLists.linux.txt +++ b/library/cpp/monlib/service/pages/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/service/pages/CMakeLists.txt b/library/cpp/monlib/service/pages/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/service/pages/CMakeLists.txt +++ b/library/cpp/monlib/service/pages/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/service/pages/tablesorter/CMakeLists.darwin.txt b/library/cpp/monlib/service/pages/tablesorter/CMakeLists.darwin.txt index 8a5b46eba9..be59f3a4b5 100644 --- a/library/cpp/monlib/service/pages/tablesorter/CMakeLists.darwin.txt +++ b/library/cpp/monlib/service/pages/tablesorter/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/service/pages/tablesorter/CMakeLists.linux-aarch64.txt b/library/cpp/monlib/service/pages/tablesorter/CMakeLists.linux-aarch64.txt index b3e2ffe5a1..633736b174 100644 --- a/library/cpp/monlib/service/pages/tablesorter/CMakeLists.linux-aarch64.txt +++ b/library/cpp/monlib/service/pages/tablesorter/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/service/pages/tablesorter/CMakeLists.linux.txt b/library/cpp/monlib/service/pages/tablesorter/CMakeLists.linux.txt index b3e2ffe5a1..633736b174 100644 --- a/library/cpp/monlib/service/pages/tablesorter/CMakeLists.linux.txt +++ b/library/cpp/monlib/service/pages/tablesorter/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/monlib/service/pages/tablesorter/CMakeLists.txt b/library/cpp/monlib/service/pages/tablesorter/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/monlib/service/pages/tablesorter/CMakeLists.txt +++ b/library/cpp/monlib/service/pages/tablesorter/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/on_disk/CMakeLists.txt b/library/cpp/on_disk/CMakeLists.txt index 461a4b7a97..4202947169 100644 --- a/library/cpp/on_disk/CMakeLists.txt +++ b/library/cpp/on_disk/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/on_disk/chunks/CMakeLists.darwin.txt b/library/cpp/on_disk/chunks/CMakeLists.darwin.txt index 1eb245af19..ca761a26c8 100644 --- a/library/cpp/on_disk/chunks/CMakeLists.darwin.txt +++ b/library/cpp/on_disk/chunks/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/on_disk/chunks/CMakeLists.linux-aarch64.txt b/library/cpp/on_disk/chunks/CMakeLists.linux-aarch64.txt index bfb48a1cfd..7db2f54c16 100644 --- a/library/cpp/on_disk/chunks/CMakeLists.linux-aarch64.txt +++ b/library/cpp/on_disk/chunks/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/on_disk/chunks/CMakeLists.linux.txt b/library/cpp/on_disk/chunks/CMakeLists.linux.txt index bfb48a1cfd..7db2f54c16 100644 --- a/library/cpp/on_disk/chunks/CMakeLists.linux.txt +++ b/library/cpp/on_disk/chunks/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/on_disk/chunks/CMakeLists.txt b/library/cpp/on_disk/chunks/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/on_disk/chunks/CMakeLists.txt +++ b/library/cpp/on_disk/chunks/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/CMakeLists.txt b/library/cpp/openssl/CMakeLists.txt index 392ccc8eb4..cb9c6e4060 100644 --- a/library/cpp/openssl/CMakeLists.txt +++ b/library/cpp/openssl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/holders/CMakeLists.darwin.txt b/library/cpp/openssl/holders/CMakeLists.darwin.txt index 90f445a87b..f0e455f3aa 100644 --- a/library/cpp/openssl/holders/CMakeLists.darwin.txt +++ b/library/cpp/openssl/holders/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/holders/CMakeLists.linux-aarch64.txt b/library/cpp/openssl/holders/CMakeLists.linux-aarch64.txt index 8352c8c11d..59f7ba41c4 100644 --- a/library/cpp/openssl/holders/CMakeLists.linux-aarch64.txt +++ b/library/cpp/openssl/holders/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/holders/CMakeLists.linux.txt b/library/cpp/openssl/holders/CMakeLists.linux.txt index 8352c8c11d..59f7ba41c4 100644 --- a/library/cpp/openssl/holders/CMakeLists.linux.txt +++ b/library/cpp/openssl/holders/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/holders/CMakeLists.txt b/library/cpp/openssl/holders/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/openssl/holders/CMakeLists.txt +++ b/library/cpp/openssl/holders/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/init/CMakeLists.darwin.txt b/library/cpp/openssl/init/CMakeLists.darwin.txt index 6049df14dc..1ba4d2cebf 100644 --- a/library/cpp/openssl/init/CMakeLists.darwin.txt +++ b/library/cpp/openssl/init/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/init/CMakeLists.linux-aarch64.txt b/library/cpp/openssl/init/CMakeLists.linux-aarch64.txt index acd1cea691..cf53e73239 100644 --- a/library/cpp/openssl/init/CMakeLists.linux-aarch64.txt +++ b/library/cpp/openssl/init/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/init/CMakeLists.linux.txt b/library/cpp/openssl/init/CMakeLists.linux.txt index acd1cea691..cf53e73239 100644 --- a/library/cpp/openssl/init/CMakeLists.linux.txt +++ b/library/cpp/openssl/init/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/init/CMakeLists.txt b/library/cpp/openssl/init/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/openssl/init/CMakeLists.txt +++ b/library/cpp/openssl/init/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/io/CMakeLists.darwin.txt b/library/cpp/openssl/io/CMakeLists.darwin.txt index 42f1810dab..51c040ccd3 100644 --- a/library/cpp/openssl/io/CMakeLists.darwin.txt +++ b/library/cpp/openssl/io/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/io/CMakeLists.linux-aarch64.txt b/library/cpp/openssl/io/CMakeLists.linux-aarch64.txt index c87fe246d0..e932afdd60 100644 --- a/library/cpp/openssl/io/CMakeLists.linux-aarch64.txt +++ b/library/cpp/openssl/io/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/io/CMakeLists.linux.txt b/library/cpp/openssl/io/CMakeLists.linux.txt index c87fe246d0..e932afdd60 100644 --- a/library/cpp/openssl/io/CMakeLists.linux.txt +++ b/library/cpp/openssl/io/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/io/CMakeLists.txt b/library/cpp/openssl/io/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/openssl/io/CMakeLists.txt +++ b/library/cpp/openssl/io/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/method/CMakeLists.darwin.txt b/library/cpp/openssl/method/CMakeLists.darwin.txt index 81ee4aeeca..fcca44537e 100644 --- a/library/cpp/openssl/method/CMakeLists.darwin.txt +++ b/library/cpp/openssl/method/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/method/CMakeLists.linux-aarch64.txt b/library/cpp/openssl/method/CMakeLists.linux-aarch64.txt index ce67321420..fab526fe7e 100644 --- a/library/cpp/openssl/method/CMakeLists.linux-aarch64.txt +++ b/library/cpp/openssl/method/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/method/CMakeLists.linux.txt b/library/cpp/openssl/method/CMakeLists.linux.txt index ce67321420..fab526fe7e 100644 --- a/library/cpp/openssl/method/CMakeLists.linux.txt +++ b/library/cpp/openssl/method/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/openssl/method/CMakeLists.txt b/library/cpp/openssl/method/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/openssl/method/CMakeLists.txt +++ b/library/cpp/openssl/method/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/packedtypes/CMakeLists.darwin.txt b/library/cpp/packedtypes/CMakeLists.darwin.txt index edd45c86ca..9e3e6c0b53 100644 --- a/library/cpp/packedtypes/CMakeLists.darwin.txt +++ b/library/cpp/packedtypes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/packedtypes/CMakeLists.linux-aarch64.txt b/library/cpp/packedtypes/CMakeLists.linux-aarch64.txt index db933e9bc3..d2705961bd 100644 --- a/library/cpp/packedtypes/CMakeLists.linux-aarch64.txt +++ b/library/cpp/packedtypes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/packedtypes/CMakeLists.linux.txt b/library/cpp/packedtypes/CMakeLists.linux.txt index db933e9bc3..d2705961bd 100644 --- a/library/cpp/packedtypes/CMakeLists.linux.txt +++ b/library/cpp/packedtypes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/packedtypes/CMakeLists.txt b/library/cpp/packedtypes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/packedtypes/CMakeLists.txt +++ b/library/cpp/packedtypes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/packers/CMakeLists.darwin.txt b/library/cpp/packers/CMakeLists.darwin.txt index 5d2f57d1d9..59f8cfcaf5 100644 --- a/library/cpp/packers/CMakeLists.darwin.txt +++ b/library/cpp/packers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/packers/CMakeLists.linux-aarch64.txt b/library/cpp/packers/CMakeLists.linux-aarch64.txt index 4112dc550b..6e4c5cd6b5 100644 --- a/library/cpp/packers/CMakeLists.linux-aarch64.txt +++ b/library/cpp/packers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/packers/CMakeLists.linux.txt b/library/cpp/packers/CMakeLists.linux.txt index 4112dc550b..6e4c5cd6b5 100644 --- a/library/cpp/packers/CMakeLists.linux.txt +++ b/library/cpp/packers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/packers/CMakeLists.txt b/library/cpp/packers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/packers/CMakeLists.txt +++ b/library/cpp/packers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/pop_count/CMakeLists.darwin.txt b/library/cpp/pop_count/CMakeLists.darwin.txt index f937f0c451..30961489be 100644 --- a/library/cpp/pop_count/CMakeLists.darwin.txt +++ b/library/cpp/pop_count/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/pop_count/CMakeLists.linux-aarch64.txt b/library/cpp/pop_count/CMakeLists.linux-aarch64.txt index 0d0e89caa6..5aac2bc61f 100644 --- a/library/cpp/pop_count/CMakeLists.linux-aarch64.txt +++ b/library/cpp/pop_count/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/pop_count/CMakeLists.linux.txt b/library/cpp/pop_count/CMakeLists.linux.txt index 0d0e89caa6..5aac2bc61f 100644 --- a/library/cpp/pop_count/CMakeLists.linux.txt +++ b/library/cpp/pop_count/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/pop_count/CMakeLists.txt b/library/cpp/pop_count/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/pop_count/CMakeLists.txt +++ b/library/cpp/pop_count/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/presort/CMakeLists.darwin.txt b/library/cpp/presort/CMakeLists.darwin.txt index 7fd3c07814..5f8c72b28c 100644 --- a/library/cpp/presort/CMakeLists.darwin.txt +++ b/library/cpp/presort/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/presort/CMakeLists.linux-aarch64.txt b/library/cpp/presort/CMakeLists.linux-aarch64.txt index a0f22a5e08..da006d6682 100644 --- a/library/cpp/presort/CMakeLists.linux-aarch64.txt +++ b/library/cpp/presort/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/presort/CMakeLists.linux.txt b/library/cpp/presort/CMakeLists.linux.txt index a0f22a5e08..da006d6682 100644 --- a/library/cpp/presort/CMakeLists.linux.txt +++ b/library/cpp/presort/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/presort/CMakeLists.txt b/library/cpp/presort/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/presort/CMakeLists.txt +++ b/library/cpp/presort/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/CMakeLists.txt b/library/cpp/protobuf/CMakeLists.txt index 41b18218f1..cfd4a1733f 100644 --- a/library/cpp/protobuf/CMakeLists.txt +++ b/library/cpp/protobuf/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/interop/CMakeLists.darwin.txt b/library/cpp/protobuf/interop/CMakeLists.darwin.txt index 68f3fa1a61..61799c97ff 100644 --- a/library/cpp/protobuf/interop/CMakeLists.darwin.txt +++ b/library/cpp/protobuf/interop/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/interop/CMakeLists.linux-aarch64.txt b/library/cpp/protobuf/interop/CMakeLists.linux-aarch64.txt index 10a446c976..0c2bd62d47 100644 --- a/library/cpp/protobuf/interop/CMakeLists.linux-aarch64.txt +++ b/library/cpp/protobuf/interop/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/interop/CMakeLists.linux.txt b/library/cpp/protobuf/interop/CMakeLists.linux.txt index 10a446c976..0c2bd62d47 100644 --- a/library/cpp/protobuf/interop/CMakeLists.linux.txt +++ b/library/cpp/protobuf/interop/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/interop/CMakeLists.txt b/library/cpp/protobuf/interop/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/protobuf/interop/CMakeLists.txt +++ b/library/cpp/protobuf/interop/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/json/CMakeLists.darwin.txt b/library/cpp/protobuf/json/CMakeLists.darwin.txt index 3347433da2..5eb786fb5b 100644 --- a/library/cpp/protobuf/json/CMakeLists.darwin.txt +++ b/library/cpp/protobuf/json/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/json/CMakeLists.linux-aarch64.txt b/library/cpp/protobuf/json/CMakeLists.linux-aarch64.txt index 8a790b5037..6fce8bebb0 100644 --- a/library/cpp/protobuf/json/CMakeLists.linux-aarch64.txt +++ b/library/cpp/protobuf/json/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/json/CMakeLists.linux.txt b/library/cpp/protobuf/json/CMakeLists.linux.txt index 8a790b5037..6fce8bebb0 100644 --- a/library/cpp/protobuf/json/CMakeLists.linux.txt +++ b/library/cpp/protobuf/json/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/json/CMakeLists.txt b/library/cpp/protobuf/json/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/protobuf/json/CMakeLists.txt +++ b/library/cpp/protobuf/json/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/util/CMakeLists.darwin.txt b/library/cpp/protobuf/util/CMakeLists.darwin.txt index d04f95d395..51b65cd5b9 100644 --- a/library/cpp/protobuf/util/CMakeLists.darwin.txt +++ b/library/cpp/protobuf/util/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/util/CMakeLists.linux-aarch64.txt b/library/cpp/protobuf/util/CMakeLists.linux-aarch64.txt index 61dbcf6f16..9ab7bb59e9 100644 --- a/library/cpp/protobuf/util/CMakeLists.linux-aarch64.txt +++ b/library/cpp/protobuf/util/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/util/CMakeLists.linux.txt b/library/cpp/protobuf/util/CMakeLists.linux.txt index 61dbcf6f16..9ab7bb59e9 100644 --- a/library/cpp/protobuf/util/CMakeLists.linux.txt +++ b/library/cpp/protobuf/util/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/util/CMakeLists.txt b/library/cpp/protobuf/util/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/protobuf/util/CMakeLists.txt +++ b/library/cpp/protobuf/util/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/util/proto/CMakeLists.darwin.txt b/library/cpp/protobuf/util/proto/CMakeLists.darwin.txt index df5df0af1a..33cfab6c43 100644 --- a/library/cpp/protobuf/util/proto/CMakeLists.darwin.txt +++ b/library/cpp/protobuf/util/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/util/proto/CMakeLists.linux-aarch64.txt b/library/cpp/protobuf/util/proto/CMakeLists.linux-aarch64.txt index 23c7bcedd7..ae8c2efd18 100644 --- a/library/cpp/protobuf/util/proto/CMakeLists.linux-aarch64.txt +++ b/library/cpp/protobuf/util/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/util/proto/CMakeLists.linux.txt b/library/cpp/protobuf/util/proto/CMakeLists.linux.txt index 23c7bcedd7..ae8c2efd18 100644 --- a/library/cpp/protobuf/util/proto/CMakeLists.linux.txt +++ b/library/cpp/protobuf/util/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/protobuf/util/proto/CMakeLists.txt b/library/cpp/protobuf/util/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/protobuf/util/proto/CMakeLists.txt +++ b/library/cpp/protobuf/util/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/random_provider/CMakeLists.darwin.txt b/library/cpp/random_provider/CMakeLists.darwin.txt index 992d03e744..ac70e71b91 100644 --- a/library/cpp/random_provider/CMakeLists.darwin.txt +++ b/library/cpp/random_provider/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/random_provider/CMakeLists.linux-aarch64.txt b/library/cpp/random_provider/CMakeLists.linux-aarch64.txt index 66268642ce..797bda818a 100644 --- a/library/cpp/random_provider/CMakeLists.linux-aarch64.txt +++ b/library/cpp/random_provider/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/random_provider/CMakeLists.linux.txt b/library/cpp/random_provider/CMakeLists.linux.txt index 66268642ce..797bda818a 100644 --- a/library/cpp/random_provider/CMakeLists.linux.txt +++ b/library/cpp/random_provider/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/random_provider/CMakeLists.txt b/library/cpp/random_provider/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/random_provider/CMakeLists.txt +++ b/library/cpp/random_provider/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/CMakeLists.darwin.txt b/library/cpp/regex/CMakeLists.darwin.txt index 0eebca8708..6e2a4fabcd 100644 --- a/library/cpp/regex/CMakeLists.darwin.txt +++ b/library/cpp/regex/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/CMakeLists.linux-aarch64.txt b/library/cpp/regex/CMakeLists.linux-aarch64.txt index f25cde9bab..279390306b 100644 --- a/library/cpp/regex/CMakeLists.linux-aarch64.txt +++ b/library/cpp/regex/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/CMakeLists.linux.txt b/library/cpp/regex/CMakeLists.linux.txt index 0eebca8708..6e2a4fabcd 100644 --- a/library/cpp/regex/CMakeLists.linux.txt +++ b/library/cpp/regex/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/CMakeLists.txt b/library/cpp/regex/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/regex/CMakeLists.txt +++ b/library/cpp/regex/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/hyperscan/CMakeLists.darwin.txt b/library/cpp/regex/hyperscan/CMakeLists.darwin.txt index 9339884699..47150388a7 100644 --- a/library/cpp/regex/hyperscan/CMakeLists.darwin.txt +++ b/library/cpp/regex/hyperscan/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/hyperscan/CMakeLists.linux.txt b/library/cpp/regex/hyperscan/CMakeLists.linux.txt index 74899bfc59..8c71567f3a 100644 --- a/library/cpp/regex/hyperscan/CMakeLists.linux.txt +++ b/library/cpp/regex/hyperscan/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/hyperscan/CMakeLists.txt b/library/cpp/regex/hyperscan/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/library/cpp/regex/hyperscan/CMakeLists.txt +++ b/library/cpp/regex/hyperscan/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/pcre/CMakeLists.darwin.txt b/library/cpp/regex/pcre/CMakeLists.darwin.txt index c76309a35c..8e01e97c1d 100644 --- a/library/cpp/regex/pcre/CMakeLists.darwin.txt +++ b/library/cpp/regex/pcre/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/pcre/CMakeLists.linux-aarch64.txt b/library/cpp/regex/pcre/CMakeLists.linux-aarch64.txt index a74cc27768..f526317f26 100644 --- a/library/cpp/regex/pcre/CMakeLists.linux-aarch64.txt +++ b/library/cpp/regex/pcre/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/pcre/CMakeLists.linux.txt b/library/cpp/regex/pcre/CMakeLists.linux.txt index a74cc27768..f526317f26 100644 --- a/library/cpp/regex/pcre/CMakeLists.linux.txt +++ b/library/cpp/regex/pcre/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/pcre/CMakeLists.txt b/library/cpp/regex/pcre/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/regex/pcre/CMakeLists.txt +++ b/library/cpp/regex/pcre/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/pire/CMakeLists.darwin.txt b/library/cpp/regex/pire/CMakeLists.darwin.txt index 2f9b8ee517..f1fde4acf6 100644 --- a/library/cpp/regex/pire/CMakeLists.darwin.txt +++ b/library/cpp/regex/pire/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/pire/CMakeLists.linux-aarch64.txt b/library/cpp/regex/pire/CMakeLists.linux-aarch64.txt index 5541f65fcd..9c4715c689 100644 --- a/library/cpp/regex/pire/CMakeLists.linux-aarch64.txt +++ b/library/cpp/regex/pire/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/pire/CMakeLists.linux.txt b/library/cpp/regex/pire/CMakeLists.linux.txt index 5541f65fcd..9c4715c689 100644 --- a/library/cpp/regex/pire/CMakeLists.linux.txt +++ b/library/cpp/regex/pire/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/regex/pire/CMakeLists.txt b/library/cpp/regex/pire/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/regex/pire/CMakeLists.txt +++ b/library/cpp/regex/pire/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/resource/CMakeLists.darwin.txt b/library/cpp/resource/CMakeLists.darwin.txt index 8946711fef..a73bc8800f 100644 --- a/library/cpp/resource/CMakeLists.darwin.txt +++ b/library/cpp/resource/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/resource/CMakeLists.linux-aarch64.txt b/library/cpp/resource/CMakeLists.linux-aarch64.txt index 7a232c1f61..e569656a95 100644 --- a/library/cpp/resource/CMakeLists.linux-aarch64.txt +++ b/library/cpp/resource/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/resource/CMakeLists.linux.txt b/library/cpp/resource/CMakeLists.linux.txt index 7a232c1f61..e569656a95 100644 --- a/library/cpp/resource/CMakeLists.linux.txt +++ b/library/cpp/resource/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/resource/CMakeLists.txt b/library/cpp/resource/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/resource/CMakeLists.txt +++ b/library/cpp/resource/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/retry/CMakeLists.darwin.txt b/library/cpp/retry/CMakeLists.darwin.txt index 3868f3975e..5cfb972bb5 100644 --- a/library/cpp/retry/CMakeLists.darwin.txt +++ b/library/cpp/retry/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/retry/CMakeLists.linux-aarch64.txt b/library/cpp/retry/CMakeLists.linux-aarch64.txt index f6e573989a..ca2003e310 100644 --- a/library/cpp/retry/CMakeLists.linux-aarch64.txt +++ b/library/cpp/retry/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/retry/CMakeLists.linux.txt b/library/cpp/retry/CMakeLists.linux.txt index f6e573989a..ca2003e310 100644 --- a/library/cpp/retry/CMakeLists.linux.txt +++ b/library/cpp/retry/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/retry/CMakeLists.txt b/library/cpp/retry/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/retry/CMakeLists.txt +++ b/library/cpp/retry/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/retry/protos/CMakeLists.darwin.txt b/library/cpp/retry/protos/CMakeLists.darwin.txt index 13969805cd..961aae8383 100644 --- a/library/cpp/retry/protos/CMakeLists.darwin.txt +++ b/library/cpp/retry/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/retry/protos/CMakeLists.linux-aarch64.txt b/library/cpp/retry/protos/CMakeLists.linux-aarch64.txt index f80cbc6ac2..cf6bfee5f1 100644 --- a/library/cpp/retry/protos/CMakeLists.linux-aarch64.txt +++ b/library/cpp/retry/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/retry/protos/CMakeLists.linux.txt b/library/cpp/retry/protos/CMakeLists.linux.txt index f80cbc6ac2..cf6bfee5f1 100644 --- a/library/cpp/retry/protos/CMakeLists.linux.txt +++ b/library/cpp/retry/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/retry/protos/CMakeLists.txt b/library/cpp/retry/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/retry/protos/CMakeLists.txt +++ b/library/cpp/retry/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/scheme/CMakeLists.darwin.txt b/library/cpp/scheme/CMakeLists.darwin.txt index 7670330619..e0b564558c 100644 --- a/library/cpp/scheme/CMakeLists.darwin.txt +++ b/library/cpp/scheme/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/scheme/CMakeLists.linux-aarch64.txt b/library/cpp/scheme/CMakeLists.linux-aarch64.txt index bc986d2879..709a30d9ca 100644 --- a/library/cpp/scheme/CMakeLists.linux-aarch64.txt +++ b/library/cpp/scheme/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/scheme/CMakeLists.linux.txt b/library/cpp/scheme/CMakeLists.linux.txt index bc986d2879..709a30d9ca 100644 --- a/library/cpp/scheme/CMakeLists.linux.txt +++ b/library/cpp/scheme/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/scheme/CMakeLists.txt b/library/cpp/scheme/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/scheme/CMakeLists.txt +++ b/library/cpp/scheme/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/sighandler/CMakeLists.darwin.txt b/library/cpp/sighandler/CMakeLists.darwin.txt index c22cdd747b..3f330b9bb5 100644 --- a/library/cpp/sighandler/CMakeLists.darwin.txt +++ b/library/cpp/sighandler/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/sighandler/CMakeLists.linux-aarch64.txt b/library/cpp/sighandler/CMakeLists.linux-aarch64.txt index 75c22cf1b6..73b4b95275 100644 --- a/library/cpp/sighandler/CMakeLists.linux-aarch64.txt +++ b/library/cpp/sighandler/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/sighandler/CMakeLists.linux.txt b/library/cpp/sighandler/CMakeLists.linux.txt index 75c22cf1b6..73b4b95275 100644 --- a/library/cpp/sighandler/CMakeLists.linux.txt +++ b/library/cpp/sighandler/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/sighandler/CMakeLists.txt b/library/cpp/sighandler/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/sighandler/CMakeLists.txt +++ b/library/cpp/sighandler/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/sliding_window/CMakeLists.darwin.txt b/library/cpp/sliding_window/CMakeLists.darwin.txt index 36b314785d..15be6f0095 100644 --- a/library/cpp/sliding_window/CMakeLists.darwin.txt +++ b/library/cpp/sliding_window/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/sliding_window/CMakeLists.linux-aarch64.txt b/library/cpp/sliding_window/CMakeLists.linux-aarch64.txt index 0426d6128b..110e2807e9 100644 --- a/library/cpp/sliding_window/CMakeLists.linux-aarch64.txt +++ b/library/cpp/sliding_window/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/sliding_window/CMakeLists.linux.txt b/library/cpp/sliding_window/CMakeLists.linux.txt index 0426d6128b..110e2807e9 100644 --- a/library/cpp/sliding_window/CMakeLists.linux.txt +++ b/library/cpp/sliding_window/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/sliding_window/CMakeLists.txt b/library/cpp/sliding_window/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/sliding_window/CMakeLists.txt +++ b/library/cpp/sliding_window/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/sse/CMakeLists.darwin.txt b/library/cpp/sse/CMakeLists.darwin.txt index b214735b32..dbd80b1e0c 100644 --- a/library/cpp/sse/CMakeLists.darwin.txt +++ b/library/cpp/sse/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/sse/CMakeLists.linux-aarch64.txt b/library/cpp/sse/CMakeLists.linux-aarch64.txt index d6ec3a8f30..9266eb99ae 100644 --- a/library/cpp/sse/CMakeLists.linux-aarch64.txt +++ b/library/cpp/sse/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/sse/CMakeLists.linux.txt b/library/cpp/sse/CMakeLists.linux.txt index d6ec3a8f30..9266eb99ae 100644 --- a/library/cpp/sse/CMakeLists.linux.txt +++ b/library/cpp/sse/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/sse/CMakeLists.txt b/library/cpp/sse/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/sse/CMakeLists.txt +++ b/library/cpp/sse/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/CMakeLists.txt b/library/cpp/streams/CMakeLists.txt index bdb896c6ed..97c4ed1172 100644 --- a/library/cpp/streams/CMakeLists.txt +++ b/library/cpp/streams/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/brotli/CMakeLists.darwin.txt b/library/cpp/streams/brotli/CMakeLists.darwin.txt index cede8674f9..7102715952 100644 --- a/library/cpp/streams/brotli/CMakeLists.darwin.txt +++ b/library/cpp/streams/brotli/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/brotli/CMakeLists.linux-aarch64.txt b/library/cpp/streams/brotli/CMakeLists.linux-aarch64.txt index 819009f787..37e5df6e79 100644 --- a/library/cpp/streams/brotli/CMakeLists.linux-aarch64.txt +++ b/library/cpp/streams/brotli/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/brotli/CMakeLists.linux.txt b/library/cpp/streams/brotli/CMakeLists.linux.txt index 819009f787..37e5df6e79 100644 --- a/library/cpp/streams/brotli/CMakeLists.linux.txt +++ b/library/cpp/streams/brotli/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/brotli/CMakeLists.txt b/library/cpp/streams/brotli/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/streams/brotli/CMakeLists.txt +++ b/library/cpp/streams/brotli/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/bzip2/CMakeLists.darwin.txt b/library/cpp/streams/bzip2/CMakeLists.darwin.txt index ff65800e02..5afa320647 100644 --- a/library/cpp/streams/bzip2/CMakeLists.darwin.txt +++ b/library/cpp/streams/bzip2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/bzip2/CMakeLists.linux-aarch64.txt b/library/cpp/streams/bzip2/CMakeLists.linux-aarch64.txt index 3ecb64fe87..d8cfeb870f 100644 --- a/library/cpp/streams/bzip2/CMakeLists.linux-aarch64.txt +++ b/library/cpp/streams/bzip2/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/bzip2/CMakeLists.linux.txt b/library/cpp/streams/bzip2/CMakeLists.linux.txt index 3ecb64fe87..d8cfeb870f 100644 --- a/library/cpp/streams/bzip2/CMakeLists.linux.txt +++ b/library/cpp/streams/bzip2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/bzip2/CMakeLists.txt b/library/cpp/streams/bzip2/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/streams/bzip2/CMakeLists.txt +++ b/library/cpp/streams/bzip2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/lzma/CMakeLists.darwin.txt b/library/cpp/streams/lzma/CMakeLists.darwin.txt index ad637c4c49..3e5c652aee 100644 --- a/library/cpp/streams/lzma/CMakeLists.darwin.txt +++ b/library/cpp/streams/lzma/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/lzma/CMakeLists.linux-aarch64.txt b/library/cpp/streams/lzma/CMakeLists.linux-aarch64.txt index ca79fb0dd9..3893a3ea8b 100644 --- a/library/cpp/streams/lzma/CMakeLists.linux-aarch64.txt +++ b/library/cpp/streams/lzma/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/lzma/CMakeLists.linux.txt b/library/cpp/streams/lzma/CMakeLists.linux.txt index ca79fb0dd9..3893a3ea8b 100644 --- a/library/cpp/streams/lzma/CMakeLists.linux.txt +++ b/library/cpp/streams/lzma/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/lzma/CMakeLists.txt b/library/cpp/streams/lzma/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/streams/lzma/CMakeLists.txt +++ b/library/cpp/streams/lzma/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/zc_memory_input/CMakeLists.darwin.txt b/library/cpp/streams/zc_memory_input/CMakeLists.darwin.txt index deaf51d0b2..e0ddfec96c 100644 --- a/library/cpp/streams/zc_memory_input/CMakeLists.darwin.txt +++ b/library/cpp/streams/zc_memory_input/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/zc_memory_input/CMakeLists.linux-aarch64.txt b/library/cpp/streams/zc_memory_input/CMakeLists.linux-aarch64.txt index b7ef431596..557f29655b 100644 --- a/library/cpp/streams/zc_memory_input/CMakeLists.linux-aarch64.txt +++ b/library/cpp/streams/zc_memory_input/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/zc_memory_input/CMakeLists.linux.txt b/library/cpp/streams/zc_memory_input/CMakeLists.linux.txt index b7ef431596..557f29655b 100644 --- a/library/cpp/streams/zc_memory_input/CMakeLists.linux.txt +++ b/library/cpp/streams/zc_memory_input/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/zc_memory_input/CMakeLists.txt b/library/cpp/streams/zc_memory_input/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/streams/zc_memory_input/CMakeLists.txt +++ b/library/cpp/streams/zc_memory_input/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/zstd/CMakeLists.darwin.txt b/library/cpp/streams/zstd/CMakeLists.darwin.txt index 97734ca70f..9a3521cd9b 100644 --- a/library/cpp/streams/zstd/CMakeLists.darwin.txt +++ b/library/cpp/streams/zstd/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/zstd/CMakeLists.linux-aarch64.txt b/library/cpp/streams/zstd/CMakeLists.linux-aarch64.txt index 787c5e54c7..a48d43f3fd 100644 --- a/library/cpp/streams/zstd/CMakeLists.linux-aarch64.txt +++ b/library/cpp/streams/zstd/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/zstd/CMakeLists.linux.txt b/library/cpp/streams/zstd/CMakeLists.linux.txt index 787c5e54c7..a48d43f3fd 100644 --- a/library/cpp/streams/zstd/CMakeLists.linux.txt +++ b/library/cpp/streams/zstd/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/streams/zstd/CMakeLists.txt b/library/cpp/streams/zstd/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/streams/zstd/CMakeLists.txt +++ b/library/cpp/streams/zstd/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/CMakeLists.txt b/library/cpp/string_utils/CMakeLists.txt index bbdcba85d9..381ca74d02 100644 --- a/library/cpp/string_utils/CMakeLists.txt +++ b/library/cpp/string_utils/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/base64/CMakeLists.darwin.txt b/library/cpp/string_utils/base64/CMakeLists.darwin.txt index 0bf08c6bca..d4f74e8dc0 100644 --- a/library/cpp/string_utils/base64/CMakeLists.darwin.txt +++ b/library/cpp/string_utils/base64/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/base64/CMakeLists.linux-aarch64.txt b/library/cpp/string_utils/base64/CMakeLists.linux-aarch64.txt index ff7d909b10..d5a19ed8ea 100644 --- a/library/cpp/string_utils/base64/CMakeLists.linux-aarch64.txt +++ b/library/cpp/string_utils/base64/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/base64/CMakeLists.linux.txt b/library/cpp/string_utils/base64/CMakeLists.linux.txt index ff7d909b10..d5a19ed8ea 100644 --- a/library/cpp/string_utils/base64/CMakeLists.linux.txt +++ b/library/cpp/string_utils/base64/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/base64/CMakeLists.txt b/library/cpp/string_utils/base64/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/string_utils/base64/CMakeLists.txt +++ b/library/cpp/string_utils/base64/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/csv/CMakeLists.darwin.txt b/library/cpp/string_utils/csv/CMakeLists.darwin.txt index 7dffad3566..d50b571fde 100644 --- a/library/cpp/string_utils/csv/CMakeLists.darwin.txt +++ b/library/cpp/string_utils/csv/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/csv/CMakeLists.linux-aarch64.txt b/library/cpp/string_utils/csv/CMakeLists.linux-aarch64.txt index 1941d5ba17..c5389658b1 100644 --- a/library/cpp/string_utils/csv/CMakeLists.linux-aarch64.txt +++ b/library/cpp/string_utils/csv/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/csv/CMakeLists.linux.txt b/library/cpp/string_utils/csv/CMakeLists.linux.txt index 1941d5ba17..c5389658b1 100644 --- a/library/cpp/string_utils/csv/CMakeLists.linux.txt +++ b/library/cpp/string_utils/csv/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/csv/CMakeLists.txt b/library/cpp/string_utils/csv/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/string_utils/csv/CMakeLists.txt +++ b/library/cpp/string_utils/csv/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/indent_text/CMakeLists.darwin.txt b/library/cpp/string_utils/indent_text/CMakeLists.darwin.txt index 5a7b6a0a38..6eca107f7f 100644 --- a/library/cpp/string_utils/indent_text/CMakeLists.darwin.txt +++ b/library/cpp/string_utils/indent_text/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/indent_text/CMakeLists.linux-aarch64.txt b/library/cpp/string_utils/indent_text/CMakeLists.linux-aarch64.txt index f5be16f0db..afeec637dd 100644 --- a/library/cpp/string_utils/indent_text/CMakeLists.linux-aarch64.txt +++ b/library/cpp/string_utils/indent_text/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/indent_text/CMakeLists.linux.txt b/library/cpp/string_utils/indent_text/CMakeLists.linux.txt index f5be16f0db..afeec637dd 100644 --- a/library/cpp/string_utils/indent_text/CMakeLists.linux.txt +++ b/library/cpp/string_utils/indent_text/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/indent_text/CMakeLists.txt b/library/cpp/string_utils/indent_text/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/string_utils/indent_text/CMakeLists.txt +++ b/library/cpp/string_utils/indent_text/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/levenshtein_diff/CMakeLists.darwin.txt b/library/cpp/string_utils/levenshtein_diff/CMakeLists.darwin.txt index ec3861df9b..0d86ce0e67 100644 --- a/library/cpp/string_utils/levenshtein_diff/CMakeLists.darwin.txt +++ b/library/cpp/string_utils/levenshtein_diff/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/levenshtein_diff/CMakeLists.linux-aarch64.txt b/library/cpp/string_utils/levenshtein_diff/CMakeLists.linux-aarch64.txt index 7df466b649..18f5590ef9 100644 --- a/library/cpp/string_utils/levenshtein_diff/CMakeLists.linux-aarch64.txt +++ b/library/cpp/string_utils/levenshtein_diff/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/levenshtein_diff/CMakeLists.linux.txt b/library/cpp/string_utils/levenshtein_diff/CMakeLists.linux.txt index 7df466b649..18f5590ef9 100644 --- a/library/cpp/string_utils/levenshtein_diff/CMakeLists.linux.txt +++ b/library/cpp/string_utils/levenshtein_diff/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/levenshtein_diff/CMakeLists.txt b/library/cpp/string_utils/levenshtein_diff/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/string_utils/levenshtein_diff/CMakeLists.txt +++ b/library/cpp/string_utils/levenshtein_diff/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/parse_size/CMakeLists.darwin.txt b/library/cpp/string_utils/parse_size/CMakeLists.darwin.txt index e668d64272..5cd758efec 100644 --- a/library/cpp/string_utils/parse_size/CMakeLists.darwin.txt +++ b/library/cpp/string_utils/parse_size/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/parse_size/CMakeLists.linux-aarch64.txt b/library/cpp/string_utils/parse_size/CMakeLists.linux-aarch64.txt index ac95d466e9..c50fd344c4 100644 --- a/library/cpp/string_utils/parse_size/CMakeLists.linux-aarch64.txt +++ b/library/cpp/string_utils/parse_size/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/parse_size/CMakeLists.linux.txt b/library/cpp/string_utils/parse_size/CMakeLists.linux.txt index ac95d466e9..c50fd344c4 100644 --- a/library/cpp/string_utils/parse_size/CMakeLists.linux.txt +++ b/library/cpp/string_utils/parse_size/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/parse_size/CMakeLists.txt b/library/cpp/string_utils/parse_size/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/string_utils/parse_size/CMakeLists.txt +++ b/library/cpp/string_utils/parse_size/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/quote/CMakeLists.darwin.txt b/library/cpp/string_utils/quote/CMakeLists.darwin.txt index 0d9b30af29..e2bedf1e18 100644 --- a/library/cpp/string_utils/quote/CMakeLists.darwin.txt +++ b/library/cpp/string_utils/quote/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/quote/CMakeLists.linux-aarch64.txt b/library/cpp/string_utils/quote/CMakeLists.linux-aarch64.txt index 7118a4db27..28d1aabe8d 100644 --- a/library/cpp/string_utils/quote/CMakeLists.linux-aarch64.txt +++ b/library/cpp/string_utils/quote/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/quote/CMakeLists.linux.txt b/library/cpp/string_utils/quote/CMakeLists.linux.txt index 7118a4db27..28d1aabe8d 100644 --- a/library/cpp/string_utils/quote/CMakeLists.linux.txt +++ b/library/cpp/string_utils/quote/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/quote/CMakeLists.txt b/library/cpp/string_utils/quote/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/string_utils/quote/CMakeLists.txt +++ b/library/cpp/string_utils/quote/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/relaxed_escaper/CMakeLists.darwin.txt b/library/cpp/string_utils/relaxed_escaper/CMakeLists.darwin.txt index 5dd53e6d80..14901bec18 100644 --- a/library/cpp/string_utils/relaxed_escaper/CMakeLists.darwin.txt +++ b/library/cpp/string_utils/relaxed_escaper/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/relaxed_escaper/CMakeLists.linux-aarch64.txt b/library/cpp/string_utils/relaxed_escaper/CMakeLists.linux-aarch64.txt index 9304c0fd01..6e952b8940 100644 --- a/library/cpp/string_utils/relaxed_escaper/CMakeLists.linux-aarch64.txt +++ b/library/cpp/string_utils/relaxed_escaper/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/relaxed_escaper/CMakeLists.linux.txt b/library/cpp/string_utils/relaxed_escaper/CMakeLists.linux.txt index 9304c0fd01..6e952b8940 100644 --- a/library/cpp/string_utils/relaxed_escaper/CMakeLists.linux.txt +++ b/library/cpp/string_utils/relaxed_escaper/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/relaxed_escaper/CMakeLists.txt b/library/cpp/string_utils/relaxed_escaper/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/string_utils/relaxed_escaper/CMakeLists.txt +++ b/library/cpp/string_utils/relaxed_escaper/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/scan/CMakeLists.darwin.txt b/library/cpp/string_utils/scan/CMakeLists.darwin.txt index e977eedaa6..3d7752c1ff 100644 --- a/library/cpp/string_utils/scan/CMakeLists.darwin.txt +++ b/library/cpp/string_utils/scan/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/scan/CMakeLists.linux-aarch64.txt b/library/cpp/string_utils/scan/CMakeLists.linux-aarch64.txt index 4b14479648..4359ec58c0 100644 --- a/library/cpp/string_utils/scan/CMakeLists.linux-aarch64.txt +++ b/library/cpp/string_utils/scan/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/scan/CMakeLists.linux.txt b/library/cpp/string_utils/scan/CMakeLists.linux.txt index 4b14479648..4359ec58c0 100644 --- a/library/cpp/string_utils/scan/CMakeLists.linux.txt +++ b/library/cpp/string_utils/scan/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/scan/CMakeLists.txt b/library/cpp/string_utils/scan/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/string_utils/scan/CMakeLists.txt +++ b/library/cpp/string_utils/scan/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/url/CMakeLists.darwin.txt b/library/cpp/string_utils/url/CMakeLists.darwin.txt index 5ff22d9ea6..672139e643 100644 --- a/library/cpp/string_utils/url/CMakeLists.darwin.txt +++ b/library/cpp/string_utils/url/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/url/CMakeLists.linux-aarch64.txt b/library/cpp/string_utils/url/CMakeLists.linux-aarch64.txt index c634c74f9f..b84dcb3263 100644 --- a/library/cpp/string_utils/url/CMakeLists.linux-aarch64.txt +++ b/library/cpp/string_utils/url/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/url/CMakeLists.linux.txt b/library/cpp/string_utils/url/CMakeLists.linux.txt index c634c74f9f..b84dcb3263 100644 --- a/library/cpp/string_utils/url/CMakeLists.linux.txt +++ b/library/cpp/string_utils/url/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/url/CMakeLists.txt b/library/cpp/string_utils/url/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/string_utils/url/CMakeLists.txt +++ b/library/cpp/string_utils/url/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/ztstrbuf/CMakeLists.darwin.txt b/library/cpp/string_utils/ztstrbuf/CMakeLists.darwin.txt index ee5bf41b93..b686760229 100644 --- a/library/cpp/string_utils/ztstrbuf/CMakeLists.darwin.txt +++ b/library/cpp/string_utils/ztstrbuf/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/ztstrbuf/CMakeLists.linux-aarch64.txt b/library/cpp/string_utils/ztstrbuf/CMakeLists.linux-aarch64.txt index 9c9a5094d8..370fd83097 100644 --- a/library/cpp/string_utils/ztstrbuf/CMakeLists.linux-aarch64.txt +++ b/library/cpp/string_utils/ztstrbuf/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/ztstrbuf/CMakeLists.linux.txt b/library/cpp/string_utils/ztstrbuf/CMakeLists.linux.txt index 9c9a5094d8..370fd83097 100644 --- a/library/cpp/string_utils/ztstrbuf/CMakeLists.linux.txt +++ b/library/cpp/string_utils/ztstrbuf/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/string_utils/ztstrbuf/CMakeLists.txt b/library/cpp/string_utils/ztstrbuf/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/string_utils/ztstrbuf/CMakeLists.txt +++ b/library/cpp/string_utils/ztstrbuf/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/svnversion/CMakeLists.darwin.txt b/library/cpp/svnversion/CMakeLists.darwin.txt index ddc5aa9740..f767e929b8 100644 --- a/library/cpp/svnversion/CMakeLists.darwin.txt +++ b/library/cpp/svnversion/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/svnversion/CMakeLists.linux-aarch64.txt b/library/cpp/svnversion/CMakeLists.linux-aarch64.txt index 7af252fd05..f37d20f4d1 100644 --- a/library/cpp/svnversion/CMakeLists.linux-aarch64.txt +++ b/library/cpp/svnversion/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/svnversion/CMakeLists.linux.txt b/library/cpp/svnversion/CMakeLists.linux.txt index 7af252fd05..f37d20f4d1 100644 --- a/library/cpp/svnversion/CMakeLists.linux.txt +++ b/library/cpp/svnversion/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/svnversion/CMakeLists.txt b/library/cpp/svnversion/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/svnversion/CMakeLists.txt +++ b/library/cpp/svnversion/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/tdigest/CMakeLists.darwin.txt b/library/cpp/tdigest/CMakeLists.darwin.txt index 79eb2709d9..e373216898 100644 --- a/library/cpp/tdigest/CMakeLists.darwin.txt +++ b/library/cpp/tdigest/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/tdigest/CMakeLists.linux-aarch64.txt b/library/cpp/tdigest/CMakeLists.linux-aarch64.txt index e656397f6a..08977c85c0 100644 --- a/library/cpp/tdigest/CMakeLists.linux-aarch64.txt +++ b/library/cpp/tdigest/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/tdigest/CMakeLists.linux.txt b/library/cpp/tdigest/CMakeLists.linux.txt index e656397f6a..08977c85c0 100644 --- a/library/cpp/tdigest/CMakeLists.linux.txt +++ b/library/cpp/tdigest/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/tdigest/CMakeLists.txt b/library/cpp/tdigest/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/tdigest/CMakeLists.txt +++ b/library/cpp/tdigest/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/terminate_handler/CMakeLists.darwin.txt b/library/cpp/terminate_handler/CMakeLists.darwin.txt index 5bc454cb1d..050a5323bd 100644 --- a/library/cpp/terminate_handler/CMakeLists.darwin.txt +++ b/library/cpp/terminate_handler/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/terminate_handler/CMakeLists.linux-aarch64.txt b/library/cpp/terminate_handler/CMakeLists.linux-aarch64.txt index b3fac6a8be..48d55d42ce 100644 --- a/library/cpp/terminate_handler/CMakeLists.linux-aarch64.txt +++ b/library/cpp/terminate_handler/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/terminate_handler/CMakeLists.linux.txt b/library/cpp/terminate_handler/CMakeLists.linux.txt index b3fac6a8be..48d55d42ce 100644 --- a/library/cpp/terminate_handler/CMakeLists.linux.txt +++ b/library/cpp/terminate_handler/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/terminate_handler/CMakeLists.txt b/library/cpp/terminate_handler/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/terminate_handler/CMakeLists.txt +++ b/library/cpp/terminate_handler/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/CMakeLists.txt b/library/cpp/testing/CMakeLists.txt index 8a69d51279..6953208ad6 100644 --- a/library/cpp/testing/CMakeLists.txt +++ b/library/cpp/testing/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/benchmark/CMakeLists.darwin.txt b/library/cpp/testing/benchmark/CMakeLists.darwin.txt index 359c73c5f4..c68241bc9e 100644 --- a/library/cpp/testing/benchmark/CMakeLists.darwin.txt +++ b/library/cpp/testing/benchmark/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/benchmark/CMakeLists.linux-aarch64.txt b/library/cpp/testing/benchmark/CMakeLists.linux-aarch64.txt index 5e85dd9546..84161c1c43 100644 --- a/library/cpp/testing/benchmark/CMakeLists.linux-aarch64.txt +++ b/library/cpp/testing/benchmark/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/benchmark/CMakeLists.linux.txt b/library/cpp/testing/benchmark/CMakeLists.linux.txt index 5e85dd9546..84161c1c43 100644 --- a/library/cpp/testing/benchmark/CMakeLists.linux.txt +++ b/library/cpp/testing/benchmark/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/benchmark/CMakeLists.txt b/library/cpp/testing/benchmark/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/testing/benchmark/CMakeLists.txt +++ b/library/cpp/testing/benchmark/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/benchmark/main/CMakeLists.darwin.txt b/library/cpp/testing/benchmark/main/CMakeLists.darwin.txt index 3a0ffe9241..15cbe3d5ac 100644 --- a/library/cpp/testing/benchmark/main/CMakeLists.darwin.txt +++ b/library/cpp/testing/benchmark/main/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/benchmark/main/CMakeLists.linux-aarch64.txt b/library/cpp/testing/benchmark/main/CMakeLists.linux-aarch64.txt index e5100fd1d8..3f580358e3 100644 --- a/library/cpp/testing/benchmark/main/CMakeLists.linux-aarch64.txt +++ b/library/cpp/testing/benchmark/main/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/benchmark/main/CMakeLists.linux.txt b/library/cpp/testing/benchmark/main/CMakeLists.linux.txt index e5100fd1d8..3f580358e3 100644 --- a/library/cpp/testing/benchmark/main/CMakeLists.linux.txt +++ b/library/cpp/testing/benchmark/main/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/benchmark/main/CMakeLists.txt b/library/cpp/testing/benchmark/main/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/testing/benchmark/main/CMakeLists.txt +++ b/library/cpp/testing/benchmark/main/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/common/CMakeLists.darwin.txt b/library/cpp/testing/common/CMakeLists.darwin.txt index a0a2d01988..c795d4ebeb 100644 --- a/library/cpp/testing/common/CMakeLists.darwin.txt +++ b/library/cpp/testing/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/common/CMakeLists.linux-aarch64.txt b/library/cpp/testing/common/CMakeLists.linux-aarch64.txt index 0ab3931274..261d374dc8 100644 --- a/library/cpp/testing/common/CMakeLists.linux-aarch64.txt +++ b/library/cpp/testing/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/common/CMakeLists.linux.txt b/library/cpp/testing/common/CMakeLists.linux.txt index 0ab3931274..261d374dc8 100644 --- a/library/cpp/testing/common/CMakeLists.linux.txt +++ b/library/cpp/testing/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/common/CMakeLists.txt b/library/cpp/testing/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/testing/common/CMakeLists.txt +++ b/library/cpp/testing/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/gmock_in_unittest/CMakeLists.darwin.txt b/library/cpp/testing/gmock_in_unittest/CMakeLists.darwin.txt index a3303647bd..8a20efaed0 100644 --- a/library/cpp/testing/gmock_in_unittest/CMakeLists.darwin.txt +++ b/library/cpp/testing/gmock_in_unittest/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/gmock_in_unittest/CMakeLists.linux-aarch64.txt b/library/cpp/testing/gmock_in_unittest/CMakeLists.linux-aarch64.txt index e51eea7d8e..29717189de 100644 --- a/library/cpp/testing/gmock_in_unittest/CMakeLists.linux-aarch64.txt +++ b/library/cpp/testing/gmock_in_unittest/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/gmock_in_unittest/CMakeLists.linux.txt b/library/cpp/testing/gmock_in_unittest/CMakeLists.linux.txt index e51eea7d8e..29717189de 100644 --- a/library/cpp/testing/gmock_in_unittest/CMakeLists.linux.txt +++ b/library/cpp/testing/gmock_in_unittest/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/gmock_in_unittest/CMakeLists.txt b/library/cpp/testing/gmock_in_unittest/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/testing/gmock_in_unittest/CMakeLists.txt +++ b/library/cpp/testing/gmock_in_unittest/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/gtest_extensions/CMakeLists.darwin.txt b/library/cpp/testing/gtest_extensions/CMakeLists.darwin.txt index 542c855c85..3557a689eb 100644 --- a/library/cpp/testing/gtest_extensions/CMakeLists.darwin.txt +++ b/library/cpp/testing/gtest_extensions/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/gtest_extensions/CMakeLists.linux-aarch64.txt b/library/cpp/testing/gtest_extensions/CMakeLists.linux-aarch64.txt index 7d1661fa34..fba9c841de 100644 --- a/library/cpp/testing/gtest_extensions/CMakeLists.linux-aarch64.txt +++ b/library/cpp/testing/gtest_extensions/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/gtest_extensions/CMakeLists.linux.txt b/library/cpp/testing/gtest_extensions/CMakeLists.linux.txt index 7d1661fa34..fba9c841de 100644 --- a/library/cpp/testing/gtest_extensions/CMakeLists.linux.txt +++ b/library/cpp/testing/gtest_extensions/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/gtest_extensions/CMakeLists.txt b/library/cpp/testing/gtest_extensions/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/testing/gtest_extensions/CMakeLists.txt +++ b/library/cpp/testing/gtest_extensions/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/hook/CMakeLists.darwin.txt b/library/cpp/testing/hook/CMakeLists.darwin.txt index c452ebec81..14cff14af7 100644 --- a/library/cpp/testing/hook/CMakeLists.darwin.txt +++ b/library/cpp/testing/hook/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/hook/CMakeLists.linux-aarch64.txt b/library/cpp/testing/hook/CMakeLists.linux-aarch64.txt index a9ae8e8c77..ee777c46ff 100644 --- a/library/cpp/testing/hook/CMakeLists.linux-aarch64.txt +++ b/library/cpp/testing/hook/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/hook/CMakeLists.linux.txt b/library/cpp/testing/hook/CMakeLists.linux.txt index a9ae8e8c77..ee777c46ff 100644 --- a/library/cpp/testing/hook/CMakeLists.linux.txt +++ b/library/cpp/testing/hook/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/hook/CMakeLists.txt b/library/cpp/testing/hook/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/testing/hook/CMakeLists.txt +++ b/library/cpp/testing/hook/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/unittest/CMakeLists.darwin.txt b/library/cpp/testing/unittest/CMakeLists.darwin.txt index 8d86b85e75..64dc3e1a7a 100644 --- a/library/cpp/testing/unittest/CMakeLists.darwin.txt +++ b/library/cpp/testing/unittest/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/unittest/CMakeLists.linux-aarch64.txt b/library/cpp/testing/unittest/CMakeLists.linux-aarch64.txt index ac4ae22411..860a713a0b 100644 --- a/library/cpp/testing/unittest/CMakeLists.linux-aarch64.txt +++ b/library/cpp/testing/unittest/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/unittest/CMakeLists.linux.txt b/library/cpp/testing/unittest/CMakeLists.linux.txt index ac4ae22411..860a713a0b 100644 --- a/library/cpp/testing/unittest/CMakeLists.linux.txt +++ b/library/cpp/testing/unittest/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/unittest/CMakeLists.txt b/library/cpp/testing/unittest/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/testing/unittest/CMakeLists.txt +++ b/library/cpp/testing/unittest/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/unittest_main/CMakeLists.darwin.txt b/library/cpp/testing/unittest_main/CMakeLists.darwin.txt index 26424850d3..47d1aa79f6 100644 --- a/library/cpp/testing/unittest_main/CMakeLists.darwin.txt +++ b/library/cpp/testing/unittest_main/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/unittest_main/CMakeLists.linux-aarch64.txt b/library/cpp/testing/unittest_main/CMakeLists.linux-aarch64.txt index 7fa01f77d1..38c9a6036d 100644 --- a/library/cpp/testing/unittest_main/CMakeLists.linux-aarch64.txt +++ b/library/cpp/testing/unittest_main/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/unittest_main/CMakeLists.linux.txt b/library/cpp/testing/unittest_main/CMakeLists.linux.txt index 7fa01f77d1..38c9a6036d 100644 --- a/library/cpp/testing/unittest_main/CMakeLists.linux.txt +++ b/library/cpp/testing/unittest_main/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/testing/unittest_main/CMakeLists.txt b/library/cpp/testing/unittest_main/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/testing/unittest_main/CMakeLists.txt +++ b/library/cpp/testing/unittest_main/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/CMakeLists.txt b/library/cpp/threading/CMakeLists.txt index 1246829e67..b42430ff77 100644 --- a/library/cpp/threading/CMakeLists.txt +++ b/library/cpp/threading/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/atomic/CMakeLists.darwin.txt b/library/cpp/threading/atomic/CMakeLists.darwin.txt index 658c1f6c83..d9f7098b34 100644 --- a/library/cpp/threading/atomic/CMakeLists.darwin.txt +++ b/library/cpp/threading/atomic/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/atomic/CMakeLists.linux-aarch64.txt b/library/cpp/threading/atomic/CMakeLists.linux-aarch64.txt index dd1aee0b44..a43a658908 100644 --- a/library/cpp/threading/atomic/CMakeLists.linux-aarch64.txt +++ b/library/cpp/threading/atomic/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/atomic/CMakeLists.linux.txt b/library/cpp/threading/atomic/CMakeLists.linux.txt index dd1aee0b44..a43a658908 100644 --- a/library/cpp/threading/atomic/CMakeLists.linux.txt +++ b/library/cpp/threading/atomic/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/atomic/CMakeLists.txt b/library/cpp/threading/atomic/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/threading/atomic/CMakeLists.txt +++ b/library/cpp/threading/atomic/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/chunk_queue/CMakeLists.darwin.txt b/library/cpp/threading/chunk_queue/CMakeLists.darwin.txt index 25e26b8edf..454bf560f9 100644 --- a/library/cpp/threading/chunk_queue/CMakeLists.darwin.txt +++ b/library/cpp/threading/chunk_queue/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/chunk_queue/CMakeLists.linux-aarch64.txt b/library/cpp/threading/chunk_queue/CMakeLists.linux-aarch64.txt index ea370dd426..d8895e6dbf 100644 --- a/library/cpp/threading/chunk_queue/CMakeLists.linux-aarch64.txt +++ b/library/cpp/threading/chunk_queue/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/chunk_queue/CMakeLists.linux.txt b/library/cpp/threading/chunk_queue/CMakeLists.linux.txt index ea370dd426..d8895e6dbf 100644 --- a/library/cpp/threading/chunk_queue/CMakeLists.linux.txt +++ b/library/cpp/threading/chunk_queue/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/chunk_queue/CMakeLists.txt b/library/cpp/threading/chunk_queue/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/threading/chunk_queue/CMakeLists.txt +++ b/library/cpp/threading/chunk_queue/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/equeue/CMakeLists.darwin.txt b/library/cpp/threading/equeue/CMakeLists.darwin.txt index 141ef789ea..902b6d7a9a 100644 --- a/library/cpp/threading/equeue/CMakeLists.darwin.txt +++ b/library/cpp/threading/equeue/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/equeue/CMakeLists.linux-aarch64.txt b/library/cpp/threading/equeue/CMakeLists.linux-aarch64.txt index 619d8ec4c4..5653d3d3f3 100644 --- a/library/cpp/threading/equeue/CMakeLists.linux-aarch64.txt +++ b/library/cpp/threading/equeue/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/equeue/CMakeLists.linux.txt b/library/cpp/threading/equeue/CMakeLists.linux.txt index 619d8ec4c4..5653d3d3f3 100644 --- a/library/cpp/threading/equeue/CMakeLists.linux.txt +++ b/library/cpp/threading/equeue/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/equeue/CMakeLists.txt b/library/cpp/threading/equeue/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/threading/equeue/CMakeLists.txt +++ b/library/cpp/threading/equeue/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/future/CMakeLists.darwin.txt b/library/cpp/threading/future/CMakeLists.darwin.txt index 83daaa0c85..66d221dbbb 100644 --- a/library/cpp/threading/future/CMakeLists.darwin.txt +++ b/library/cpp/threading/future/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/future/CMakeLists.linux-aarch64.txt b/library/cpp/threading/future/CMakeLists.linux-aarch64.txt index 8dd70d1685..ae643a1bc4 100644 --- a/library/cpp/threading/future/CMakeLists.linux-aarch64.txt +++ b/library/cpp/threading/future/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/future/CMakeLists.linux.txt b/library/cpp/threading/future/CMakeLists.linux.txt index 8dd70d1685..ae643a1bc4 100644 --- a/library/cpp/threading/future/CMakeLists.linux.txt +++ b/library/cpp/threading/future/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/future/CMakeLists.txt b/library/cpp/threading/future/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/threading/future/CMakeLists.txt +++ b/library/cpp/threading/future/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/light_rw_lock/CMakeLists.darwin.txt b/library/cpp/threading/light_rw_lock/CMakeLists.darwin.txt index cfe6bec1e0..934c52018e 100644 --- a/library/cpp/threading/light_rw_lock/CMakeLists.darwin.txt +++ b/library/cpp/threading/light_rw_lock/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/light_rw_lock/CMakeLists.linux-aarch64.txt b/library/cpp/threading/light_rw_lock/CMakeLists.linux-aarch64.txt index 65eaba62c9..2f54f7fe5b 100644 --- a/library/cpp/threading/light_rw_lock/CMakeLists.linux-aarch64.txt +++ b/library/cpp/threading/light_rw_lock/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/light_rw_lock/CMakeLists.linux.txt b/library/cpp/threading/light_rw_lock/CMakeLists.linux.txt index 65eaba62c9..2f54f7fe5b 100644 --- a/library/cpp/threading/light_rw_lock/CMakeLists.linux.txt +++ b/library/cpp/threading/light_rw_lock/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/light_rw_lock/CMakeLists.txt b/library/cpp/threading/light_rw_lock/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/threading/light_rw_lock/CMakeLists.txt +++ b/library/cpp/threading/light_rw_lock/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/local_executor/CMakeLists.darwin.txt b/library/cpp/threading/local_executor/CMakeLists.darwin.txt index 536ef537b0..a88a439f24 100644 --- a/library/cpp/threading/local_executor/CMakeLists.darwin.txt +++ b/library/cpp/threading/local_executor/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/local_executor/CMakeLists.linux-aarch64.txt b/library/cpp/threading/local_executor/CMakeLists.linux-aarch64.txt index e2f5709ddf..ab5a6d971f 100644 --- a/library/cpp/threading/local_executor/CMakeLists.linux-aarch64.txt +++ b/library/cpp/threading/local_executor/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/local_executor/CMakeLists.linux.txt b/library/cpp/threading/local_executor/CMakeLists.linux.txt index e2f5709ddf..ab5a6d971f 100644 --- a/library/cpp/threading/local_executor/CMakeLists.linux.txt +++ b/library/cpp/threading/local_executor/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/local_executor/CMakeLists.txt b/library/cpp/threading/local_executor/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/threading/local_executor/CMakeLists.txt +++ b/library/cpp/threading/local_executor/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/poor_man_openmp/CMakeLists.darwin.txt b/library/cpp/threading/poor_man_openmp/CMakeLists.darwin.txt index ed6b2d7e61..116045cc83 100644 --- a/library/cpp/threading/poor_man_openmp/CMakeLists.darwin.txt +++ b/library/cpp/threading/poor_man_openmp/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/poor_man_openmp/CMakeLists.linux-aarch64.txt b/library/cpp/threading/poor_man_openmp/CMakeLists.linux-aarch64.txt index 57853cc783..a33df23eac 100644 --- a/library/cpp/threading/poor_man_openmp/CMakeLists.linux-aarch64.txt +++ b/library/cpp/threading/poor_man_openmp/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/poor_man_openmp/CMakeLists.linux.txt b/library/cpp/threading/poor_man_openmp/CMakeLists.linux.txt index 57853cc783..a33df23eac 100644 --- a/library/cpp/threading/poor_man_openmp/CMakeLists.linux.txt +++ b/library/cpp/threading/poor_man_openmp/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/poor_man_openmp/CMakeLists.txt b/library/cpp/threading/poor_man_openmp/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/threading/poor_man_openmp/CMakeLists.txt +++ b/library/cpp/threading/poor_man_openmp/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/queue/CMakeLists.darwin.txt b/library/cpp/threading/queue/CMakeLists.darwin.txt index a0ad970b31..ff0797688e 100644 --- a/library/cpp/threading/queue/CMakeLists.darwin.txt +++ b/library/cpp/threading/queue/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/queue/CMakeLists.linux-aarch64.txt b/library/cpp/threading/queue/CMakeLists.linux-aarch64.txt index 2b328448cd..c6338ea17b 100644 --- a/library/cpp/threading/queue/CMakeLists.linux-aarch64.txt +++ b/library/cpp/threading/queue/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/queue/CMakeLists.linux.txt b/library/cpp/threading/queue/CMakeLists.linux.txt index 2b328448cd..c6338ea17b 100644 --- a/library/cpp/threading/queue/CMakeLists.linux.txt +++ b/library/cpp/threading/queue/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/queue/CMakeLists.txt b/library/cpp/threading/queue/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/threading/queue/CMakeLists.txt +++ b/library/cpp/threading/queue/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/skip_list/CMakeLists.darwin.txt b/library/cpp/threading/skip_list/CMakeLists.darwin.txt index e33f6172b5..e364879e72 100644 --- a/library/cpp/threading/skip_list/CMakeLists.darwin.txt +++ b/library/cpp/threading/skip_list/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/skip_list/CMakeLists.linux-aarch64.txt b/library/cpp/threading/skip_list/CMakeLists.linux-aarch64.txt index 99ecc439ee..81907f6776 100644 --- a/library/cpp/threading/skip_list/CMakeLists.linux-aarch64.txt +++ b/library/cpp/threading/skip_list/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/skip_list/CMakeLists.linux.txt b/library/cpp/threading/skip_list/CMakeLists.linux.txt index 99ecc439ee..81907f6776 100644 --- a/library/cpp/threading/skip_list/CMakeLists.linux.txt +++ b/library/cpp/threading/skip_list/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/skip_list/CMakeLists.txt b/library/cpp/threading/skip_list/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/threading/skip_list/CMakeLists.txt +++ b/library/cpp/threading/skip_list/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/task_scheduler/CMakeLists.darwin.txt b/library/cpp/threading/task_scheduler/CMakeLists.darwin.txt index 1fb90dec82..61c6127690 100644 --- a/library/cpp/threading/task_scheduler/CMakeLists.darwin.txt +++ b/library/cpp/threading/task_scheduler/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/task_scheduler/CMakeLists.linux-aarch64.txt b/library/cpp/threading/task_scheduler/CMakeLists.linux-aarch64.txt index 58b26b3948..929d3f00db 100644 --- a/library/cpp/threading/task_scheduler/CMakeLists.linux-aarch64.txt +++ b/library/cpp/threading/task_scheduler/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/task_scheduler/CMakeLists.linux.txt b/library/cpp/threading/task_scheduler/CMakeLists.linux.txt index 58b26b3948..929d3f00db 100644 --- a/library/cpp/threading/task_scheduler/CMakeLists.linux.txt +++ b/library/cpp/threading/task_scheduler/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/threading/task_scheduler/CMakeLists.txt b/library/cpp/threading/task_scheduler/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/threading/task_scheduler/CMakeLists.txt +++ b/library/cpp/threading/task_scheduler/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/time_provider/CMakeLists.darwin.txt b/library/cpp/time_provider/CMakeLists.darwin.txt index eecbe5cf32..5106037589 100644 --- a/library/cpp/time_provider/CMakeLists.darwin.txt +++ b/library/cpp/time_provider/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/time_provider/CMakeLists.linux-aarch64.txt b/library/cpp/time_provider/CMakeLists.linux-aarch64.txt index 53d85e6660..e35e99bf80 100644 --- a/library/cpp/time_provider/CMakeLists.linux-aarch64.txt +++ b/library/cpp/time_provider/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/time_provider/CMakeLists.linux.txt b/library/cpp/time_provider/CMakeLists.linux.txt index 53d85e6660..e35e99bf80 100644 --- a/library/cpp/time_provider/CMakeLists.linux.txt +++ b/library/cpp/time_provider/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/time_provider/CMakeLists.txt b/library/cpp/time_provider/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/time_provider/CMakeLists.txt +++ b/library/cpp/time_provider/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/timezone_conversion/CMakeLists.darwin.txt b/library/cpp/timezone_conversion/CMakeLists.darwin.txt index 42a7d4db36..61a16e32f5 100644 --- a/library/cpp/timezone_conversion/CMakeLists.darwin.txt +++ b/library/cpp/timezone_conversion/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/timezone_conversion/CMakeLists.linux-aarch64.txt b/library/cpp/timezone_conversion/CMakeLists.linux-aarch64.txt index 7d4bcec355..260c313b6a 100644 --- a/library/cpp/timezone_conversion/CMakeLists.linux-aarch64.txt +++ b/library/cpp/timezone_conversion/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/timezone_conversion/CMakeLists.linux.txt b/library/cpp/timezone_conversion/CMakeLists.linux.txt index 7d4bcec355..260c313b6a 100644 --- a/library/cpp/timezone_conversion/CMakeLists.linux.txt +++ b/library/cpp/timezone_conversion/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/timezone_conversion/CMakeLists.txt b/library/cpp/timezone_conversion/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/timezone_conversion/CMakeLists.txt +++ b/library/cpp/timezone_conversion/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/tld/CMakeLists.darwin.txt b/library/cpp/tld/CMakeLists.darwin.txt index a504a5819b..cf90e8b74f 100644 --- a/library/cpp/tld/CMakeLists.darwin.txt +++ b/library/cpp/tld/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/tld/CMakeLists.linux-aarch64.txt b/library/cpp/tld/CMakeLists.linux-aarch64.txt index 511af10303..30fe436180 100644 --- a/library/cpp/tld/CMakeLists.linux-aarch64.txt +++ b/library/cpp/tld/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/tld/CMakeLists.linux.txt b/library/cpp/tld/CMakeLists.linux.txt index 511af10303..30fe436180 100644 --- a/library/cpp/tld/CMakeLists.linux.txt +++ b/library/cpp/tld/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/tld/CMakeLists.txt b/library/cpp/tld/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/tld/CMakeLists.txt +++ b/library/cpp/tld/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/unicode/CMakeLists.txt b/library/cpp/unicode/CMakeLists.txt index 0b54d5d98d..f4ffe8e8e0 100644 --- a/library/cpp/unicode/CMakeLists.txt +++ b/library/cpp/unicode/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/unicode/normalization/CMakeLists.darwin.txt b/library/cpp/unicode/normalization/CMakeLists.darwin.txt index 1e8c85a02f..faa65c7f2b 100644 --- a/library/cpp/unicode/normalization/CMakeLists.darwin.txt +++ b/library/cpp/unicode/normalization/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/unicode/normalization/CMakeLists.linux-aarch64.txt b/library/cpp/unicode/normalization/CMakeLists.linux-aarch64.txt index 1631c59be1..8f5bf5189e 100644 --- a/library/cpp/unicode/normalization/CMakeLists.linux-aarch64.txt +++ b/library/cpp/unicode/normalization/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/unicode/normalization/CMakeLists.linux.txt b/library/cpp/unicode/normalization/CMakeLists.linux.txt index 1631c59be1..8f5bf5189e 100644 --- a/library/cpp/unicode/normalization/CMakeLists.linux.txt +++ b/library/cpp/unicode/normalization/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/unicode/normalization/CMakeLists.txt b/library/cpp/unicode/normalization/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/unicode/normalization/CMakeLists.txt +++ b/library/cpp/unicode/normalization/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/unicode/punycode/CMakeLists.darwin.txt b/library/cpp/unicode/punycode/CMakeLists.darwin.txt index 6637434e2d..25c06c3bbc 100644 --- a/library/cpp/unicode/punycode/CMakeLists.darwin.txt +++ b/library/cpp/unicode/punycode/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/unicode/punycode/CMakeLists.linux-aarch64.txt b/library/cpp/unicode/punycode/CMakeLists.linux-aarch64.txt index dadd9e6d62..5265c3ec30 100644 --- a/library/cpp/unicode/punycode/CMakeLists.linux-aarch64.txt +++ b/library/cpp/unicode/punycode/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/unicode/punycode/CMakeLists.linux.txt b/library/cpp/unicode/punycode/CMakeLists.linux.txt index dadd9e6d62..5265c3ec30 100644 --- a/library/cpp/unicode/punycode/CMakeLists.linux.txt +++ b/library/cpp/unicode/punycode/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/unicode/punycode/CMakeLists.txt b/library/cpp/unicode/punycode/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/unicode/punycode/CMakeLists.txt +++ b/library/cpp/unicode/punycode/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/unicode/set/CMakeLists.darwin.txt b/library/cpp/unicode/set/CMakeLists.darwin.txt index 44380308ed..022f1191b8 100644 --- a/library/cpp/unicode/set/CMakeLists.darwin.txt +++ b/library/cpp/unicode/set/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/unicode/set/CMakeLists.linux-aarch64.txt b/library/cpp/unicode/set/CMakeLists.linux-aarch64.txt index 861a16e0cd..fce1655078 100644 --- a/library/cpp/unicode/set/CMakeLists.linux-aarch64.txt +++ b/library/cpp/unicode/set/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/unicode/set/CMakeLists.linux.txt b/library/cpp/unicode/set/CMakeLists.linux.txt index 861a16e0cd..fce1655078 100644 --- a/library/cpp/unicode/set/CMakeLists.linux.txt +++ b/library/cpp/unicode/set/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/unicode/set/CMakeLists.txt b/library/cpp/unicode/set/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/unicode/set/CMakeLists.txt +++ b/library/cpp/unicode/set/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/uri/CMakeLists.darwin.txt b/library/cpp/uri/CMakeLists.darwin.txt index d45b361db1..f4437a0a2b 100644 --- a/library/cpp/uri/CMakeLists.darwin.txt +++ b/library/cpp/uri/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/uri/CMakeLists.linux-aarch64.txt b/library/cpp/uri/CMakeLists.linux-aarch64.txt index 9c6dcd6eb2..e5d2e1e281 100644 --- a/library/cpp/uri/CMakeLists.linux-aarch64.txt +++ b/library/cpp/uri/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/uri/CMakeLists.linux.txt b/library/cpp/uri/CMakeLists.linux.txt index 9c6dcd6eb2..e5d2e1e281 100644 --- a/library/cpp/uri/CMakeLists.linux.txt +++ b/library/cpp/uri/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/uri/CMakeLists.txt b/library/cpp/uri/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/uri/CMakeLists.txt +++ b/library/cpp/uri/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/xml/CMakeLists.txt b/library/cpp/xml/CMakeLists.txt index 504e1326a6..66a26a0602 100644 --- a/library/cpp/xml/CMakeLists.txt +++ b/library/cpp/xml/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/xml/document/CMakeLists.darwin.txt b/library/cpp/xml/document/CMakeLists.darwin.txt index 70c3d7eb5d..78de390e21 100644 --- a/library/cpp/xml/document/CMakeLists.darwin.txt +++ b/library/cpp/xml/document/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/xml/document/CMakeLists.linux-aarch64.txt b/library/cpp/xml/document/CMakeLists.linux-aarch64.txt index 065f09d6a1..b746771536 100644 --- a/library/cpp/xml/document/CMakeLists.linux-aarch64.txt +++ b/library/cpp/xml/document/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/xml/document/CMakeLists.linux.txt b/library/cpp/xml/document/CMakeLists.linux.txt index 065f09d6a1..b746771536 100644 --- a/library/cpp/xml/document/CMakeLists.linux.txt +++ b/library/cpp/xml/document/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/xml/document/CMakeLists.txt b/library/cpp/xml/document/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/xml/document/CMakeLists.txt +++ b/library/cpp/xml/document/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/xml/init/CMakeLists.darwin.txt b/library/cpp/xml/init/CMakeLists.darwin.txt index ab81cdf694..15635507ff 100644 --- a/library/cpp/xml/init/CMakeLists.darwin.txt +++ b/library/cpp/xml/init/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/xml/init/CMakeLists.linux-aarch64.txt b/library/cpp/xml/init/CMakeLists.linux-aarch64.txt index ac25e7a633..95ea6cc73c 100644 --- a/library/cpp/xml/init/CMakeLists.linux-aarch64.txt +++ b/library/cpp/xml/init/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/xml/init/CMakeLists.linux.txt b/library/cpp/xml/init/CMakeLists.linux.txt index ac25e7a633..95ea6cc73c 100644 --- a/library/cpp/xml/init/CMakeLists.linux.txt +++ b/library/cpp/xml/init/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/xml/init/CMakeLists.txt b/library/cpp/xml/init/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/xml/init/CMakeLists.txt +++ b/library/cpp/xml/init/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yaml/CMakeLists.txt b/library/cpp/yaml/CMakeLists.txt index df58c83133..0d9d53cb1c 100644 --- a/library/cpp/yaml/CMakeLists.txt +++ b/library/cpp/yaml/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yaml/as/CMakeLists.darwin.txt b/library/cpp/yaml/as/CMakeLists.darwin.txt index 15208c8a09..806700a552 100644 --- a/library/cpp/yaml/as/CMakeLists.darwin.txt +++ b/library/cpp/yaml/as/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yaml/as/CMakeLists.linux-aarch64.txt b/library/cpp/yaml/as/CMakeLists.linux-aarch64.txt index 1a15d1cbb5..50f48acb17 100644 --- a/library/cpp/yaml/as/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yaml/as/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yaml/as/CMakeLists.linux.txt b/library/cpp/yaml/as/CMakeLists.linux.txt index 1a15d1cbb5..50f48acb17 100644 --- a/library/cpp/yaml/as/CMakeLists.linux.txt +++ b/library/cpp/yaml/as/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yaml/as/CMakeLists.txt b/library/cpp/yaml/as/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yaml/as/CMakeLists.txt +++ b/library/cpp/yaml/as/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson/CMakeLists.darwin.txt b/library/cpp/yson/CMakeLists.darwin.txt index 43fd932e00..d5cda8e6c0 100644 --- a/library/cpp/yson/CMakeLists.darwin.txt +++ b/library/cpp/yson/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson/CMakeLists.linux-aarch64.txt b/library/cpp/yson/CMakeLists.linux-aarch64.txt index cb0e85ac4c..1d4a1bd34e 100644 --- a/library/cpp/yson/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yson/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson/CMakeLists.linux.txt b/library/cpp/yson/CMakeLists.linux.txt index cb0e85ac4c..1d4a1bd34e 100644 --- a/library/cpp/yson/CMakeLists.linux.txt +++ b/library/cpp/yson/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson/CMakeLists.txt b/library/cpp/yson/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yson/CMakeLists.txt +++ b/library/cpp/yson/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson/json/CMakeLists.darwin.txt b/library/cpp/yson/json/CMakeLists.darwin.txt index db7d840a8c..2b5efc5d4d 100644 --- a/library/cpp/yson/json/CMakeLists.darwin.txt +++ b/library/cpp/yson/json/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson/json/CMakeLists.linux-aarch64.txt b/library/cpp/yson/json/CMakeLists.linux-aarch64.txt index 9f35005043..57dce33310 100644 --- a/library/cpp/yson/json/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yson/json/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson/json/CMakeLists.linux.txt b/library/cpp/yson/json/CMakeLists.linux.txt index 9f35005043..57dce33310 100644 --- a/library/cpp/yson/json/CMakeLists.linux.txt +++ b/library/cpp/yson/json/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson/json/CMakeLists.txt b/library/cpp/yson/json/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yson/json/CMakeLists.txt +++ b/library/cpp/yson/json/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson/node/CMakeLists.darwin.txt b/library/cpp/yson/node/CMakeLists.darwin.txt index 840ee5556c..496d880ece 100644 --- a/library/cpp/yson/node/CMakeLists.darwin.txt +++ b/library/cpp/yson/node/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson/node/CMakeLists.linux-aarch64.txt b/library/cpp/yson/node/CMakeLists.linux-aarch64.txt index 0109cb519b..3ff6e4bc61 100644 --- a/library/cpp/yson/node/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yson/node/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson/node/CMakeLists.linux.txt b/library/cpp/yson/node/CMakeLists.linux.txt index 0109cb519b..3ff6e4bc61 100644 --- a/library/cpp/yson/node/CMakeLists.linux.txt +++ b/library/cpp/yson/node/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson/node/CMakeLists.txt b/library/cpp/yson/node/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yson/node/CMakeLists.txt +++ b/library/cpp/yson/node/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson_pull/CMakeLists.darwin.txt b/library/cpp/yson_pull/CMakeLists.darwin.txt index 342f1532a8..e5303a0bc1 100644 --- a/library/cpp/yson_pull/CMakeLists.darwin.txt +++ b/library/cpp/yson_pull/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson_pull/CMakeLists.linux-aarch64.txt b/library/cpp/yson_pull/CMakeLists.linux-aarch64.txt index 77a975edd5..778558fd8b 100644 --- a/library/cpp/yson_pull/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yson_pull/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson_pull/CMakeLists.linux.txt b/library/cpp/yson_pull/CMakeLists.linux.txt index 77a975edd5..778558fd8b 100644 --- a/library/cpp/yson_pull/CMakeLists.linux.txt +++ b/library/cpp/yson_pull/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yson_pull/CMakeLists.txt b/library/cpp/yson_pull/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yson_pull/CMakeLists.txt +++ b/library/cpp/yson_pull/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/CMakeLists.txt b/library/cpp/yt/CMakeLists.txt index c90bdf25de..eb0165800f 100644 --- a/library/cpp/yt/CMakeLists.txt +++ b/library/cpp/yt/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/assert/CMakeLists.darwin.txt b/library/cpp/yt/assert/CMakeLists.darwin.txt index 8ca8806a6b..59250edce0 100644 --- a/library/cpp/yt/assert/CMakeLists.darwin.txt +++ b/library/cpp/yt/assert/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/assert/CMakeLists.linux-aarch64.txt b/library/cpp/yt/assert/CMakeLists.linux-aarch64.txt index 0b8a65aa51..7db56d8712 100644 --- a/library/cpp/yt/assert/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yt/assert/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/assert/CMakeLists.linux.txt b/library/cpp/yt/assert/CMakeLists.linux.txt index 0b8a65aa51..7db56d8712 100644 --- a/library/cpp/yt/assert/CMakeLists.linux.txt +++ b/library/cpp/yt/assert/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/assert/CMakeLists.txt b/library/cpp/yt/assert/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yt/assert/CMakeLists.txt +++ b/library/cpp/yt/assert/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/coding/CMakeLists.darwin.txt b/library/cpp/yt/coding/CMakeLists.darwin.txt index 0bd06ca740..ad79d9654f 100644 --- a/library/cpp/yt/coding/CMakeLists.darwin.txt +++ b/library/cpp/yt/coding/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/coding/CMakeLists.linux-aarch64.txt b/library/cpp/yt/coding/CMakeLists.linux-aarch64.txt index a59dc2d3f5..a2020a68e4 100644 --- a/library/cpp/yt/coding/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yt/coding/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/coding/CMakeLists.linux.txt b/library/cpp/yt/coding/CMakeLists.linux.txt index a59dc2d3f5..a2020a68e4 100644 --- a/library/cpp/yt/coding/CMakeLists.linux.txt +++ b/library/cpp/yt/coding/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/coding/CMakeLists.txt b/library/cpp/yt/coding/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yt/coding/CMakeLists.txt +++ b/library/cpp/yt/coding/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/exception/CMakeLists.darwin.txt b/library/cpp/yt/exception/CMakeLists.darwin.txt index 591a7a21d1..1a13fd0862 100644 --- a/library/cpp/yt/exception/CMakeLists.darwin.txt +++ b/library/cpp/yt/exception/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/exception/CMakeLists.linux-aarch64.txt b/library/cpp/yt/exception/CMakeLists.linux-aarch64.txt index cb0d36b8c7..e17ecd79c8 100644 --- a/library/cpp/yt/exception/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yt/exception/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/exception/CMakeLists.linux.txt b/library/cpp/yt/exception/CMakeLists.linux.txt index cb0d36b8c7..e17ecd79c8 100644 --- a/library/cpp/yt/exception/CMakeLists.linux.txt +++ b/library/cpp/yt/exception/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/exception/CMakeLists.txt b/library/cpp/yt/exception/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yt/exception/CMakeLists.txt +++ b/library/cpp/yt/exception/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/malloc/CMakeLists.darwin.txt b/library/cpp/yt/malloc/CMakeLists.darwin.txt index ead9e4e1e4..87fdf24f90 100644 --- a/library/cpp/yt/malloc/CMakeLists.darwin.txt +++ b/library/cpp/yt/malloc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/malloc/CMakeLists.linux-aarch64.txt b/library/cpp/yt/malloc/CMakeLists.linux-aarch64.txt index a0caaae28b..a7bf6c0e5b 100644 --- a/library/cpp/yt/malloc/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yt/malloc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/malloc/CMakeLists.linux.txt b/library/cpp/yt/malloc/CMakeLists.linux.txt index a0caaae28b..a7bf6c0e5b 100644 --- a/library/cpp/yt/malloc/CMakeLists.linux.txt +++ b/library/cpp/yt/malloc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/malloc/CMakeLists.txt b/library/cpp/yt/malloc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yt/malloc/CMakeLists.txt +++ b/library/cpp/yt/malloc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/memory/CMakeLists.darwin.txt b/library/cpp/yt/memory/CMakeLists.darwin.txt index e3c3cae0f0..da62073cb8 100644 --- a/library/cpp/yt/memory/CMakeLists.darwin.txt +++ b/library/cpp/yt/memory/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/memory/CMakeLists.linux-aarch64.txt b/library/cpp/yt/memory/CMakeLists.linux-aarch64.txt index 2950017992..d1b4e6926e 100644 --- a/library/cpp/yt/memory/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yt/memory/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/memory/CMakeLists.linux.txt b/library/cpp/yt/memory/CMakeLists.linux.txt index 2950017992..d1b4e6926e 100644 --- a/library/cpp/yt/memory/CMakeLists.linux.txt +++ b/library/cpp/yt/memory/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/memory/CMakeLists.txt b/library/cpp/yt/memory/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yt/memory/CMakeLists.txt +++ b/library/cpp/yt/memory/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/misc/CMakeLists.darwin.txt b/library/cpp/yt/misc/CMakeLists.darwin.txt index 696f0f2bed..d05719a445 100644 --- a/library/cpp/yt/misc/CMakeLists.darwin.txt +++ b/library/cpp/yt/misc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/misc/CMakeLists.linux-aarch64.txt b/library/cpp/yt/misc/CMakeLists.linux-aarch64.txt index 833cb57f78..3b4b8df296 100644 --- a/library/cpp/yt/misc/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yt/misc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/misc/CMakeLists.linux.txt b/library/cpp/yt/misc/CMakeLists.linux.txt index 833cb57f78..3b4b8df296 100644 --- a/library/cpp/yt/misc/CMakeLists.linux.txt +++ b/library/cpp/yt/misc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/misc/CMakeLists.txt b/library/cpp/yt/misc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yt/misc/CMakeLists.txt +++ b/library/cpp/yt/misc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/small_containers/CMakeLists.darwin.txt b/library/cpp/yt/small_containers/CMakeLists.darwin.txt index 241d46e2b9..7f0c283498 100644 --- a/library/cpp/yt/small_containers/CMakeLists.darwin.txt +++ b/library/cpp/yt/small_containers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/small_containers/CMakeLists.linux-aarch64.txt b/library/cpp/yt/small_containers/CMakeLists.linux-aarch64.txt index 2fcce2b44c..bc2b88bf40 100644 --- a/library/cpp/yt/small_containers/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yt/small_containers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/small_containers/CMakeLists.linux.txt b/library/cpp/yt/small_containers/CMakeLists.linux.txt index 2fcce2b44c..bc2b88bf40 100644 --- a/library/cpp/yt/small_containers/CMakeLists.linux.txt +++ b/library/cpp/yt/small_containers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/small_containers/CMakeLists.txt b/library/cpp/yt/small_containers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yt/small_containers/CMakeLists.txt +++ b/library/cpp/yt/small_containers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/string/CMakeLists.darwin.txt b/library/cpp/yt/string/CMakeLists.darwin.txt index 4ee8e8324a..c2e15d6a7c 100644 --- a/library/cpp/yt/string/CMakeLists.darwin.txt +++ b/library/cpp/yt/string/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/string/CMakeLists.linux-aarch64.txt b/library/cpp/yt/string/CMakeLists.linux-aarch64.txt index 1fb0fe8b80..b5083d3855 100644 --- a/library/cpp/yt/string/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yt/string/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/string/CMakeLists.linux.txt b/library/cpp/yt/string/CMakeLists.linux.txt index 1fb0fe8b80..b5083d3855 100644 --- a/library/cpp/yt/string/CMakeLists.linux.txt +++ b/library/cpp/yt/string/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/string/CMakeLists.txt b/library/cpp/yt/string/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yt/string/CMakeLists.txt +++ b/library/cpp/yt/string/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/yson/CMakeLists.darwin.txt b/library/cpp/yt/yson/CMakeLists.darwin.txt index b4d5d72a0b..2915223862 100644 --- a/library/cpp/yt/yson/CMakeLists.darwin.txt +++ b/library/cpp/yt/yson/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/yson/CMakeLists.linux-aarch64.txt b/library/cpp/yt/yson/CMakeLists.linux-aarch64.txt index 97c2e3d83b..a7c0ce6f5f 100644 --- a/library/cpp/yt/yson/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yt/yson/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/yson/CMakeLists.linux.txt b/library/cpp/yt/yson/CMakeLists.linux.txt index 97c2e3d83b..a7c0ce6f5f 100644 --- a/library/cpp/yt/yson/CMakeLists.linux.txt +++ b/library/cpp/yt/yson/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/yson/CMakeLists.txt b/library/cpp/yt/yson/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yt/yson/CMakeLists.txt +++ b/library/cpp/yt/yson/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/yson_string/CMakeLists.darwin.txt b/library/cpp/yt/yson_string/CMakeLists.darwin.txt index d2938dc9a3..941cc516b0 100644 --- a/library/cpp/yt/yson_string/CMakeLists.darwin.txt +++ b/library/cpp/yt/yson_string/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/yson_string/CMakeLists.linux-aarch64.txt b/library/cpp/yt/yson_string/CMakeLists.linux-aarch64.txt index 85300a3794..b8dfa1d7a1 100644 --- a/library/cpp/yt/yson_string/CMakeLists.linux-aarch64.txt +++ b/library/cpp/yt/yson_string/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/yson_string/CMakeLists.linux.txt b/library/cpp/yt/yson_string/CMakeLists.linux.txt index 85300a3794..b8dfa1d7a1 100644 --- a/library/cpp/yt/yson_string/CMakeLists.linux.txt +++ b/library/cpp/yt/yson_string/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/yt/yson_string/CMakeLists.txt b/library/cpp/yt/yson_string/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/yt/yson_string/CMakeLists.txt +++ b/library/cpp/yt/yson_string/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/ytalloc/CMakeLists.txt b/library/cpp/ytalloc/CMakeLists.txt index 0a386de02f..dbfb934bae 100644 --- a/library/cpp/ytalloc/CMakeLists.txt +++ b/library/cpp/ytalloc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/ytalloc/api/CMakeLists.darwin.txt b/library/cpp/ytalloc/api/CMakeLists.darwin.txt index f7e8469f72..a550e54f00 100644 --- a/library/cpp/ytalloc/api/CMakeLists.darwin.txt +++ b/library/cpp/ytalloc/api/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/ytalloc/api/CMakeLists.linux-aarch64.txt b/library/cpp/ytalloc/api/CMakeLists.linux-aarch64.txt index c19ef0c292..3557a63ea8 100644 --- a/library/cpp/ytalloc/api/CMakeLists.linux-aarch64.txt +++ b/library/cpp/ytalloc/api/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/ytalloc/api/CMakeLists.linux.txt b/library/cpp/ytalloc/api/CMakeLists.linux.txt index c19ef0c292..3557a63ea8 100644 --- a/library/cpp/ytalloc/api/CMakeLists.linux.txt +++ b/library/cpp/ytalloc/api/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/library/cpp/ytalloc/api/CMakeLists.txt b/library/cpp/ytalloc/api/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/library/cpp/ytalloc/api/CMakeLists.txt +++ b/library/cpp/ytalloc/api/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 89462519db..333c877abf 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/archiver/CMakeLists.darwin.txt b/tools/archiver/CMakeLists.darwin.txt index 2b009ca5e1..7de5ea9b12 100644 --- a/tools/archiver/CMakeLists.darwin.txt +++ b/tools/archiver/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/archiver/CMakeLists.linux-aarch64.txt b/tools/archiver/CMakeLists.linux-aarch64.txt index 0996f8d856..57f81c5a7b 100644 --- a/tools/archiver/CMakeLists.linux-aarch64.txt +++ b/tools/archiver/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/archiver/CMakeLists.linux.txt b/tools/archiver/CMakeLists.linux.txt index 4c1f156808..398ec59781 100644 --- a/tools/archiver/CMakeLists.linux.txt +++ b/tools/archiver/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/archiver/CMakeLists.txt b/tools/archiver/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/tools/archiver/CMakeLists.txt +++ b/tools/archiver/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/enum_parser/CMakeLists.txt b/tools/enum_parser/CMakeLists.txt index d0b909e560..eab3cf5b12 100644 --- a/tools/enum_parser/CMakeLists.txt +++ b/tools/enum_parser/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/enum_parser/enum_parser/CMakeLists.txt b/tools/enum_parser/enum_parser/CMakeLists.txt index 3478d41cce..94c55d2b57 100644 --- a/tools/enum_parser/enum_parser/CMakeLists.txt +++ b/tools/enum_parser/enum_parser/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/enum_parser/enum_parser/bin/CMakeLists.darwin.txt b/tools/enum_parser/enum_parser/bin/CMakeLists.darwin.txt index 921141a467..202ba5832d 100644 --- a/tools/enum_parser/enum_parser/bin/CMakeLists.darwin.txt +++ b/tools/enum_parser/enum_parser/bin/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/enum_parser/enum_parser/bin/CMakeLists.linux-aarch64.txt b/tools/enum_parser/enum_parser/bin/CMakeLists.linux-aarch64.txt index b6faac6e75..1c379eae21 100644 --- a/tools/enum_parser/enum_parser/bin/CMakeLists.linux-aarch64.txt +++ b/tools/enum_parser/enum_parser/bin/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/enum_parser/enum_parser/bin/CMakeLists.linux.txt b/tools/enum_parser/enum_parser/bin/CMakeLists.linux.txt index 591a2f240d..56e5139b67 100644 --- a/tools/enum_parser/enum_parser/bin/CMakeLists.linux.txt +++ b/tools/enum_parser/enum_parser/bin/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/enum_parser/enum_parser/bin/CMakeLists.txt b/tools/enum_parser/enum_parser/bin/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/tools/enum_parser/enum_parser/bin/CMakeLists.txt +++ b/tools/enum_parser/enum_parser/bin/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/enum_parser/enum_serialization_runtime/CMakeLists.darwin.txt b/tools/enum_parser/enum_serialization_runtime/CMakeLists.darwin.txt index 4a351266c6..ae7cffeb5e 100644 --- a/tools/enum_parser/enum_serialization_runtime/CMakeLists.darwin.txt +++ b/tools/enum_parser/enum_serialization_runtime/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/enum_parser/enum_serialization_runtime/CMakeLists.linux-aarch64.txt b/tools/enum_parser/enum_serialization_runtime/CMakeLists.linux-aarch64.txt index 738595d735..6ba02c3ad1 100644 --- a/tools/enum_parser/enum_serialization_runtime/CMakeLists.linux-aarch64.txt +++ b/tools/enum_parser/enum_serialization_runtime/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/enum_parser/enum_serialization_runtime/CMakeLists.linux.txt b/tools/enum_parser/enum_serialization_runtime/CMakeLists.linux.txt index 738595d735..6ba02c3ad1 100644 --- a/tools/enum_parser/enum_serialization_runtime/CMakeLists.linux.txt +++ b/tools/enum_parser/enum_serialization_runtime/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/enum_parser/enum_serialization_runtime/CMakeLists.txt b/tools/enum_parser/enum_serialization_runtime/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/tools/enum_parser/enum_serialization_runtime/CMakeLists.txt +++ b/tools/enum_parser/enum_serialization_runtime/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/enum_parser/parse_enum/CMakeLists.darwin.txt b/tools/enum_parser/parse_enum/CMakeLists.darwin.txt index 709e5a1868..6facd47e75 100644 --- a/tools/enum_parser/parse_enum/CMakeLists.darwin.txt +++ b/tools/enum_parser/parse_enum/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/enum_parser/parse_enum/CMakeLists.linux-aarch64.txt b/tools/enum_parser/parse_enum/CMakeLists.linux-aarch64.txt index 8239d77884..4798912c9f 100644 --- a/tools/enum_parser/parse_enum/CMakeLists.linux-aarch64.txt +++ b/tools/enum_parser/parse_enum/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/enum_parser/parse_enum/CMakeLists.linux.txt b/tools/enum_parser/parse_enum/CMakeLists.linux.txt index 8239d77884..4798912c9f 100644 --- a/tools/enum_parser/parse_enum/CMakeLists.linux.txt +++ b/tools/enum_parser/parse_enum/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/enum_parser/parse_enum/CMakeLists.txt b/tools/enum_parser/parse_enum/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/tools/enum_parser/parse_enum/CMakeLists.txt +++ b/tools/enum_parser/parse_enum/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/rescompiler/CMakeLists.txt b/tools/rescompiler/CMakeLists.txt index 3478d41cce..94c55d2b57 100644 --- a/tools/rescompiler/CMakeLists.txt +++ b/tools/rescompiler/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/rescompiler/bin/CMakeLists.darwin.txt b/tools/rescompiler/bin/CMakeLists.darwin.txt index b3a00b437d..e7927a713c 100644 --- a/tools/rescompiler/bin/CMakeLists.darwin.txt +++ b/tools/rescompiler/bin/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/rescompiler/bin/CMakeLists.linux-aarch64.txt b/tools/rescompiler/bin/CMakeLists.linux-aarch64.txt index b0cdfa5163..6146034313 100644 --- a/tools/rescompiler/bin/CMakeLists.linux-aarch64.txt +++ b/tools/rescompiler/bin/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/rescompiler/bin/CMakeLists.linux.txt b/tools/rescompiler/bin/CMakeLists.linux.txt index 555a2be7a0..6fa1888e8f 100644 --- a/tools/rescompiler/bin/CMakeLists.linux.txt +++ b/tools/rescompiler/bin/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/tools/rescompiler/bin/CMakeLists.txt b/tools/rescompiler/bin/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/tools/rescompiler/bin/CMakeLists.txt +++ b/tools/rescompiler/bin/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/util/CMakeLists.darwin.txt b/util/CMakeLists.darwin.txt index 14ee4fefbb..e53ac46034 100644 --- a/util/CMakeLists.darwin.txt +++ b/util/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/util/CMakeLists.linux-aarch64.txt b/util/CMakeLists.linux-aarch64.txt index 0a58d62055..3bac2c8005 100644 --- a/util/CMakeLists.linux-aarch64.txt +++ b/util/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/util/CMakeLists.linux.txt b/util/CMakeLists.linux.txt index 7f09444a51..1d248a682d 100644 --- a/util/CMakeLists.linux.txt +++ b/util/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/util/CMakeLists.txt b/util/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/util/CMakeLists.txt +++ b/util/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/util/charset/CMakeLists.darwin.txt b/util/charset/CMakeLists.darwin.txt index 81257887b3..b63f9cf047 100644 --- a/util/charset/CMakeLists.darwin.txt +++ b/util/charset/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/util/charset/CMakeLists.linux-aarch64.txt b/util/charset/CMakeLists.linux-aarch64.txt index a8515a4320..59efb17a2c 100644 --- a/util/charset/CMakeLists.linux-aarch64.txt +++ b/util/charset/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/util/charset/CMakeLists.linux.txt b/util/charset/CMakeLists.linux.txt index c021ac9b74..79398a4034 100644 --- a/util/charset/CMakeLists.linux.txt +++ b/util/charset/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/util/charset/CMakeLists.txt b/util/charset/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/util/charset/CMakeLists.txt +++ b/util/charset/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/util/draft/CMakeLists.darwin.txt b/util/draft/CMakeLists.darwin.txt index 40cb606846..08f23dc394 100644 --- a/util/draft/CMakeLists.darwin.txt +++ b/util/draft/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/util/draft/CMakeLists.linux-aarch64.txt b/util/draft/CMakeLists.linux-aarch64.txt index ba2005db53..7447144d61 100644 --- a/util/draft/CMakeLists.linux-aarch64.txt +++ b/util/draft/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/util/draft/CMakeLists.linux.txt b/util/draft/CMakeLists.linux.txt index ba2005db53..7447144d61 100644 --- a/util/draft/CMakeLists.linux.txt +++ b/util/draft/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/util/draft/CMakeLists.txt b/util/draft/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/util/draft/CMakeLists.txt +++ b/util/draft/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/CMakeLists.txt b/ydb/CMakeLists.txt index 5a096d0301..f8a673b1a9 100644 --- a/ydb/CMakeLists.txt +++ b/ydb/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/apps/CMakeLists.txt b/ydb/apps/CMakeLists.txt index 1f9de1165a..dee372cfa2 100644 --- a/ydb/apps/CMakeLists.txt +++ b/ydb/apps/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/apps/ydb/CMakeLists.darwin.txt b/ydb/apps/ydb/CMakeLists.darwin.txt index 934b08f634..ecef9f3eb2 100644 --- a/ydb/apps/ydb/CMakeLists.darwin.txt +++ b/ydb/apps/ydb/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/apps/ydb/CMakeLists.linux-aarch64.txt b/ydb/apps/ydb/CMakeLists.linux-aarch64.txt index 294a0d6e36..5f23a8166d 100644 --- a/ydb/apps/ydb/CMakeLists.linux-aarch64.txt +++ b/ydb/apps/ydb/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/apps/ydb/CMakeLists.linux.txt b/ydb/apps/ydb/CMakeLists.linux.txt index 71a3c99227..57bb45f6d8 100644 --- a/ydb/apps/ydb/CMakeLists.linux.txt +++ b/ydb/apps/ydb/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/apps/ydb/CMakeLists.txt b/ydb/apps/ydb/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/apps/ydb/CMakeLists.txt +++ b/ydb/apps/ydb/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/apps/ydb/commands/CMakeLists.darwin.txt b/ydb/apps/ydb/commands/CMakeLists.darwin.txt index 359320f785..e33921e39d 100644 --- a/ydb/apps/ydb/commands/CMakeLists.darwin.txt +++ b/ydb/apps/ydb/commands/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/apps/ydb/commands/CMakeLists.linux-aarch64.txt b/ydb/apps/ydb/commands/CMakeLists.linux-aarch64.txt index 5dc3689b76..48b1ad4e47 100644 --- a/ydb/apps/ydb/commands/CMakeLists.linux-aarch64.txt +++ b/ydb/apps/ydb/commands/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/apps/ydb/commands/CMakeLists.linux.txt b/ydb/apps/ydb/commands/CMakeLists.linux.txt index 5dc3689b76..48b1ad4e47 100644 --- a/ydb/apps/ydb/commands/CMakeLists.linux.txt +++ b/ydb/apps/ydb/commands/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/apps/ydb/commands/CMakeLists.txt b/ydb/apps/ydb/commands/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/apps/ydb/commands/CMakeLists.txt +++ b/ydb/apps/ydb/commands/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/apps/ydbd/CMakeLists.darwin.txt b/ydb/apps/ydbd/CMakeLists.darwin.txt index affc61d208..2ded59f519 100644 --- a/ydb/apps/ydbd/CMakeLists.darwin.txt +++ b/ydb/apps/ydbd/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/apps/ydbd/CMakeLists.linux-aarch64.txt b/ydb/apps/ydbd/CMakeLists.linux-aarch64.txt index dcb3bdd325..4363019c93 100644 --- a/ydb/apps/ydbd/CMakeLists.linux-aarch64.txt +++ b/ydb/apps/ydbd/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/apps/ydbd/CMakeLists.linux.txt b/ydb/apps/ydbd/CMakeLists.linux.txt index 1bad3358de..19aea829d2 100644 --- a/ydb/apps/ydbd/CMakeLists.linux.txt +++ b/ydb/apps/ydbd/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/apps/ydbd/CMakeLists.txt b/ydb/apps/ydbd/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/apps/ydbd/CMakeLists.txt +++ b/ydb/apps/ydbd/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/CMakeLists.txt b/ydb/core/CMakeLists.txt index a7134c65db..5064bfc71f 100644 --- a/ydb/core/CMakeLists.txt +++ b/ydb/core/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/actorlib_impl/CMakeLists.darwin.txt b/ydb/core/actorlib_impl/CMakeLists.darwin.txt index dd2b881684..13ca0d3d97 100644 --- a/ydb/core/actorlib_impl/CMakeLists.darwin.txt +++ b/ydb/core/actorlib_impl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/actorlib_impl/CMakeLists.linux-aarch64.txt b/ydb/core/actorlib_impl/CMakeLists.linux-aarch64.txt index fcdbd77e62..a22d40b59e 100644 --- a/ydb/core/actorlib_impl/CMakeLists.linux-aarch64.txt +++ b/ydb/core/actorlib_impl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/actorlib_impl/CMakeLists.linux.txt b/ydb/core/actorlib_impl/CMakeLists.linux.txt index fcdbd77e62..a22d40b59e 100644 --- a/ydb/core/actorlib_impl/CMakeLists.linux.txt +++ b/ydb/core/actorlib_impl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/actorlib_impl/CMakeLists.txt b/ydb/core/actorlib_impl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/actorlib_impl/CMakeLists.txt +++ b/ydb/core/actorlib_impl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/actorlib_impl/ut/CMakeLists.darwin.txt b/ydb/core/actorlib_impl/ut/CMakeLists.darwin.txt index 221666064f..7c1eefdb1a 100644 --- a/ydb/core/actorlib_impl/ut/CMakeLists.darwin.txt +++ b/ydb/core/actorlib_impl/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/actorlib_impl/ut/CMakeLists.linux-aarch64.txt b/ydb/core/actorlib_impl/ut/CMakeLists.linux-aarch64.txt index fbb8539f6b..33b38d4953 100644 --- a/ydb/core/actorlib_impl/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/actorlib_impl/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/actorlib_impl/ut/CMakeLists.linux.txt b/ydb/core/actorlib_impl/ut/CMakeLists.linux.txt index fd49abda61..f5f3e1adb1 100644 --- a/ydb/core/actorlib_impl/ut/CMakeLists.linux.txt +++ b/ydb/core/actorlib_impl/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/actorlib_impl/ut/CMakeLists.txt b/ydb/core/actorlib_impl/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/actorlib_impl/ut/CMakeLists.txt +++ b/ydb/core/actorlib_impl/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/audit/CMakeLists.darwin.txt b/ydb/core/audit/CMakeLists.darwin.txt index 976aa09e16..2ef85c4f93 100644 --- a/ydb/core/audit/CMakeLists.darwin.txt +++ b/ydb/core/audit/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/audit/CMakeLists.linux-aarch64.txt b/ydb/core/audit/CMakeLists.linux-aarch64.txt index 90a2d8483e..4dd6f44128 100644 --- a/ydb/core/audit/CMakeLists.linux-aarch64.txt +++ b/ydb/core/audit/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/audit/CMakeLists.linux.txt b/ydb/core/audit/CMakeLists.linux.txt index 90a2d8483e..4dd6f44128 100644 --- a/ydb/core/audit/CMakeLists.linux.txt +++ b/ydb/core/audit/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/audit/CMakeLists.txt b/ydb/core/audit/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/audit/CMakeLists.txt +++ b/ydb/core/audit/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/base/CMakeLists.darwin.txt b/ydb/core/base/CMakeLists.darwin.txt index ec8ad4bf8d..0d68a17abe 100644 --- a/ydb/core/base/CMakeLists.darwin.txt +++ b/ydb/core/base/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/base/CMakeLists.linux-aarch64.txt b/ydb/core/base/CMakeLists.linux-aarch64.txt index 8e0b0f5b44..b7db9bc79f 100644 --- a/ydb/core/base/CMakeLists.linux-aarch64.txt +++ b/ydb/core/base/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/base/CMakeLists.linux.txt b/ydb/core/base/CMakeLists.linux.txt index 8e0b0f5b44..b7db9bc79f 100644 --- a/ydb/core/base/CMakeLists.linux.txt +++ b/ydb/core/base/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/base/CMakeLists.txt b/ydb/core/base/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/base/CMakeLists.txt +++ b/ydb/core/base/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/base/services/CMakeLists.darwin.txt b/ydb/core/base/services/CMakeLists.darwin.txt index 549d254c08..0ae59a25de 100644 --- a/ydb/core/base/services/CMakeLists.darwin.txt +++ b/ydb/core/base/services/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/base/services/CMakeLists.linux-aarch64.txt b/ydb/core/base/services/CMakeLists.linux-aarch64.txt index 9778b3f1fc..4fa1eca5ef 100644 --- a/ydb/core/base/services/CMakeLists.linux-aarch64.txt +++ b/ydb/core/base/services/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/base/services/CMakeLists.linux.txt b/ydb/core/base/services/CMakeLists.linux.txt index 9778b3f1fc..4fa1eca5ef 100644 --- a/ydb/core/base/services/CMakeLists.linux.txt +++ b/ydb/core/base/services/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/base/services/CMakeLists.txt b/ydb/core/base/services/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/base/services/CMakeLists.txt +++ b/ydb/core/base/services/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/base/ut/CMakeLists.darwin.txt b/ydb/core/base/ut/CMakeLists.darwin.txt index 0c008df0fa..ce475d5448 100644 --- a/ydb/core/base/ut/CMakeLists.darwin.txt +++ b/ydb/core/base/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/base/ut/CMakeLists.linux-aarch64.txt b/ydb/core/base/ut/CMakeLists.linux-aarch64.txt index ad6811c1ec..904e2aae58 100644 --- a/ydb/core/base/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/base/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/base/ut/CMakeLists.linux.txt b/ydb/core/base/ut/CMakeLists.linux.txt index 4fdb46552c..d60eaef6cf 100644 --- a/ydb/core/base/ut/CMakeLists.linux.txt +++ b/ydb/core/base/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/base/ut/CMakeLists.txt b/ydb/core/base/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/base/ut/CMakeLists.txt +++ b/ydb/core/base/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blob_depot/CMakeLists.darwin.txt b/ydb/core/blob_depot/CMakeLists.darwin.txt index b05e2e73a9..47ebcb53fd 100644 --- a/ydb/core/blob_depot/CMakeLists.darwin.txt +++ b/ydb/core/blob_depot/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blob_depot/CMakeLists.linux-aarch64.txt b/ydb/core/blob_depot/CMakeLists.linux-aarch64.txt index 22d0a89693..5d5087cec1 100644 --- a/ydb/core/blob_depot/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blob_depot/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blob_depot/CMakeLists.linux.txt b/ydb/core/blob_depot/CMakeLists.linux.txt index 22d0a89693..5d5087cec1 100644 --- a/ydb/core/blob_depot/CMakeLists.linux.txt +++ b/ydb/core/blob_depot/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blob_depot/CMakeLists.txt b/ydb/core/blob_depot/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blob_depot/CMakeLists.txt +++ b/ydb/core/blob_depot/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blob_depot/agent/CMakeLists.darwin.txt b/ydb/core/blob_depot/agent/CMakeLists.darwin.txt index 8ebb4a51ef..be98146c1b 100644 --- a/ydb/core/blob_depot/agent/CMakeLists.darwin.txt +++ b/ydb/core/blob_depot/agent/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blob_depot/agent/CMakeLists.linux-aarch64.txt b/ydb/core/blob_depot/agent/CMakeLists.linux-aarch64.txt index 85321cdcda..e081b10637 100644 --- a/ydb/core/blob_depot/agent/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blob_depot/agent/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blob_depot/agent/CMakeLists.linux.txt b/ydb/core/blob_depot/agent/CMakeLists.linux.txt index 85321cdcda..e081b10637 100644 --- a/ydb/core/blob_depot/agent/CMakeLists.linux.txt +++ b/ydb/core/blob_depot/agent/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blob_depot/agent/CMakeLists.txt b/ydb/core/blob_depot/agent/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blob_depot/agent/CMakeLists.txt +++ b/ydb/core/blob_depot/agent/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/CMakeLists.darwin.txt b/ydb/core/blobstorage/CMakeLists.darwin.txt index 01f4e0e06b..68b0f9d3f5 100644 --- a/ydb/core/blobstorage/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/CMakeLists.linux-aarch64.txt index 71b5dbbc07..93d433b2b5 100644 --- a/ydb/core/blobstorage/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/CMakeLists.linux.txt b/ydb/core/blobstorage/CMakeLists.linux.txt index 71b5dbbc07..93d433b2b5 100644 --- a/ydb/core/blobstorage/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/CMakeLists.txt b/ydb/core/blobstorage/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/CMakeLists.txt +++ b/ydb/core/blobstorage/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/backpressure/CMakeLists.darwin.txt b/ydb/core/blobstorage/backpressure/CMakeLists.darwin.txt index 589410093a..720dc8da9c 100644 --- a/ydb/core/blobstorage/backpressure/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/backpressure/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/backpressure/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/backpressure/CMakeLists.linux-aarch64.txt index ee56b83f80..2eab395ad0 100644 --- a/ydb/core/blobstorage/backpressure/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/backpressure/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/backpressure/CMakeLists.linux.txt b/ydb/core/blobstorage/backpressure/CMakeLists.linux.txt index ee56b83f80..2eab395ad0 100644 --- a/ydb/core/blobstorage/backpressure/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/backpressure/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/backpressure/CMakeLists.txt b/ydb/core/blobstorage/backpressure/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/backpressure/CMakeLists.txt +++ b/ydb/core/blobstorage/backpressure/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/backpressure/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/backpressure/ut/CMakeLists.darwin.txt index 4f6d9a14ad..9abca0e949 100644 --- a/ydb/core/blobstorage/backpressure/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/backpressure/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/backpressure/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/backpressure/ut/CMakeLists.linux-aarch64.txt index 83ecd1bdf0..88e016febd 100644 --- a/ydb/core/blobstorage/backpressure/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/backpressure/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/backpressure/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/backpressure/ut/CMakeLists.linux.txt index 628d8c3c7f..3a06bf0aef 100644 --- a/ydb/core/blobstorage/backpressure/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/backpressure/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/backpressure/ut/CMakeLists.txt b/ydb/core/blobstorage/backpressure/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/backpressure/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/backpressure/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.darwin.txt b/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.darwin.txt index 2bd20e22bd..3ab82a2755 100644 --- a/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.linux-aarch64.txt index e04d9c8f60..5300b1c544 100644 --- a/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.linux.txt b/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.linux.txt index 222ea9b814..92e2db56ab 100644 --- a/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.txt b/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.txt +++ b/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/base/CMakeLists.darwin.txt b/ydb/core/blobstorage/base/CMakeLists.darwin.txt index affac7ffe9..be525087d9 100644 --- a/ydb/core/blobstorage/base/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/base/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/base/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/base/CMakeLists.linux-aarch64.txt index aaec226fed..51c682e7bb 100644 --- a/ydb/core/blobstorage/base/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/base/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/base/CMakeLists.linux.txt b/ydb/core/blobstorage/base/CMakeLists.linux.txt index aaec226fed..51c682e7bb 100644 --- a/ydb/core/blobstorage/base/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/base/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/base/CMakeLists.txt b/ydb/core/blobstorage/base/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/base/CMakeLists.txt +++ b/ydb/core/blobstorage/base/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/base/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/base/ut/CMakeLists.darwin.txt index 6df562914e..db333887fb 100644 --- a/ydb/core/blobstorage/base/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/base/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/base/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/base/ut/CMakeLists.linux-aarch64.txt index dce57ab29c..16ca34344f 100644 --- a/ydb/core/blobstorage/base/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/base/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/base/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/base/ut/CMakeLists.linux.txt index fd144fb8ca..7b5b3f283b 100644 --- a/ydb/core/blobstorage/base/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/base/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/base/ut/CMakeLists.txt b/ydb/core/blobstorage/base/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/base/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/base/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/crypto/CMakeLists.darwin.txt b/ydb/core/blobstorage/crypto/CMakeLists.darwin.txt index 51e18b57d5..8ab893781a 100644 --- a/ydb/core/blobstorage/crypto/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/crypto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/crypto/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/crypto/CMakeLists.linux-aarch64.txt index bda45a332e..7a323b8c65 100644 --- a/ydb/core/blobstorage/crypto/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/crypto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/crypto/CMakeLists.linux.txt b/ydb/core/blobstorage/crypto/CMakeLists.linux.txt index ba94d888ca..2b7e0540c5 100644 --- a/ydb/core/blobstorage/crypto/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/crypto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/crypto/CMakeLists.txt b/ydb/core/blobstorage/crypto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/crypto/CMakeLists.txt +++ b/ydb/core/blobstorage/crypto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/crypto/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/crypto/ut/CMakeLists.darwin.txt index 787c1d803e..3248efd275 100644 --- a/ydb/core/blobstorage/crypto/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/crypto/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/crypto/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/crypto/ut/CMakeLists.linux-aarch64.txt index ff6bdf79b4..c2ec38fe0a 100644 --- a/ydb/core/blobstorage/crypto/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/crypto/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/crypto/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/crypto/ut/CMakeLists.linux.txt index 0bdb60192c..5bc4149dcf 100644 --- a/ydb/core/blobstorage/crypto/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/crypto/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/crypto/ut/CMakeLists.txt b/ydb/core/blobstorage/crypto/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/crypto/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/crypto/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/CMakeLists.darwin.txt b/ydb/core/blobstorage/dsproxy/CMakeLists.darwin.txt index 3aa357a1df..3a0d583d7e 100644 --- a/ydb/core/blobstorage/dsproxy/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/dsproxy/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/dsproxy/CMakeLists.linux-aarch64.txt index b5e12f5dff..761cb66fcc 100644 --- a/ydb/core/blobstorage/dsproxy/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/dsproxy/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/CMakeLists.linux.txt b/ydb/core/blobstorage/dsproxy/CMakeLists.linux.txt index b5e12f5dff..761cb66fcc 100644 --- a/ydb/core/blobstorage/dsproxy/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/dsproxy/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/CMakeLists.txt b/ydb/core/blobstorage/dsproxy/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/dsproxy/CMakeLists.txt +++ b/ydb/core/blobstorage/dsproxy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/mock/CMakeLists.darwin.txt b/ydb/core/blobstorage/dsproxy/mock/CMakeLists.darwin.txt index 9a8eff7846..52990414c9 100644 --- a/ydb/core/blobstorage/dsproxy/mock/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/dsproxy/mock/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/mock/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/dsproxy/mock/CMakeLists.linux-aarch64.txt index 3263cf5316..a8ae37f8d2 100644 --- a/ydb/core/blobstorage/dsproxy/mock/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/dsproxy/mock/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/mock/CMakeLists.linux.txt b/ydb/core/blobstorage/dsproxy/mock/CMakeLists.linux.txt index 3263cf5316..a8ae37f8d2 100644 --- a/ydb/core/blobstorage/dsproxy/mock/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/dsproxy/mock/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/mock/CMakeLists.txt b/ydb/core/blobstorage/dsproxy/mock/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/dsproxy/mock/CMakeLists.txt +++ b/ydb/core/blobstorage/dsproxy/mock/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/dsproxy/ut/CMakeLists.darwin.txt index d25ea7f0ba..0377bdb33e 100644 --- a/ydb/core/blobstorage/dsproxy/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/dsproxy/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/dsproxy/ut/CMakeLists.linux-aarch64.txt index 582cf72eea..b2da8a89e6 100644 --- a/ydb/core/blobstorage/dsproxy/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/dsproxy/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/dsproxy/ut/CMakeLists.linux.txt index 16468090de..5243a6ba60 100644 --- a/ydb/core/blobstorage/dsproxy/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/dsproxy/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/ut/CMakeLists.txt b/ydb/core/blobstorage/dsproxy/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/dsproxy/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/dsproxy/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.darwin.txt b/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.darwin.txt index 2edad9dd72..a31a2f33b9 100644 --- a/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.linux-aarch64.txt index 4416ee9936..464b38bfd3 100644 --- a/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.linux.txt b/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.linux.txt index 697135edf4..7f0b505e3c 100644 --- a/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.txt b/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.txt +++ b/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/groupinfo/CMakeLists.darwin.txt b/ydb/core/blobstorage/groupinfo/CMakeLists.darwin.txt index e3534e5f6a..21ff4fac3c 100644 --- a/ydb/core/blobstorage/groupinfo/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/groupinfo/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/groupinfo/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/groupinfo/CMakeLists.linux-aarch64.txt index 5c405c371d..606cbf49d9 100644 --- a/ydb/core/blobstorage/groupinfo/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/groupinfo/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/groupinfo/CMakeLists.linux.txt b/ydb/core/blobstorage/groupinfo/CMakeLists.linux.txt index 5c405c371d..606cbf49d9 100644 --- a/ydb/core/blobstorage/groupinfo/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/groupinfo/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/groupinfo/CMakeLists.txt b/ydb/core/blobstorage/groupinfo/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/groupinfo/CMakeLists.txt +++ b/ydb/core/blobstorage/groupinfo/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/groupinfo/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/groupinfo/ut/CMakeLists.darwin.txt index b92bf4d986..f87f8d4e3f 100644 --- a/ydb/core/blobstorage/groupinfo/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/groupinfo/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/groupinfo/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/groupinfo/ut/CMakeLists.linux-aarch64.txt index cdd5d482ba..18f08fc711 100644 --- a/ydb/core/blobstorage/groupinfo/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/groupinfo/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/groupinfo/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/groupinfo/ut/CMakeLists.linux.txt index f05d905893..08675c7fd5 100644 --- a/ydb/core/blobstorage/groupinfo/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/groupinfo/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/groupinfo/ut/CMakeLists.txt b/ydb/core/blobstorage/groupinfo/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/groupinfo/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/groupinfo/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/incrhuge/CMakeLists.darwin.txt b/ydb/core/blobstorage/incrhuge/CMakeLists.darwin.txt index 72ce583acc..25ce270b59 100644 --- a/ydb/core/blobstorage/incrhuge/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/incrhuge/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/incrhuge/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/incrhuge/CMakeLists.linux-aarch64.txt index 5094f7ec7f..5b78d857a5 100644 --- a/ydb/core/blobstorage/incrhuge/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/incrhuge/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/incrhuge/CMakeLists.linux.txt b/ydb/core/blobstorage/incrhuge/CMakeLists.linux.txt index 5094f7ec7f..5b78d857a5 100644 --- a/ydb/core/blobstorage/incrhuge/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/incrhuge/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/incrhuge/CMakeLists.txt b/ydb/core/blobstorage/incrhuge/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/incrhuge/CMakeLists.txt +++ b/ydb/core/blobstorage/incrhuge/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/incrhuge/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/incrhuge/ut/CMakeLists.darwin.txt index 7c873c5c47..6231df4d4e 100644 --- a/ydb/core/blobstorage/incrhuge/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/incrhuge/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/incrhuge/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/incrhuge/ut/CMakeLists.linux-aarch64.txt index 1e8297f548..b229b23742 100644 --- a/ydb/core/blobstorage/incrhuge/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/incrhuge/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/incrhuge/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/incrhuge/ut/CMakeLists.linux.txt index 117da52280..566325142f 100644 --- a/ydb/core/blobstorage/incrhuge/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/incrhuge/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/incrhuge/ut/CMakeLists.txt b/ydb/core/blobstorage/incrhuge/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/incrhuge/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/incrhuge/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/lwtrace_probes/CMakeLists.darwin.txt b/ydb/core/blobstorage/lwtrace_probes/CMakeLists.darwin.txt index 8f4f164dc5..0594957b5e 100644 --- a/ydb/core/blobstorage/lwtrace_probes/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/lwtrace_probes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/lwtrace_probes/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/lwtrace_probes/CMakeLists.linux-aarch64.txt index 6eed8728cc..1858621a0f 100644 --- a/ydb/core/blobstorage/lwtrace_probes/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/lwtrace_probes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/lwtrace_probes/CMakeLists.linux.txt b/ydb/core/blobstorage/lwtrace_probes/CMakeLists.linux.txt index 6eed8728cc..1858621a0f 100644 --- a/ydb/core/blobstorage/lwtrace_probes/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/lwtrace_probes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/lwtrace_probes/CMakeLists.txt b/ydb/core/blobstorage/lwtrace_probes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/lwtrace_probes/CMakeLists.txt +++ b/ydb/core/blobstorage/lwtrace_probes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/nodewarden/CMakeLists.darwin.txt b/ydb/core/blobstorage/nodewarden/CMakeLists.darwin.txt index b6f8d2eb4d..c149b101bd 100644 --- a/ydb/core/blobstorage/nodewarden/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/nodewarden/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/nodewarden/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/nodewarden/CMakeLists.linux-aarch64.txt index 1f88715eb9..a476425344 100644 --- a/ydb/core/blobstorage/nodewarden/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/nodewarden/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/nodewarden/CMakeLists.linux.txt b/ydb/core/blobstorage/nodewarden/CMakeLists.linux.txt index 1f88715eb9..a476425344 100644 --- a/ydb/core/blobstorage/nodewarden/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/nodewarden/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/nodewarden/CMakeLists.txt b/ydb/core/blobstorage/nodewarden/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/nodewarden/CMakeLists.txt +++ b/ydb/core/blobstorage/nodewarden/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/nodewarden/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/nodewarden/ut/CMakeLists.darwin.txt index 8d0ae85f1a..be0113da79 100644 --- a/ydb/core/blobstorage/nodewarden/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/nodewarden/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/nodewarden/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/nodewarden/ut/CMakeLists.linux-aarch64.txt index bdfc25fd51..3450aebc10 100644 --- a/ydb/core/blobstorage/nodewarden/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/nodewarden/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/nodewarden/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/nodewarden/ut/CMakeLists.linux.txt index 436d36b6f5..e32b89fa4d 100644 --- a/ydb/core/blobstorage/nodewarden/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/nodewarden/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/nodewarden/ut/CMakeLists.txt b/ydb/core/blobstorage/nodewarden/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/nodewarden/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/nodewarden/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.darwin.txt b/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.darwin.txt index 5619515604..7463583c65 100644 --- a/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.linux-aarch64.txt index bc6749d50e..889229a0d8 100644 --- a/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.linux.txt b/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.linux.txt index 94b9969136..5082e79fac 100644 --- a/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.txt b/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.txt +++ b/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/other/CMakeLists.darwin.txt b/ydb/core/blobstorage/other/CMakeLists.darwin.txt index 7953ff23b9..c4b1102523 100644 --- a/ydb/core/blobstorage/other/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/other/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/other/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/other/CMakeLists.linux-aarch64.txt index 72137afcaf..0cba04d287 100644 --- a/ydb/core/blobstorage/other/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/other/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/other/CMakeLists.linux.txt b/ydb/core/blobstorage/other/CMakeLists.linux.txt index 72137afcaf..0cba04d287 100644 --- a/ydb/core/blobstorage/other/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/other/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/other/CMakeLists.txt b/ydb/core/blobstorage/other/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/other/CMakeLists.txt +++ b/ydb/core/blobstorage/other/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/pdisk/CMakeLists.darwin.txt b/ydb/core/blobstorage/pdisk/CMakeLists.darwin.txt index 794ed5c784..a9ad54afaf 100644 --- a/ydb/core/blobstorage/pdisk/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/pdisk/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/pdisk/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/pdisk/CMakeLists.linux-aarch64.txt index 84ad3ead86..7b548dd701 100644 --- a/ydb/core/blobstorage/pdisk/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/pdisk/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/pdisk/CMakeLists.linux.txt b/ydb/core/blobstorage/pdisk/CMakeLists.linux.txt index 84ad3ead86..7b548dd701 100644 --- a/ydb/core/blobstorage/pdisk/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/pdisk/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/pdisk/CMakeLists.txt b/ydb/core/blobstorage/pdisk/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/pdisk/CMakeLists.txt +++ b/ydb/core/blobstorage/pdisk/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/pdisk/mock/CMakeLists.darwin.txt b/ydb/core/blobstorage/pdisk/mock/CMakeLists.darwin.txt index 515121d7e9..54958ea9c9 100644 --- a/ydb/core/blobstorage/pdisk/mock/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/pdisk/mock/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/pdisk/mock/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/pdisk/mock/CMakeLists.linux-aarch64.txt index 1c19c271b0..b42ddb6193 100644 --- a/ydb/core/blobstorage/pdisk/mock/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/pdisk/mock/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/pdisk/mock/CMakeLists.linux.txt b/ydb/core/blobstorage/pdisk/mock/CMakeLists.linux.txt index 1c19c271b0..b42ddb6193 100644 --- a/ydb/core/blobstorage/pdisk/mock/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/pdisk/mock/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/pdisk/mock/CMakeLists.txt b/ydb/core/blobstorage/pdisk/mock/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/pdisk/mock/CMakeLists.txt +++ b/ydb/core/blobstorage/pdisk/mock/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/pdisk/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/pdisk/ut/CMakeLists.darwin.txt index 2610a15c2e..4a1fb82cd1 100644 --- a/ydb/core/blobstorage/pdisk/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/pdisk/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/pdisk/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/pdisk/ut/CMakeLists.linux-aarch64.txt index 8ec40575e7..08b4bdec31 100644 --- a/ydb/core/blobstorage/pdisk/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/pdisk/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/pdisk/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/pdisk/ut/CMakeLists.linux.txt index 9f8bdeff14..a108caa60a 100644 --- a/ydb/core/blobstorage/pdisk/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/pdisk/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/pdisk/ut/CMakeLists.txt b/ydb/core/blobstorage/pdisk/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/pdisk/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/pdisk/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/storagepoolmon/CMakeLists.darwin.txt b/ydb/core/blobstorage/storagepoolmon/CMakeLists.darwin.txt index 1e5893c285..d5c1a02d8f 100644 --- a/ydb/core/blobstorage/storagepoolmon/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/storagepoolmon/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/storagepoolmon/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/storagepoolmon/CMakeLists.linux-aarch64.txt index 84ed00d677..ccd7e3d891 100644 --- a/ydb/core/blobstorage/storagepoolmon/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/storagepoolmon/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/storagepoolmon/CMakeLists.linux.txt b/ydb/core/blobstorage/storagepoolmon/CMakeLists.linux.txt index 84ed00d677..ccd7e3d891 100644 --- a/ydb/core/blobstorage/storagepoolmon/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/storagepoolmon/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/storagepoolmon/CMakeLists.txt b/ydb/core/blobstorage/storagepoolmon/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/storagepoolmon/CMakeLists.txt +++ b/ydb/core/blobstorage/storagepoolmon/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.darwin.txt index 7fb27c04e7..31afaae573 100644 --- a/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.linux-aarch64.txt index 14155bc570..164673e680 100644 --- a/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.linux.txt index 2345196d5b..894c9b1550 100644 --- a/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.txt b/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/testing/CMakeLists.txt b/ydb/core/blobstorage/testing/CMakeLists.txt index 8fbce16385..8e99984855 100644 --- a/ydb/core/blobstorage/testing/CMakeLists.txt +++ b/ydb/core/blobstorage/testing/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/testing/group_overseer/CMakeLists.darwin.txt b/ydb/core/blobstorage/testing/group_overseer/CMakeLists.darwin.txt index 32dd4aeaed..65ce705be6 100644 --- a/ydb/core/blobstorage/testing/group_overseer/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/testing/group_overseer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/testing/group_overseer/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/testing/group_overseer/CMakeLists.linux-aarch64.txt index 1ec5d72087..372c18f418 100644 --- a/ydb/core/blobstorage/testing/group_overseer/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/testing/group_overseer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/testing/group_overseer/CMakeLists.linux.txt b/ydb/core/blobstorage/testing/group_overseer/CMakeLists.linux.txt index 1ec5d72087..372c18f418 100644 --- a/ydb/core/blobstorage/testing/group_overseer/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/testing/group_overseer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/testing/group_overseer/CMakeLists.txt b/ydb/core/blobstorage/testing/group_overseer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/testing/group_overseer/CMakeLists.txt +++ b/ydb/core/blobstorage/testing/group_overseer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_blobstorage/CMakeLists.darwin.txt index 696d70b638..923f0c3f07 100644 --- a/ydb/core/blobstorage/ut_blobstorage/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_blobstorage/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_blobstorage/CMakeLists.linux-aarch64.txt index b2cfca2e1e..66be6b50a2 100644 --- a/ydb/core/blobstorage/ut_blobstorage/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_blobstorage/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/CMakeLists.linux.txt index cfa831c655..fdca1ca764 100644 --- a/ydb/core/blobstorage/ut_blobstorage/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/CMakeLists.txt b/ydb/core/blobstorage/ut_blobstorage/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_blobstorage/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_blobstorage/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.darwin.txt index 4cb7146a97..ad3a4d2e09 100644 --- a/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.linux-aarch64.txt index ddf45da793..7bdff9b65a 100644 --- a/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.linux.txt index ddf45da793..7bdff9b65a 100644 --- a/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.txt b/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_blobstorage/lib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.darwin.txt index ab26eed4f3..bf71a47f3e 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.linux-aarch64.txt index 8595fbbba3..7dc8f6c319 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.linux.txt index 3276a18f62..972996d7b2 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.txt b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.darwin.txt index 37e6b7bc0e..600843e661 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.linux-aarch64.txt index 360a71db77..be81d9728f 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.linux.txt index b3ce443a44..bb3d233b0a 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.txt b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot_fat/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.darwin.txt index c018587a3b..d5e530af93 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.linux-aarch64.txt index 6ab377fc70..ed8fbd7068 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.linux.txt index 7c8cd4d9a1..240f45f6f7 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.txt b/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_donor/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.darwin.txt index 197861a440..5c5d842e14 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.linux-aarch64.txt index d025844f63..d5021a56b7 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.linux.txt index 898a2be64f..9f28699fb3 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.txt b/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.darwin.txt index 6e26f605b2..082285c3cd 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.linux-aarch64.txt index f480d25f04..7c0d6b98c4 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.linux.txt index f79b60e4b3..12ce5c2112 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.txt b/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.darwin.txt index f7f8d299c8..c3dae438f0 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.linux-aarch64.txt index 0a55681782..0704d38e6b 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.linux.txt index 8133b9e0ad..108903bd55 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.txt b/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.darwin.txt index a6bb8d2bbd..a471539cb1 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.linux-aarch64.txt index 537fc5fce2..9b037ff2a0 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.linux.txt index 119a47ea1a..b5bd149c70 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.txt b/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_group/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_group/CMakeLists.darwin.txt index aa91dbd9cb..9eb2b74ce6 100644 --- a/ydb/core/blobstorage/ut_group/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_group/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_group/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_group/CMakeLists.linux-aarch64.txt index cebe42dea1..bc994c15b0 100644 --- a/ydb/core/blobstorage/ut_group/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_group/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_group/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_group/CMakeLists.linux.txt index d789d1bb72..18bddb7ed3 100644 --- a/ydb/core/blobstorage/ut_group/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_group/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_group/CMakeLists.txt b/ydb/core/blobstorage/ut_group/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_group/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_group/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.darwin.txt index 800e098ce1..34061e7bef 100644 --- a/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.linux-aarch64.txt index 29df742a0a..92feb4f0d1 100644 --- a/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.linux.txt index 3a48e3486f..49b4216abc 100644 --- a/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.txt b/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.darwin.txt index 0396db380f..ea6c677000 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.linux-aarch64.txt index efbbcd8ee8..1411ab1a64 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.linux.txt index efbbcd8ee8..1411ab1a64 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.txt b/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.darwin.txt index 4d26d2ddbd..3daf2d8ca5 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.linux-aarch64.txt index efb9f27cba..d06f8df533 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.linux.txt index efb9f27cba..d06f8df533 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.txt b/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/lib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.linux-aarch64.txt index acdbf25e3c..8ae906b482 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.linux.txt index c629238cfc..deba76a9c3 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.txt b/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.txt index fb9f9efce2..1f942d5b2f 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.linux-aarch64.txt index 2bf593d801..3effcfa617 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.linux.txt index e48285c067..9f47c9a39a 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.txt b/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.txt index fb9f9efce2..1f942d5b2f 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_testshard/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_testshard/CMakeLists.darwin.txt index ea1e178bd1..ab4447c947 100644 --- a/ydb/core/blobstorage/ut_testshard/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_testshard/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_testshard/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_testshard/CMakeLists.linux-aarch64.txt index ca3e3a879b..df19f54122 100644 --- a/ydb/core/blobstorage/ut_testshard/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_testshard/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_testshard/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_testshard/CMakeLists.linux.txt index 42ea38a291..78946ea850 100644 --- a/ydb/core/blobstorage/ut_testshard/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_testshard/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_testshard/CMakeLists.txt b/ydb/core/blobstorage/ut_testshard/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_testshard/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_testshard/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_vdisk/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_vdisk/CMakeLists.darwin.txt index 2c7e9d55a8..9e6f1aac3b 100644 --- a/ydb/core/blobstorage/ut_vdisk/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_vdisk/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_vdisk/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_vdisk/CMakeLists.linux-aarch64.txt index 706efaca3a..09688ca916 100644 --- a/ydb/core/blobstorage/ut_vdisk/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_vdisk/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_vdisk/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_vdisk/CMakeLists.linux.txt index 97d146f6d4..4464260d76 100644 --- a/ydb/core/blobstorage/ut_vdisk/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_vdisk/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_vdisk/CMakeLists.txt b/ydb/core/blobstorage/ut_vdisk/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_vdisk/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_vdisk/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.darwin.txt index 2634a607d2..68d858a578 100644 --- a/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.linux-aarch64.txt index 64945fdeaa..0fe8358c6a 100644 --- a/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.linux.txt index 64945fdeaa..0fe8358c6a 100644 --- a/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.txt b/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_vdisk/lib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_vdisk2/CMakeLists.darwin.txt b/ydb/core/blobstorage/ut_vdisk2/CMakeLists.darwin.txt index d2e100f31d..a84f467355 100644 --- a/ydb/core/blobstorage/ut_vdisk2/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/ut_vdisk2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_vdisk2/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/ut_vdisk2/CMakeLists.linux-aarch64.txt index 48c271706d..97b2b8efb4 100644 --- a/ydb/core/blobstorage/ut_vdisk2/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/ut_vdisk2/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_vdisk2/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_vdisk2/CMakeLists.linux.txt index 816d17ed73..9fcda1d951 100644 --- a/ydb/core/blobstorage/ut_vdisk2/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_vdisk2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/ut_vdisk2/CMakeLists.txt b/ydb/core/blobstorage/ut_vdisk2/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/ut_vdisk2/CMakeLists.txt +++ b/ydb/core/blobstorage/ut_vdisk2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/CMakeLists.darwin.txt index 5d5f12d538..2632812048 100644 --- a/ydb/core/blobstorage/vdisk/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/CMakeLists.linux-aarch64.txt index 5f6db5c1ff..9428ff308e 100644 --- a/ydb/core/blobstorage/vdisk/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/CMakeLists.linux.txt index 5f6db5c1ff..9428ff308e 100644 --- a/ydb/core/blobstorage/vdisk/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/CMakeLists.txt b/ydb/core/blobstorage/vdisk/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.darwin.txt index c4feac9d3f..cf20eaa1b5 100644 --- a/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.linux-aarch64.txt index 3c6bdd112d..61a0b43247 100644 --- a/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.linux.txt index 3c6bdd112d..61a0b43247 100644 --- a/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.txt b/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/anubis_osiris/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.darwin.txt index a0a4dde53f..76933b02ff 100644 --- a/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.linux-aarch64.txt index 0be440c380..36afd15ac7 100644 --- a/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.linux.txt index aa3fa674cb..8b9f02de4e 100644 --- a/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/common/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/common/CMakeLists.darwin.txt index 8adae42d13..ad4318a302 100644 --- a/ydb/core/blobstorage/vdisk/common/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/common/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/common/CMakeLists.linux-aarch64.txt index a719f40f1b..f0551fda25 100644 --- a/ydb/core/blobstorage/vdisk/common/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/common/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/common/CMakeLists.linux.txt index a719f40f1b..f0551fda25 100644 --- a/ydb/core/blobstorage/vdisk/common/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/common/CMakeLists.txt b/ydb/core/blobstorage/vdisk/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/common/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.darwin.txt index 5d1b2a11bf..b2e8ba40cb 100644 --- a/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.linux-aarch64.txt index ff2e5dac89..3bde156a92 100644 --- a/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.linux.txt index 5663503e3d..b383db36e8 100644 --- a/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/defrag/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/defrag/CMakeLists.darwin.txt index a2e6614cb0..7e3b60a434 100644 --- a/ydb/core/blobstorage/vdisk/defrag/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/defrag/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/defrag/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/defrag/CMakeLists.linux-aarch64.txt index 4046246b0b..8bef9d5b29 100644 --- a/ydb/core/blobstorage/vdisk/defrag/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/defrag/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/defrag/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/defrag/CMakeLists.linux.txt index 4046246b0b..8bef9d5b29 100644 --- a/ydb/core/blobstorage/vdisk/defrag/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/defrag/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/defrag/CMakeLists.txt b/ydb/core/blobstorage/vdisk/defrag/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/defrag/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/defrag/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.darwin.txt index fb796d8ba7..415a8f1b85 100644 --- a/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.linux-aarch64.txt index e75f0522c9..e62bf88fe1 100644 --- a/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.linux.txt index 3e40024d26..f5b455e730 100644 --- a/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/handoff/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/handoff/CMakeLists.darwin.txt index 3f7834c9bf..03db99f5d4 100644 --- a/ydb/core/blobstorage/vdisk/handoff/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/handoff/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/handoff/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/handoff/CMakeLists.linux-aarch64.txt index 71fee183ff..2a4b4a38bd 100644 --- a/ydb/core/blobstorage/vdisk/handoff/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/handoff/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/handoff/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/handoff/CMakeLists.linux.txt index 71fee183ff..2a4b4a38bd 100644 --- a/ydb/core/blobstorage/vdisk/handoff/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/handoff/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/handoff/CMakeLists.txt b/ydb/core/blobstorage/vdisk/handoff/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/handoff/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/handoff/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/huge/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/huge/CMakeLists.darwin.txt index 18c620469b..589355bf84 100644 --- a/ydb/core/blobstorage/vdisk/huge/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/huge/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/huge/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/huge/CMakeLists.linux-aarch64.txt index 6bbc8c88cc..00d7bccd97 100644 --- a/ydb/core/blobstorage/vdisk/huge/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/huge/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/huge/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/huge/CMakeLists.linux.txt index 6bbc8c88cc..00d7bccd97 100644 --- a/ydb/core/blobstorage/vdisk/huge/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/huge/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/huge/CMakeLists.txt b/ydb/core/blobstorage/vdisk/huge/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/huge/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/huge/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.darwin.txt index 6e625bcd48..49407d1c39 100644 --- a/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.linux-aarch64.txt index 28c972f6da..77ac107e19 100644 --- a/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.linux.txt index 80c1e9c495..b6b5c86bfc 100644 --- a/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.darwin.txt index 2493142223..880fd7ff67 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.linux-aarch64.txt index 98bf1934a7..0774dd133f 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.linux.txt index 98bf1934a7..0774dd133f 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.darwin.txt index 1424e0627a..4a479fb693 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.linux-aarch64.txt index 2cf780e7c9..0d1e933972 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.linux.txt index 2cf780e7c9..0d1e933972 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/barriers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.darwin.txt index 2cb0ad80f0..6575e73808 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.linux-aarch64.txt index 11936e5cdd..6346a69d17 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.linux.txt index 1de51b35a7..43dac866fc 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.darwin.txt index 75c9d7b628..6db91dc19d 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.linux-aarch64.txt index e5495e5d67..ca7e9fc114 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.linux.txt index e5495e5d67..ca7e9fc114 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/base/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.darwin.txt index d9c773cfab..1d001ce9b3 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.linux-aarch64.txt index 2a93897232..058f63fd0e 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.linux.txt index 3dbd659654..08a742412f 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.darwin.txt index e4c32b215e..24bf99401f 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.linux-aarch64.txt index 4c2acf7e55..f9372dcb37 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.linux.txt index 4c2acf7e55..f9372dcb37 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/bulksst_add/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.darwin.txt index debd7973f9..ec5aa8425b 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.linux-aarch64.txt index 541474b1b0..28673a5025 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.linux.txt index 541474b1b0..28673a5025 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/cache_block/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.darwin.txt index 98958035de..0cd87eed84 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.linux-aarch64.txt index ddb5904e0f..307a9c33c2 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.linux.txt index 3af5cce330..c769da9323 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/cache_block/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.darwin.txt index 548565baa8..7c9fa1b947 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.linux-aarch64.txt index bbe117ff8e..cf6ffe3ed4 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.linux.txt index bbe117ff8e..cf6ffe3ed4 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/compstrat/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.darwin.txt index e058a134a1..14219f6411 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.linux-aarch64.txt index c1fb42b574..9c0a0545ab 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.linux.txt index d6fcb2114b..d2212ae66c 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.darwin.txt index daf8f0f509..c43891962e 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.linux-aarch64.txt index e4c99c624c..b941123444 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.linux.txt index e4c99c624c..b941123444 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/fresh/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.darwin.txt index 0ceb538497..636a43d8e6 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.linux-aarch64.txt index ec2ce42470..7cab93132f 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.linux.txt index 5fcff432a5..5fc5f38502 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.darwin.txt index 56dece38a7..ff0ea8a96c 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.linux-aarch64.txt index 3912a19879..d29505f4b9 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.linux.txt index 3912a19879..d29505f4b9 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/generic/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.darwin.txt index 185f3cdca5..a2ef37e694 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.linux-aarch64.txt index 3bed54eb33..ef0b313b85 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.linux.txt index b6845abfc5..8e8a20e90c 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.darwin.txt index 44987f53ce..50e400c525 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.linux-aarch64.txt index 7a8d96105b..cad216c5d3 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.linux.txt index 7a8d96105b..cad216c5d3 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/recovery/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.darwin.txt index c06669ffd4..279e7bdb8f 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.linux-aarch64.txt index 441bcb2417..ec53987ef5 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.linux.txt index 441bcb2417..ec53987ef5 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/test/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hullop/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hullop/CMakeLists.darwin.txt index 2059c46eab..525fefdd9a 100644 --- a/ydb/core/blobstorage/vdisk/hullop/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hullop/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hullop/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hullop/CMakeLists.linux-aarch64.txt index a633a7a06d..c96aa5c052 100644 --- a/ydb/core/blobstorage/vdisk/hullop/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hullop/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hullop/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hullop/CMakeLists.linux.txt index a633a7a06d..c96aa5c052 100644 --- a/ydb/core/blobstorage/vdisk/hullop/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hullop/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hullop/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hullop/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hullop/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hullop/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.darwin.txt index f8fafd917b..9c6c88c18a 100644 --- a/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.linux-aarch64.txt index b0bf85411d..4bb7d46213 100644 --- a/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.linux.txt index b0bf85411d..4bb7d46213 100644 --- a/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hullop/hullcompdelete/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.darwin.txt index 956034dc82..04eab7a0af 100644 --- a/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.linux-aarch64.txt index dfe49eb114..009ef7488f 100644 --- a/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.linux.txt index 6c28052de6..d94987d621 100644 --- a/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/ingress/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/ingress/CMakeLists.darwin.txt index 68a212273c..097ee5fb7f 100644 --- a/ydb/core/blobstorage/vdisk/ingress/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/ingress/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/ingress/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/ingress/CMakeLists.linux-aarch64.txt index f6747f926d..289d40aed8 100644 --- a/ydb/core/blobstorage/vdisk/ingress/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/ingress/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/ingress/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/ingress/CMakeLists.linux.txt index f6747f926d..289d40aed8 100644 --- a/ydb/core/blobstorage/vdisk/ingress/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/ingress/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/ingress/CMakeLists.txt b/ydb/core/blobstorage/vdisk/ingress/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/ingress/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/ingress/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.darwin.txt index e5cf640543..fec43dcb18 100644 --- a/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.linux-aarch64.txt index 71540b75f5..82f110814a 100644 --- a/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.linux.txt index 303301281c..3ef41b1abd 100644 --- a/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.darwin.txt index 63766d8336..797ce866c9 100644 --- a/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.linux-aarch64.txt index 04b936b944..6f01238c28 100644 --- a/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.linux.txt index 04b936b944..6f01238c28 100644 --- a/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.txt b/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/localrecovery/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/protos/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/protos/CMakeLists.darwin.txt index bd2e6be83e..c649aff8f7 100644 --- a/ydb/core/blobstorage/vdisk/protos/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/protos/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/protos/CMakeLists.linux-aarch64.txt index f06b5183c2..f13035f080 100644 --- a/ydb/core/blobstorage/vdisk/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/protos/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/protos/CMakeLists.linux.txt index f06b5183c2..f13035f080 100644 --- a/ydb/core/blobstorage/vdisk/protos/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/protos/CMakeLists.txt b/ydb/core/blobstorage/vdisk/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/protos/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/query/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/query/CMakeLists.darwin.txt index d5673562b5..6cb0244a1b 100644 --- a/ydb/core/blobstorage/vdisk/query/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/query/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/query/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/query/CMakeLists.linux-aarch64.txt index fa867c5a27..18f93a637d 100644 --- a/ydb/core/blobstorage/vdisk/query/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/query/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/query/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/query/CMakeLists.linux.txt index fa867c5a27..18f93a637d 100644 --- a/ydb/core/blobstorage/vdisk/query/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/query/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/query/CMakeLists.txt b/ydb/core/blobstorage/vdisk/query/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/query/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/query/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.darwin.txt index b3c260f34b..57d40cc452 100644 --- a/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.linux-aarch64.txt index 0839a5bfec..aa1a0f43a3 100644 --- a/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.linux.txt index b4a20accd9..d9747b1202 100644 --- a/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/repl/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/repl/CMakeLists.darwin.txt index 97a04b2e95..82a526667c 100644 --- a/ydb/core/blobstorage/vdisk/repl/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/repl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/repl/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/repl/CMakeLists.linux-aarch64.txt index 8c9ded8e8d..bdf8c7770e 100644 --- a/ydb/core/blobstorage/vdisk/repl/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/repl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/repl/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/repl/CMakeLists.linux.txt index 8c9ded8e8d..bdf8c7770e 100644 --- a/ydb/core/blobstorage/vdisk/repl/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/repl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/repl/CMakeLists.txt b/ydb/core/blobstorage/vdisk/repl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/repl/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/repl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.darwin.txt index 3b170e77bc..5f713055e9 100644 --- a/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.linux-aarch64.txt index 00a290b1d7..1cf894e16e 100644 --- a/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.linux.txt index ccd46f5981..4ce337cd36 100644 --- a/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/scrub/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/scrub/CMakeLists.darwin.txt index af221ebc35..c8c2529e7b 100644 --- a/ydb/core/blobstorage/vdisk/scrub/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/scrub/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/scrub/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/scrub/CMakeLists.linux-aarch64.txt index b5dcabddf1..af30c56515 100644 --- a/ydb/core/blobstorage/vdisk/scrub/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/scrub/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/scrub/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/scrub/CMakeLists.linux.txt index b5dcabddf1..af30c56515 100644 --- a/ydb/core/blobstorage/vdisk/scrub/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/scrub/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/scrub/CMakeLists.txt b/ydb/core/blobstorage/vdisk/scrub/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/scrub/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/scrub/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.darwin.txt index 7c944bf5ef..e06a362323 100644 --- a/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.linux-aarch64.txt index cab4572377..bc6836ca5f 100644 --- a/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.linux.txt index cab4572377..bc6836ca5f 100644 --- a/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.txt b/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/skeleton/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.darwin.txt index 7a99a0da1f..9129b2d07f 100644 --- a/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.linux-aarch64.txt index cf7058bb76..f8be8d3c5b 100644 --- a/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.linux.txt index 9842fa61e9..53ba4303ea 100644 --- a/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/syncer/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/syncer/CMakeLists.darwin.txt index df93f40cc0..61cea37ccd 100644 --- a/ydb/core/blobstorage/vdisk/syncer/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/syncer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/syncer/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/syncer/CMakeLists.linux-aarch64.txt index 5e9a2e0654..ae4f1bd991 100644 --- a/ydb/core/blobstorage/vdisk/syncer/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/syncer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/syncer/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/syncer/CMakeLists.linux.txt index 5e9a2e0654..ae4f1bd991 100644 --- a/ydb/core/blobstorage/vdisk/syncer/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/syncer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/syncer/CMakeLists.txt b/ydb/core/blobstorage/vdisk/syncer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/syncer/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/syncer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.darwin.txt index b03c26e9c3..786d2095db 100644 --- a/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.linux-aarch64.txt index 91f4d398eb..99757f1523 100644 --- a/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.linux.txt index b717210967..e246a7e183 100644 --- a/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/synclog/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/synclog/CMakeLists.darwin.txt index df6409539f..7f7b24842e 100644 --- a/ydb/core/blobstorage/vdisk/synclog/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/synclog/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/synclog/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/synclog/CMakeLists.linux-aarch64.txt index a29a604b3a..915b761bc9 100644 --- a/ydb/core/blobstorage/vdisk/synclog/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/synclog/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/synclog/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/synclog/CMakeLists.linux.txt index a29a604b3a..915b761bc9 100644 --- a/ydb/core/blobstorage/vdisk/synclog/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/synclog/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/synclog/CMakeLists.txt b/ydb/core/blobstorage/vdisk/synclog/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/synclog/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/synclog/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.darwin.txt b/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.darwin.txt index b5f042987d..9c641411e5 100644 --- a/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.darwin.txt +++ b/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.linux-aarch64.txt b/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.linux-aarch64.txt index a950e23129..415019d5dc 100644 --- a/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.linux.txt index af282ecd86..2617d31669 100644 --- a/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.txt b/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.txt +++ b/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blockstore/CMakeLists.darwin.txt b/ydb/core/blockstore/CMakeLists.darwin.txt index 1fc5b12385..ed93748cb8 100644 --- a/ydb/core/blockstore/CMakeLists.darwin.txt +++ b/ydb/core/blockstore/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blockstore/CMakeLists.linux-aarch64.txt b/ydb/core/blockstore/CMakeLists.linux-aarch64.txt index 6792af64e2..7202f87c0b 100644 --- a/ydb/core/blockstore/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blockstore/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blockstore/CMakeLists.linux.txt b/ydb/core/blockstore/CMakeLists.linux.txt index 6792af64e2..7202f87c0b 100644 --- a/ydb/core/blockstore/CMakeLists.linux.txt +++ b/ydb/core/blockstore/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blockstore/CMakeLists.txt b/ydb/core/blockstore/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blockstore/CMakeLists.txt +++ b/ydb/core/blockstore/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blockstore/core/CMakeLists.darwin.txt b/ydb/core/blockstore/core/CMakeLists.darwin.txt index 8f39219425..d0f8a190e4 100644 --- a/ydb/core/blockstore/core/CMakeLists.darwin.txt +++ b/ydb/core/blockstore/core/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blockstore/core/CMakeLists.linux-aarch64.txt b/ydb/core/blockstore/core/CMakeLists.linux-aarch64.txt index c8e531ac33..9fabe549b2 100644 --- a/ydb/core/blockstore/core/CMakeLists.linux-aarch64.txt +++ b/ydb/core/blockstore/core/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blockstore/core/CMakeLists.linux.txt b/ydb/core/blockstore/core/CMakeLists.linux.txt index c8e531ac33..9fabe549b2 100644 --- a/ydb/core/blockstore/core/CMakeLists.linux.txt +++ b/ydb/core/blockstore/core/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/blockstore/core/CMakeLists.txt b/ydb/core/blockstore/core/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/blockstore/core/CMakeLists.txt +++ b/ydb/core/blockstore/core/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/CMakeLists.darwin.txt b/ydb/core/client/CMakeLists.darwin.txt index 7f4ba7d11e..5efa3c83bc 100644 --- a/ydb/core/client/CMakeLists.darwin.txt +++ b/ydb/core/client/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/CMakeLists.linux-aarch64.txt b/ydb/core/client/CMakeLists.linux-aarch64.txt index ec6adbf7e1..7acb7b8aec 100644 --- a/ydb/core/client/CMakeLists.linux-aarch64.txt +++ b/ydb/core/client/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/CMakeLists.linux.txt b/ydb/core/client/CMakeLists.linux.txt index ec6adbf7e1..7acb7b8aec 100644 --- a/ydb/core/client/CMakeLists.linux.txt +++ b/ydb/core/client/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/CMakeLists.txt b/ydb/core/client/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/client/CMakeLists.txt +++ b/ydb/core/client/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/metadata/CMakeLists.darwin.txt b/ydb/core/client/metadata/CMakeLists.darwin.txt index 8a00ee2c48..a719900369 100644 --- a/ydb/core/client/metadata/CMakeLists.darwin.txt +++ b/ydb/core/client/metadata/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/metadata/CMakeLists.linux-aarch64.txt b/ydb/core/client/metadata/CMakeLists.linux-aarch64.txt index dbf6eb694a..1740fc0d6b 100644 --- a/ydb/core/client/metadata/CMakeLists.linux-aarch64.txt +++ b/ydb/core/client/metadata/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/metadata/CMakeLists.linux.txt b/ydb/core/client/metadata/CMakeLists.linux.txt index dbf6eb694a..1740fc0d6b 100644 --- a/ydb/core/client/metadata/CMakeLists.linux.txt +++ b/ydb/core/client/metadata/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/metadata/CMakeLists.txt b/ydb/core/client/metadata/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/client/metadata/CMakeLists.txt +++ b/ydb/core/client/metadata/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/metadata/ut/CMakeLists.darwin.txt b/ydb/core/client/metadata/ut/CMakeLists.darwin.txt index a7088c32be..a3880a5826 100644 --- a/ydb/core/client/metadata/ut/CMakeLists.darwin.txt +++ b/ydb/core/client/metadata/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/metadata/ut/CMakeLists.linux-aarch64.txt b/ydb/core/client/metadata/ut/CMakeLists.linux-aarch64.txt index 8599e3967b..d939beb680 100644 --- a/ydb/core/client/metadata/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/client/metadata/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/metadata/ut/CMakeLists.linux.txt b/ydb/core/client/metadata/ut/CMakeLists.linux.txt index f92576d6be..48771d8f02 100644 --- a/ydb/core/client/metadata/ut/CMakeLists.linux.txt +++ b/ydb/core/client/metadata/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/metadata/ut/CMakeLists.txt b/ydb/core/client/metadata/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/client/metadata/ut/CMakeLists.txt +++ b/ydb/core/client/metadata/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_compile/CMakeLists.darwin.txt b/ydb/core/client/minikql_compile/CMakeLists.darwin.txt index 98b74cae89..b2ddd12c3b 100644 --- a/ydb/core/client/minikql_compile/CMakeLists.darwin.txt +++ b/ydb/core/client/minikql_compile/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_compile/CMakeLists.linux-aarch64.txt b/ydb/core/client/minikql_compile/CMakeLists.linux-aarch64.txt index 7cec30c4a8..2b8d36d1f8 100644 --- a/ydb/core/client/minikql_compile/CMakeLists.linux-aarch64.txt +++ b/ydb/core/client/minikql_compile/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_compile/CMakeLists.linux.txt b/ydb/core/client/minikql_compile/CMakeLists.linux.txt index 7cec30c4a8..2b8d36d1f8 100644 --- a/ydb/core/client/minikql_compile/CMakeLists.linux.txt +++ b/ydb/core/client/minikql_compile/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_compile/CMakeLists.txt b/ydb/core/client/minikql_compile/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/client/minikql_compile/CMakeLists.txt +++ b/ydb/core/client/minikql_compile/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_compile/ut/CMakeLists.darwin.txt b/ydb/core/client/minikql_compile/ut/CMakeLists.darwin.txt index c8d3034db0..789b94b126 100644 --- a/ydb/core/client/minikql_compile/ut/CMakeLists.darwin.txt +++ b/ydb/core/client/minikql_compile/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_compile/ut/CMakeLists.linux-aarch64.txt b/ydb/core/client/minikql_compile/ut/CMakeLists.linux-aarch64.txt index e593f01264..009dfab0a7 100644 --- a/ydb/core/client/minikql_compile/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/client/minikql_compile/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_compile/ut/CMakeLists.linux.txt b/ydb/core/client/minikql_compile/ut/CMakeLists.linux.txt index daf2890d46..cbef9d48b5 100644 --- a/ydb/core/client/minikql_compile/ut/CMakeLists.linux.txt +++ b/ydb/core/client/minikql_compile/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_compile/ut/CMakeLists.txt b/ydb/core/client/minikql_compile/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/client/minikql_compile/ut/CMakeLists.txt +++ b/ydb/core/client/minikql_compile/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_result_lib/CMakeLists.darwin.txt b/ydb/core/client/minikql_result_lib/CMakeLists.darwin.txt index 8f49720411..d66fdd861b 100644 --- a/ydb/core/client/minikql_result_lib/CMakeLists.darwin.txt +++ b/ydb/core/client/minikql_result_lib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_result_lib/CMakeLists.linux-aarch64.txt b/ydb/core/client/minikql_result_lib/CMakeLists.linux-aarch64.txt index b839fecb53..58ffd370d2 100644 --- a/ydb/core/client/minikql_result_lib/CMakeLists.linux-aarch64.txt +++ b/ydb/core/client/minikql_result_lib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_result_lib/CMakeLists.linux.txt b/ydb/core/client/minikql_result_lib/CMakeLists.linux.txt index b839fecb53..58ffd370d2 100644 --- a/ydb/core/client/minikql_result_lib/CMakeLists.linux.txt +++ b/ydb/core/client/minikql_result_lib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_result_lib/CMakeLists.txt b/ydb/core/client/minikql_result_lib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/client/minikql_result_lib/CMakeLists.txt +++ b/ydb/core/client/minikql_result_lib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_result_lib/ut/CMakeLists.darwin.txt b/ydb/core/client/minikql_result_lib/ut/CMakeLists.darwin.txt index fc6819f6ce..e6710278e6 100644 --- a/ydb/core/client/minikql_result_lib/ut/CMakeLists.darwin.txt +++ b/ydb/core/client/minikql_result_lib/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_result_lib/ut/CMakeLists.linux-aarch64.txt b/ydb/core/client/minikql_result_lib/ut/CMakeLists.linux-aarch64.txt index 29298fb362..5cb641b617 100644 --- a/ydb/core/client/minikql_result_lib/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/client/minikql_result_lib/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_result_lib/ut/CMakeLists.linux.txt b/ydb/core/client/minikql_result_lib/ut/CMakeLists.linux.txt index dd51acb07a..1dcb6548b7 100644 --- a/ydb/core/client/minikql_result_lib/ut/CMakeLists.linux.txt +++ b/ydb/core/client/minikql_result_lib/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/minikql_result_lib/ut/CMakeLists.txt b/ydb/core/client/minikql_result_lib/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/client/minikql_result_lib/ut/CMakeLists.txt +++ b/ydb/core/client/minikql_result_lib/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/scheme_cache_lib/CMakeLists.darwin.txt b/ydb/core/client/scheme_cache_lib/CMakeLists.darwin.txt index c1e442d4c5..050ab290ad 100644 --- a/ydb/core/client/scheme_cache_lib/CMakeLists.darwin.txt +++ b/ydb/core/client/scheme_cache_lib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/scheme_cache_lib/CMakeLists.linux-aarch64.txt b/ydb/core/client/scheme_cache_lib/CMakeLists.linux-aarch64.txt index 79f9472b10..e037e0d38e 100644 --- a/ydb/core/client/scheme_cache_lib/CMakeLists.linux-aarch64.txt +++ b/ydb/core/client/scheme_cache_lib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/scheme_cache_lib/CMakeLists.linux.txt b/ydb/core/client/scheme_cache_lib/CMakeLists.linux.txt index 79f9472b10..e037e0d38e 100644 --- a/ydb/core/client/scheme_cache_lib/CMakeLists.linux.txt +++ b/ydb/core/client/scheme_cache_lib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/scheme_cache_lib/CMakeLists.txt b/ydb/core/client/scheme_cache_lib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/client/scheme_cache_lib/CMakeLists.txt +++ b/ydb/core/client/scheme_cache_lib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/server/CMakeLists.darwin.txt b/ydb/core/client/server/CMakeLists.darwin.txt index 98a82a55e3..7a21a80454 100644 --- a/ydb/core/client/server/CMakeLists.darwin.txt +++ b/ydb/core/client/server/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/server/CMakeLists.linux-aarch64.txt b/ydb/core/client/server/CMakeLists.linux-aarch64.txt index 58f800317e..19c6922268 100644 --- a/ydb/core/client/server/CMakeLists.linux-aarch64.txt +++ b/ydb/core/client/server/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/server/CMakeLists.linux.txt b/ydb/core/client/server/CMakeLists.linux.txt index 58f800317e..19c6922268 100644 --- a/ydb/core/client/server/CMakeLists.linux.txt +++ b/ydb/core/client/server/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/server/CMakeLists.txt b/ydb/core/client/server/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/client/server/CMakeLists.txt +++ b/ydb/core/client/server/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/server/ut/CMakeLists.darwin.txt b/ydb/core/client/server/ut/CMakeLists.darwin.txt index 62b99bcc13..7af86518d3 100644 --- a/ydb/core/client/server/ut/CMakeLists.darwin.txt +++ b/ydb/core/client/server/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/server/ut/CMakeLists.linux-aarch64.txt b/ydb/core/client/server/ut/CMakeLists.linux-aarch64.txt index ccf06c553d..63b520b8b6 100644 --- a/ydb/core/client/server/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/client/server/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/server/ut/CMakeLists.linux.txt b/ydb/core/client/server/ut/CMakeLists.linux.txt index 3ac8072a76..97950d9918 100644 --- a/ydb/core/client/server/ut/CMakeLists.linux.txt +++ b/ydb/core/client/server/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/server/ut/CMakeLists.txt b/ydb/core/client/server/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/client/server/ut/CMakeLists.txt +++ b/ydb/core/client/server/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/ut/CMakeLists.darwin.txt b/ydb/core/client/ut/CMakeLists.darwin.txt index bf475dc454..f34e4b61f1 100644 --- a/ydb/core/client/ut/CMakeLists.darwin.txt +++ b/ydb/core/client/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/ut/CMakeLists.linux-aarch64.txt b/ydb/core/client/ut/CMakeLists.linux-aarch64.txt index 4bcb0dae64..ad98aa4efd 100644 --- a/ydb/core/client/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/client/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/ut/CMakeLists.linux.txt b/ydb/core/client/ut/CMakeLists.linux.txt index eee9428d27..7836578e92 100644 --- a/ydb/core/client/ut/CMakeLists.linux.txt +++ b/ydb/core/client/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/client/ut/CMakeLists.txt b/ydb/core/client/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/client/ut/CMakeLists.txt +++ b/ydb/core/client/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/CMakeLists.darwin.txt b/ydb/core/cms/CMakeLists.darwin.txt index b5c8767f45..03d863d219 100644 --- a/ydb/core/cms/CMakeLists.darwin.txt +++ b/ydb/core/cms/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/CMakeLists.linux-aarch64.txt b/ydb/core/cms/CMakeLists.linux-aarch64.txt index 7566cb2623..09e3385b72 100644 --- a/ydb/core/cms/CMakeLists.linux-aarch64.txt +++ b/ydb/core/cms/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/CMakeLists.linux.txt b/ydb/core/cms/CMakeLists.linux.txt index 7566cb2623..09e3385b72 100644 --- a/ydb/core/cms/CMakeLists.linux.txt +++ b/ydb/core/cms/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/CMakeLists.txt b/ydb/core/cms/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/cms/CMakeLists.txt +++ b/ydb/core/cms/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/CMakeLists.darwin.txt b/ydb/core/cms/console/CMakeLists.darwin.txt index e56e5dc033..8bb5a23073 100644 --- a/ydb/core/cms/console/CMakeLists.darwin.txt +++ b/ydb/core/cms/console/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/CMakeLists.linux-aarch64.txt b/ydb/core/cms/console/CMakeLists.linux-aarch64.txt index badfdde809..c84d3d57b7 100644 --- a/ydb/core/cms/console/CMakeLists.linux-aarch64.txt +++ b/ydb/core/cms/console/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/CMakeLists.linux.txt b/ydb/core/cms/console/CMakeLists.linux.txt index badfdde809..c84d3d57b7 100644 --- a/ydb/core/cms/console/CMakeLists.linux.txt +++ b/ydb/core/cms/console/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/CMakeLists.txt b/ydb/core/cms/console/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/cms/console/CMakeLists.txt +++ b/ydb/core/cms/console/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/ut/CMakeLists.darwin.txt b/ydb/core/cms/console/ut/CMakeLists.darwin.txt index 68b10f5a0f..53a081cae5 100644 --- a/ydb/core/cms/console/ut/CMakeLists.darwin.txt +++ b/ydb/core/cms/console/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/ut/CMakeLists.linux-aarch64.txt b/ydb/core/cms/console/ut/CMakeLists.linux-aarch64.txt index 9661c64742..338e7c8e04 100644 --- a/ydb/core/cms/console/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/cms/console/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/ut/CMakeLists.linux.txt b/ydb/core/cms/console/ut/CMakeLists.linux.txt index 5f04f353e2..69449506f2 100644 --- a/ydb/core/cms/console/ut/CMakeLists.linux.txt +++ b/ydb/core/cms/console/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/ut/CMakeLists.txt b/ydb/core/cms/console/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/cms/console/ut/CMakeLists.txt +++ b/ydb/core/cms/console/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/validators/CMakeLists.darwin.txt b/ydb/core/cms/console/validators/CMakeLists.darwin.txt index 622a61a384..ae6ae3abc0 100644 --- a/ydb/core/cms/console/validators/CMakeLists.darwin.txt +++ b/ydb/core/cms/console/validators/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/validators/CMakeLists.linux-aarch64.txt b/ydb/core/cms/console/validators/CMakeLists.linux-aarch64.txt index 082761da5b..11d91e59fc 100644 --- a/ydb/core/cms/console/validators/CMakeLists.linux-aarch64.txt +++ b/ydb/core/cms/console/validators/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/validators/CMakeLists.linux.txt b/ydb/core/cms/console/validators/CMakeLists.linux.txt index 082761da5b..11d91e59fc 100644 --- a/ydb/core/cms/console/validators/CMakeLists.linux.txt +++ b/ydb/core/cms/console/validators/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/validators/CMakeLists.txt b/ydb/core/cms/console/validators/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/cms/console/validators/CMakeLists.txt +++ b/ydb/core/cms/console/validators/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/validators/ut/CMakeLists.darwin.txt b/ydb/core/cms/console/validators/ut/CMakeLists.darwin.txt index 446ea77f56..6787d9b8e9 100644 --- a/ydb/core/cms/console/validators/ut/CMakeLists.darwin.txt +++ b/ydb/core/cms/console/validators/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/validators/ut/CMakeLists.linux-aarch64.txt b/ydb/core/cms/console/validators/ut/CMakeLists.linux-aarch64.txt index 4ed1f71688..00fdc327e2 100644 --- a/ydb/core/cms/console/validators/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/cms/console/validators/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/validators/ut/CMakeLists.linux.txt b/ydb/core/cms/console/validators/ut/CMakeLists.linux.txt index 0667297041..c5b2eb6494 100644 --- a/ydb/core/cms/console/validators/ut/CMakeLists.linux.txt +++ b/ydb/core/cms/console/validators/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/console/validators/ut/CMakeLists.txt b/ydb/core/cms/console/validators/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/cms/console/validators/ut/CMakeLists.txt +++ b/ydb/core/cms/console/validators/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/ut/CMakeLists.darwin.txt b/ydb/core/cms/ut/CMakeLists.darwin.txt index acf38cecda..8a2246a1f3 100644 --- a/ydb/core/cms/ut/CMakeLists.darwin.txt +++ b/ydb/core/cms/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/ut/CMakeLists.linux-aarch64.txt b/ydb/core/cms/ut/CMakeLists.linux-aarch64.txt index 83f14f0e22..ee958664ff 100644 --- a/ydb/core/cms/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/cms/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/ut/CMakeLists.linux.txt b/ydb/core/cms/ut/CMakeLists.linux.txt index 9c69fecc11..82864deb58 100644 --- a/ydb/core/cms/ut/CMakeLists.linux.txt +++ b/ydb/core/cms/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/ut/CMakeLists.txt b/ydb/core/cms/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/cms/ut/CMakeLists.txt +++ b/ydb/core/cms/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/ut_sentinel/CMakeLists.darwin.txt b/ydb/core/cms/ut_sentinel/CMakeLists.darwin.txt index fdc9505a7f..25f58b5ca1 100644 --- a/ydb/core/cms/ut_sentinel/CMakeLists.darwin.txt +++ b/ydb/core/cms/ut_sentinel/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/ut_sentinel/CMakeLists.linux-aarch64.txt b/ydb/core/cms/ut_sentinel/CMakeLists.linux-aarch64.txt index 85fdc5c233..ee5c49f5e4 100644 --- a/ydb/core/cms/ut_sentinel/CMakeLists.linux-aarch64.txt +++ b/ydb/core/cms/ut_sentinel/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/ut_sentinel/CMakeLists.linux.txt b/ydb/core/cms/ut_sentinel/CMakeLists.linux.txt index fb2f60832c..f3c50e0723 100644 --- a/ydb/core/cms/ut_sentinel/CMakeLists.linux.txt +++ b/ydb/core/cms/ut_sentinel/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/cms/ut_sentinel/CMakeLists.txt b/ydb/core/cms/ut_sentinel/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/cms/ut_sentinel/CMakeLists.txt +++ b/ydb/core/cms/ut_sentinel/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/control/CMakeLists.darwin.txt b/ydb/core/control/CMakeLists.darwin.txt index 0bab1b2d01..fea407f206 100644 --- a/ydb/core/control/CMakeLists.darwin.txt +++ b/ydb/core/control/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/control/CMakeLists.linux-aarch64.txt b/ydb/core/control/CMakeLists.linux-aarch64.txt index a6ca202edb..bdc9d1dd8e 100644 --- a/ydb/core/control/CMakeLists.linux-aarch64.txt +++ b/ydb/core/control/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/control/CMakeLists.linux.txt b/ydb/core/control/CMakeLists.linux.txt index a6ca202edb..bdc9d1dd8e 100644 --- a/ydb/core/control/CMakeLists.linux.txt +++ b/ydb/core/control/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/control/CMakeLists.txt b/ydb/core/control/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/control/CMakeLists.txt +++ b/ydb/core/control/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/control/ut/CMakeLists.darwin.txt b/ydb/core/control/ut/CMakeLists.darwin.txt index ef45e42401..18891a6b19 100644 --- a/ydb/core/control/ut/CMakeLists.darwin.txt +++ b/ydb/core/control/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/control/ut/CMakeLists.linux-aarch64.txt b/ydb/core/control/ut/CMakeLists.linux-aarch64.txt index 9a1bb909d7..bbf0758d44 100644 --- a/ydb/core/control/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/control/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/control/ut/CMakeLists.linux.txt b/ydb/core/control/ut/CMakeLists.linux.txt index b2685749bc..70f2b06d0f 100644 --- a/ydb/core/control/ut/CMakeLists.linux.txt +++ b/ydb/core/control/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/control/ut/CMakeLists.txt b/ydb/core/control/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/control/ut/CMakeLists.txt +++ b/ydb/core/control/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/debug/CMakeLists.darwin.txt b/ydb/core/debug/CMakeLists.darwin.txt index 60379910a2..ebb5e769c7 100644 --- a/ydb/core/debug/CMakeLists.darwin.txt +++ b/ydb/core/debug/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/debug/CMakeLists.linux-aarch64.txt b/ydb/core/debug/CMakeLists.linux-aarch64.txt index a5bebeff01..d5b228940e 100644 --- a/ydb/core/debug/CMakeLists.linux-aarch64.txt +++ b/ydb/core/debug/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/debug/CMakeLists.linux.txt b/ydb/core/debug/CMakeLists.linux.txt index a5bebeff01..d5b228940e 100644 --- a/ydb/core/debug/CMakeLists.linux.txt +++ b/ydb/core/debug/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/debug/CMakeLists.txt b/ydb/core/debug/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/debug/CMakeLists.txt +++ b/ydb/core/debug/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/CMakeLists.txt b/ydb/core/driver_lib/CMakeLists.txt index f6b2ca948d..9282ef217d 100644 --- a/ydb/core/driver_lib/CMakeLists.txt +++ b/ydb/core/driver_lib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/base_utils/CMakeLists.darwin.txt b/ydb/core/driver_lib/base_utils/CMakeLists.darwin.txt index 1f967d7fc3..52e306422b 100644 --- a/ydb/core/driver_lib/base_utils/CMakeLists.darwin.txt +++ b/ydb/core/driver_lib/base_utils/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/base_utils/CMakeLists.linux-aarch64.txt b/ydb/core/driver_lib/base_utils/CMakeLists.linux-aarch64.txt index 99ff4514ca..19a6d49278 100644 --- a/ydb/core/driver_lib/base_utils/CMakeLists.linux-aarch64.txt +++ b/ydb/core/driver_lib/base_utils/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/base_utils/CMakeLists.linux.txt b/ydb/core/driver_lib/base_utils/CMakeLists.linux.txt index 99ff4514ca..19a6d49278 100644 --- a/ydb/core/driver_lib/base_utils/CMakeLists.linux.txt +++ b/ydb/core/driver_lib/base_utils/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/base_utils/CMakeLists.txt b/ydb/core/driver_lib/base_utils/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/driver_lib/base_utils/CMakeLists.txt +++ b/ydb/core/driver_lib/base_utils/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/cli_base/CMakeLists.darwin.txt b/ydb/core/driver_lib/cli_base/CMakeLists.darwin.txt index f291f09b2a..277f032734 100644 --- a/ydb/core/driver_lib/cli_base/CMakeLists.darwin.txt +++ b/ydb/core/driver_lib/cli_base/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/cli_base/CMakeLists.linux-aarch64.txt b/ydb/core/driver_lib/cli_base/CMakeLists.linux-aarch64.txt index e73b1cb1b1..a646a9a5b0 100644 --- a/ydb/core/driver_lib/cli_base/CMakeLists.linux-aarch64.txt +++ b/ydb/core/driver_lib/cli_base/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/cli_base/CMakeLists.linux.txt b/ydb/core/driver_lib/cli_base/CMakeLists.linux.txt index e73b1cb1b1..a646a9a5b0 100644 --- a/ydb/core/driver_lib/cli_base/CMakeLists.linux.txt +++ b/ydb/core/driver_lib/cli_base/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/cli_base/CMakeLists.txt b/ydb/core/driver_lib/cli_base/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/driver_lib/cli_base/CMakeLists.txt +++ b/ydb/core/driver_lib/cli_base/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/cli_config_base/CMakeLists.darwin.txt b/ydb/core/driver_lib/cli_config_base/CMakeLists.darwin.txt index 70daa62228..55f3c886ac 100644 --- a/ydb/core/driver_lib/cli_config_base/CMakeLists.darwin.txt +++ b/ydb/core/driver_lib/cli_config_base/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/cli_config_base/CMakeLists.linux-aarch64.txt b/ydb/core/driver_lib/cli_config_base/CMakeLists.linux-aarch64.txt index 4cb6631e0d..60de323963 100644 --- a/ydb/core/driver_lib/cli_config_base/CMakeLists.linux-aarch64.txt +++ b/ydb/core/driver_lib/cli_config_base/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/cli_config_base/CMakeLists.linux.txt b/ydb/core/driver_lib/cli_config_base/CMakeLists.linux.txt index 4cb6631e0d..60de323963 100644 --- a/ydb/core/driver_lib/cli_config_base/CMakeLists.linux.txt +++ b/ydb/core/driver_lib/cli_config_base/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/cli_config_base/CMakeLists.txt b/ydb/core/driver_lib/cli_config_base/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/driver_lib/cli_config_base/CMakeLists.txt +++ b/ydb/core/driver_lib/cli_config_base/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/cli_utils/CMakeLists.darwin.txt b/ydb/core/driver_lib/cli_utils/CMakeLists.darwin.txt index bab2c0e260..3b9d5d19d6 100644 --- a/ydb/core/driver_lib/cli_utils/CMakeLists.darwin.txt +++ b/ydb/core/driver_lib/cli_utils/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/cli_utils/CMakeLists.linux-aarch64.txt b/ydb/core/driver_lib/cli_utils/CMakeLists.linux-aarch64.txt index 74ce26edb5..6e5b760dbd 100644 --- a/ydb/core/driver_lib/cli_utils/CMakeLists.linux-aarch64.txt +++ b/ydb/core/driver_lib/cli_utils/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/cli_utils/CMakeLists.linux.txt b/ydb/core/driver_lib/cli_utils/CMakeLists.linux.txt index 74ce26edb5..6e5b760dbd 100644 --- a/ydb/core/driver_lib/cli_utils/CMakeLists.linux.txt +++ b/ydb/core/driver_lib/cli_utils/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/cli_utils/CMakeLists.txt b/ydb/core/driver_lib/cli_utils/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/driver_lib/cli_utils/CMakeLists.txt +++ b/ydb/core/driver_lib/cli_utils/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/run/CMakeLists.darwin.txt b/ydb/core/driver_lib/run/CMakeLists.darwin.txt index b0651ad7c3..7ef6b50f34 100644 --- a/ydb/core/driver_lib/run/CMakeLists.darwin.txt +++ b/ydb/core/driver_lib/run/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/run/CMakeLists.linux-aarch64.txt b/ydb/core/driver_lib/run/CMakeLists.linux-aarch64.txt index abdf352dbb..5cf45922fa 100644 --- a/ydb/core/driver_lib/run/CMakeLists.linux-aarch64.txt +++ b/ydb/core/driver_lib/run/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/run/CMakeLists.linux.txt b/ydb/core/driver_lib/run/CMakeLists.linux.txt index abdf352dbb..5cf45922fa 100644 --- a/ydb/core/driver_lib/run/CMakeLists.linux.txt +++ b/ydb/core/driver_lib/run/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/run/CMakeLists.txt b/ydb/core/driver_lib/run/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/driver_lib/run/CMakeLists.txt +++ b/ydb/core/driver_lib/run/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/run/ut/CMakeLists.darwin.txt b/ydb/core/driver_lib/run/ut/CMakeLists.darwin.txt index 8a441602e8..8c6c9482f8 100644 --- a/ydb/core/driver_lib/run/ut/CMakeLists.darwin.txt +++ b/ydb/core/driver_lib/run/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/run/ut/CMakeLists.linux-aarch64.txt b/ydb/core/driver_lib/run/ut/CMakeLists.linux-aarch64.txt index 2a6a35fb81..033d80584e 100644 --- a/ydb/core/driver_lib/run/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/driver_lib/run/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/run/ut/CMakeLists.linux.txt b/ydb/core/driver_lib/run/ut/CMakeLists.linux.txt index dbbd9e52fb..6511f39288 100644 --- a/ydb/core/driver_lib/run/ut/CMakeLists.linux.txt +++ b/ydb/core/driver_lib/run/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/driver_lib/run/ut/CMakeLists.txt b/ydb/core/driver_lib/run/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/driver_lib/run/ut/CMakeLists.txt +++ b/ydb/core/driver_lib/run/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/engine/CMakeLists.darwin.txt b/ydb/core/engine/CMakeLists.darwin.txt index 27acad1202..eb4d209048 100644 --- a/ydb/core/engine/CMakeLists.darwin.txt +++ b/ydb/core/engine/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/engine/CMakeLists.linux-aarch64.txt b/ydb/core/engine/CMakeLists.linux-aarch64.txt index c271e83d7b..5b0a87f37c 100644 --- a/ydb/core/engine/CMakeLists.linux-aarch64.txt +++ b/ydb/core/engine/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/engine/CMakeLists.linux.txt b/ydb/core/engine/CMakeLists.linux.txt index c271e83d7b..5b0a87f37c 100644 --- a/ydb/core/engine/CMakeLists.linux.txt +++ b/ydb/core/engine/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/engine/CMakeLists.txt b/ydb/core/engine/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/engine/CMakeLists.txt +++ b/ydb/core/engine/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/engine/minikql/CMakeLists.darwin.txt b/ydb/core/engine/minikql/CMakeLists.darwin.txt index 9b153d8472..924d66edc5 100644 --- a/ydb/core/engine/minikql/CMakeLists.darwin.txt +++ b/ydb/core/engine/minikql/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/engine/minikql/CMakeLists.linux-aarch64.txt b/ydb/core/engine/minikql/CMakeLists.linux-aarch64.txt index b0379a4e3a..2189242369 100644 --- a/ydb/core/engine/minikql/CMakeLists.linux-aarch64.txt +++ b/ydb/core/engine/minikql/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/engine/minikql/CMakeLists.linux.txt b/ydb/core/engine/minikql/CMakeLists.linux.txt index b0379a4e3a..2189242369 100644 --- a/ydb/core/engine/minikql/CMakeLists.linux.txt +++ b/ydb/core/engine/minikql/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/engine/minikql/CMakeLists.txt b/ydb/core/engine/minikql/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/engine/minikql/CMakeLists.txt +++ b/ydb/core/engine/minikql/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/engine/ut/CMakeLists.darwin.txt b/ydb/core/engine/ut/CMakeLists.darwin.txt index 1084b3c9bb..bfb197bac1 100644 --- a/ydb/core/engine/ut/CMakeLists.darwin.txt +++ b/ydb/core/engine/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/engine/ut/CMakeLists.linux-aarch64.txt b/ydb/core/engine/ut/CMakeLists.linux-aarch64.txt index ecc7317831..e741195e6e 100644 --- a/ydb/core/engine/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/engine/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/engine/ut/CMakeLists.linux.txt b/ydb/core/engine/ut/CMakeLists.linux.txt index 88708eee57..87d6617df2 100644 --- a/ydb/core/engine/ut/CMakeLists.linux.txt +++ b/ydb/core/engine/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/engine/ut/CMakeLists.txt b/ydb/core/engine/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/engine/ut/CMakeLists.txt +++ b/ydb/core/engine/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/CMakeLists.darwin.txt b/ydb/core/erasure/CMakeLists.darwin.txt index bd33c60c8a..29f504e07a 100644 --- a/ydb/core/erasure/CMakeLists.darwin.txt +++ b/ydb/core/erasure/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/CMakeLists.linux-aarch64.txt b/ydb/core/erasure/CMakeLists.linux-aarch64.txt index ecc1449357..4d21fbe9ad 100644 --- a/ydb/core/erasure/CMakeLists.linux-aarch64.txt +++ b/ydb/core/erasure/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/CMakeLists.linux.txt b/ydb/core/erasure/CMakeLists.linux.txt index ecc1449357..4d21fbe9ad 100644 --- a/ydb/core/erasure/CMakeLists.linux.txt +++ b/ydb/core/erasure/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/CMakeLists.txt b/ydb/core/erasure/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/erasure/CMakeLists.txt +++ b/ydb/core/erasure/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/ut/CMakeLists.darwin.txt b/ydb/core/erasure/ut/CMakeLists.darwin.txt index 13070553f6..f11a559c17 100644 --- a/ydb/core/erasure/ut/CMakeLists.darwin.txt +++ b/ydb/core/erasure/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/ut/CMakeLists.linux-aarch64.txt b/ydb/core/erasure/ut/CMakeLists.linux-aarch64.txt index 037c136566..62438d1e73 100644 --- a/ydb/core/erasure/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/erasure/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/ut/CMakeLists.linux.txt b/ydb/core/erasure/ut/CMakeLists.linux.txt index 493ebcfd6f..e40db3c98b 100644 --- a/ydb/core/erasure/ut/CMakeLists.linux.txt +++ b/ydb/core/erasure/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/ut/CMakeLists.txt b/ydb/core/erasure/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/erasure/ut/CMakeLists.txt +++ b/ydb/core/erasure/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/ut_perf/CMakeLists.darwin.txt b/ydb/core/erasure/ut_perf/CMakeLists.darwin.txt index 0d63415432..8d24b54440 100644 --- a/ydb/core/erasure/ut_perf/CMakeLists.darwin.txt +++ b/ydb/core/erasure/ut_perf/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/ut_perf/CMakeLists.linux-aarch64.txt b/ydb/core/erasure/ut_perf/CMakeLists.linux-aarch64.txt index a67379bc60..2bb9c671bb 100644 --- a/ydb/core/erasure/ut_perf/CMakeLists.linux-aarch64.txt +++ b/ydb/core/erasure/ut_perf/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/ut_perf/CMakeLists.linux.txt b/ydb/core/erasure/ut_perf/CMakeLists.linux.txt index 54bcc15ae2..f0b70d83e7 100644 --- a/ydb/core/erasure/ut_perf/CMakeLists.linux.txt +++ b/ydb/core/erasure/ut_perf/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/ut_perf/CMakeLists.txt b/ydb/core/erasure/ut_perf/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/erasure/ut_perf/CMakeLists.txt +++ b/ydb/core/erasure/ut_perf/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/ut_rope/CMakeLists.darwin.txt b/ydb/core/erasure/ut_rope/CMakeLists.darwin.txt index e4e13688c1..e081d6704b 100644 --- a/ydb/core/erasure/ut_rope/CMakeLists.darwin.txt +++ b/ydb/core/erasure/ut_rope/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/ut_rope/CMakeLists.linux-aarch64.txt b/ydb/core/erasure/ut_rope/CMakeLists.linux-aarch64.txt index a91139dde2..95bbfbf032 100644 --- a/ydb/core/erasure/ut_rope/CMakeLists.linux-aarch64.txt +++ b/ydb/core/erasure/ut_rope/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/ut_rope/CMakeLists.linux.txt b/ydb/core/erasure/ut_rope/CMakeLists.linux.txt index a1ea9798ed..c800a72fcf 100644 --- a/ydb/core/erasure/ut_rope/CMakeLists.linux.txt +++ b/ydb/core/erasure/ut_rope/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/erasure/ut_rope/CMakeLists.txt b/ydb/core/erasure/ut_rope/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/erasure/ut_rope/CMakeLists.txt +++ b/ydb/core/erasure/ut_rope/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/filestore/CMakeLists.darwin.txt b/ydb/core/filestore/CMakeLists.darwin.txt index 450c550ff2..1da110d335 100644 --- a/ydb/core/filestore/CMakeLists.darwin.txt +++ b/ydb/core/filestore/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/filestore/CMakeLists.linux-aarch64.txt b/ydb/core/filestore/CMakeLists.linux-aarch64.txt index e65480f78c..fdd743d745 100644 --- a/ydb/core/filestore/CMakeLists.linux-aarch64.txt +++ b/ydb/core/filestore/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/filestore/CMakeLists.linux.txt b/ydb/core/filestore/CMakeLists.linux.txt index e65480f78c..fdd743d745 100644 --- a/ydb/core/filestore/CMakeLists.linux.txt +++ b/ydb/core/filestore/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/filestore/CMakeLists.txt b/ydb/core/filestore/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/filestore/CMakeLists.txt +++ b/ydb/core/filestore/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/filestore/core/CMakeLists.darwin.txt b/ydb/core/filestore/core/CMakeLists.darwin.txt index 47885d7257..ff157c3f06 100644 --- a/ydb/core/filestore/core/CMakeLists.darwin.txt +++ b/ydb/core/filestore/core/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/filestore/core/CMakeLists.linux-aarch64.txt b/ydb/core/filestore/core/CMakeLists.linux-aarch64.txt index 0b99afbb59..36145e1d10 100644 --- a/ydb/core/filestore/core/CMakeLists.linux-aarch64.txt +++ b/ydb/core/filestore/core/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/filestore/core/CMakeLists.linux.txt b/ydb/core/filestore/core/CMakeLists.linux.txt index 0b99afbb59..36145e1d10 100644 --- a/ydb/core/filestore/core/CMakeLists.linux.txt +++ b/ydb/core/filestore/core/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/filestore/core/CMakeLists.txt b/ydb/core/filestore/core/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/filestore/core/CMakeLists.txt +++ b/ydb/core/filestore/core/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/formats/CMakeLists.darwin.txt b/ydb/core/formats/CMakeLists.darwin.txt index 625c3779f0..5a2d28c0c1 100644 --- a/ydb/core/formats/CMakeLists.darwin.txt +++ b/ydb/core/formats/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/formats/CMakeLists.linux-aarch64.txt b/ydb/core/formats/CMakeLists.linux-aarch64.txt index 4cd8c70e49..d0c99c829f 100644 --- a/ydb/core/formats/CMakeLists.linux-aarch64.txt +++ b/ydb/core/formats/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/formats/CMakeLists.linux.txt b/ydb/core/formats/CMakeLists.linux.txt index 4cd8c70e49..d0c99c829f 100644 --- a/ydb/core/formats/CMakeLists.linux.txt +++ b/ydb/core/formats/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/formats/CMakeLists.txt b/ydb/core/formats/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/formats/CMakeLists.txt +++ b/ydb/core/formats/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/formats/ut/CMakeLists.darwin.txt b/ydb/core/formats/ut/CMakeLists.darwin.txt index fbe229af5b..a63bf17f87 100644 --- a/ydb/core/formats/ut/CMakeLists.darwin.txt +++ b/ydb/core/formats/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/formats/ut/CMakeLists.linux-aarch64.txt b/ydb/core/formats/ut/CMakeLists.linux-aarch64.txt index 6ded62a33b..67a833fc4c 100644 --- a/ydb/core/formats/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/formats/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/formats/ut/CMakeLists.linux.txt b/ydb/core/formats/ut/CMakeLists.linux.txt index f58c0dd7d5..d3b803c980 100644 --- a/ydb/core/formats/ut/CMakeLists.linux.txt +++ b/ydb/core/formats/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/formats/ut/CMakeLists.txt b/ydb/core/formats/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/formats/ut/CMakeLists.txt +++ b/ydb/core/formats/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_caching/CMakeLists.darwin.txt b/ydb/core/grpc_caching/CMakeLists.darwin.txt index cfbc9a6da6..e90eb9e564 100644 --- a/ydb/core/grpc_caching/CMakeLists.darwin.txt +++ b/ydb/core/grpc_caching/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_caching/CMakeLists.linux-aarch64.txt b/ydb/core/grpc_caching/CMakeLists.linux-aarch64.txt index 857cdee2e4..29c51c328c 100644 --- a/ydb/core/grpc_caching/CMakeLists.linux-aarch64.txt +++ b/ydb/core/grpc_caching/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_caching/CMakeLists.linux.txt b/ydb/core/grpc_caching/CMakeLists.linux.txt index 857cdee2e4..29c51c328c 100644 --- a/ydb/core/grpc_caching/CMakeLists.linux.txt +++ b/ydb/core/grpc_caching/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_caching/CMakeLists.txt b/ydb/core/grpc_caching/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/grpc_caching/CMakeLists.txt +++ b/ydb/core/grpc_caching/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/CMakeLists.darwin.txt b/ydb/core/grpc_services/CMakeLists.darwin.txt index 391d5a5445..1382044032 100644 --- a/ydb/core/grpc_services/CMakeLists.darwin.txt +++ b/ydb/core/grpc_services/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/CMakeLists.linux-aarch64.txt b/ydb/core/grpc_services/CMakeLists.linux-aarch64.txt index 4dae718841..ec8d114184 100644 --- a/ydb/core/grpc_services/CMakeLists.linux-aarch64.txt +++ b/ydb/core/grpc_services/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/CMakeLists.linux.txt b/ydb/core/grpc_services/CMakeLists.linux.txt index 4dae718841..ec8d114184 100644 --- a/ydb/core/grpc_services/CMakeLists.linux.txt +++ b/ydb/core/grpc_services/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/CMakeLists.txt b/ydb/core/grpc_services/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/grpc_services/CMakeLists.txt +++ b/ydb/core/grpc_services/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/base/CMakeLists.darwin.txt b/ydb/core/grpc_services/base/CMakeLists.darwin.txt index 0aaf328e0d..b912d66f3a 100644 --- a/ydb/core/grpc_services/base/CMakeLists.darwin.txt +++ b/ydb/core/grpc_services/base/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/base/CMakeLists.linux-aarch64.txt b/ydb/core/grpc_services/base/CMakeLists.linux-aarch64.txt index 07b23a95b5..999a49f6a1 100644 --- a/ydb/core/grpc_services/base/CMakeLists.linux-aarch64.txt +++ b/ydb/core/grpc_services/base/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/base/CMakeLists.linux.txt b/ydb/core/grpc_services/base/CMakeLists.linux.txt index 07b23a95b5..999a49f6a1 100644 --- a/ydb/core/grpc_services/base/CMakeLists.linux.txt +++ b/ydb/core/grpc_services/base/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/base/CMakeLists.txt b/ydb/core/grpc_services/base/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/grpc_services/base/CMakeLists.txt +++ b/ydb/core/grpc_services/base/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/cancelation/CMakeLists.darwin.txt b/ydb/core/grpc_services/cancelation/CMakeLists.darwin.txt index c9cab09c43..573a98a8e6 100644 --- a/ydb/core/grpc_services/cancelation/CMakeLists.darwin.txt +++ b/ydb/core/grpc_services/cancelation/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/cancelation/CMakeLists.linux-aarch64.txt b/ydb/core/grpc_services/cancelation/CMakeLists.linux-aarch64.txt index d5cdddddd0..e10bd78418 100644 --- a/ydb/core/grpc_services/cancelation/CMakeLists.linux-aarch64.txt +++ b/ydb/core/grpc_services/cancelation/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/cancelation/CMakeLists.linux.txt b/ydb/core/grpc_services/cancelation/CMakeLists.linux.txt index d5cdddddd0..e10bd78418 100644 --- a/ydb/core/grpc_services/cancelation/CMakeLists.linux.txt +++ b/ydb/core/grpc_services/cancelation/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/cancelation/CMakeLists.txt b/ydb/core/grpc_services/cancelation/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/grpc_services/cancelation/CMakeLists.txt +++ b/ydb/core/grpc_services/cancelation/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/cancelation/protos/CMakeLists.darwin.txt b/ydb/core/grpc_services/cancelation/protos/CMakeLists.darwin.txt index 50a7ff3e59..2a4673f9ae 100644 --- a/ydb/core/grpc_services/cancelation/protos/CMakeLists.darwin.txt +++ b/ydb/core/grpc_services/cancelation/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/cancelation/protos/CMakeLists.linux-aarch64.txt b/ydb/core/grpc_services/cancelation/protos/CMakeLists.linux-aarch64.txt index 214d8ee77f..7e47d34ba8 100644 --- a/ydb/core/grpc_services/cancelation/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/core/grpc_services/cancelation/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/cancelation/protos/CMakeLists.linux.txt b/ydb/core/grpc_services/cancelation/protos/CMakeLists.linux.txt index 214d8ee77f..7e47d34ba8 100644 --- a/ydb/core/grpc_services/cancelation/protos/CMakeLists.linux.txt +++ b/ydb/core/grpc_services/cancelation/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/cancelation/protos/CMakeLists.txt b/ydb/core/grpc_services/cancelation/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/grpc_services/cancelation/protos/CMakeLists.txt +++ b/ydb/core/grpc_services/cancelation/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/counters/CMakeLists.darwin.txt b/ydb/core/grpc_services/counters/CMakeLists.darwin.txt index 17c796752c..9738ee1e46 100644 --- a/ydb/core/grpc_services/counters/CMakeLists.darwin.txt +++ b/ydb/core/grpc_services/counters/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/counters/CMakeLists.linux-aarch64.txt b/ydb/core/grpc_services/counters/CMakeLists.linux-aarch64.txt index e96bc006ef..2c1e1761e7 100644 --- a/ydb/core/grpc_services/counters/CMakeLists.linux-aarch64.txt +++ b/ydb/core/grpc_services/counters/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/counters/CMakeLists.linux.txt b/ydb/core/grpc_services/counters/CMakeLists.linux.txt index e96bc006ef..2c1e1761e7 100644 --- a/ydb/core/grpc_services/counters/CMakeLists.linux.txt +++ b/ydb/core/grpc_services/counters/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/counters/CMakeLists.txt b/ydb/core/grpc_services/counters/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/grpc_services/counters/CMakeLists.txt +++ b/ydb/core/grpc_services/counters/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/local_rpc/CMakeLists.darwin.txt b/ydb/core/grpc_services/local_rpc/CMakeLists.darwin.txt index 0dd6e4b340..f446f66846 100644 --- a/ydb/core/grpc_services/local_rpc/CMakeLists.darwin.txt +++ b/ydb/core/grpc_services/local_rpc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/local_rpc/CMakeLists.linux-aarch64.txt b/ydb/core/grpc_services/local_rpc/CMakeLists.linux-aarch64.txt index 5ba083d84b..e93f011ded 100644 --- a/ydb/core/grpc_services/local_rpc/CMakeLists.linux-aarch64.txt +++ b/ydb/core/grpc_services/local_rpc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/local_rpc/CMakeLists.linux.txt b/ydb/core/grpc_services/local_rpc/CMakeLists.linux.txt index 5ba083d84b..e93f011ded 100644 --- a/ydb/core/grpc_services/local_rpc/CMakeLists.linux.txt +++ b/ydb/core/grpc_services/local_rpc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/local_rpc/CMakeLists.txt b/ydb/core/grpc_services/local_rpc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/grpc_services/local_rpc/CMakeLists.txt +++ b/ydb/core/grpc_services/local_rpc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/ut/CMakeLists.darwin.txt b/ydb/core/grpc_services/ut/CMakeLists.darwin.txt index 10d02da6df..68d38aa0f9 100644 --- a/ydb/core/grpc_services/ut/CMakeLists.darwin.txt +++ b/ydb/core/grpc_services/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/ut/CMakeLists.linux-aarch64.txt b/ydb/core/grpc_services/ut/CMakeLists.linux-aarch64.txt index 383f284fba..bc1dd24522 100644 --- a/ydb/core/grpc_services/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/grpc_services/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/ut/CMakeLists.linux.txt b/ydb/core/grpc_services/ut/CMakeLists.linux.txt index 301d738a32..73e4294863 100644 --- a/ydb/core/grpc_services/ut/CMakeLists.linux.txt +++ b/ydb/core/grpc_services/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_services/ut/CMakeLists.txt b/ydb/core/grpc_services/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/grpc_services/ut/CMakeLists.txt +++ b/ydb/core/grpc_services/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_streaming/CMakeLists.darwin.txt b/ydb/core/grpc_streaming/CMakeLists.darwin.txt index 45593dfe35..97d3760506 100644 --- a/ydb/core/grpc_streaming/CMakeLists.darwin.txt +++ b/ydb/core/grpc_streaming/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_streaming/CMakeLists.linux-aarch64.txt b/ydb/core/grpc_streaming/CMakeLists.linux-aarch64.txt index 5b97c62775..3b9558ee2d 100644 --- a/ydb/core/grpc_streaming/CMakeLists.linux-aarch64.txt +++ b/ydb/core/grpc_streaming/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_streaming/CMakeLists.linux.txt b/ydb/core/grpc_streaming/CMakeLists.linux.txt index 5b97c62775..3b9558ee2d 100644 --- a/ydb/core/grpc_streaming/CMakeLists.linux.txt +++ b/ydb/core/grpc_streaming/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_streaming/CMakeLists.txt b/ydb/core/grpc_streaming/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/grpc_streaming/CMakeLists.txt +++ b/ydb/core/grpc_streaming/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_streaming/ut/CMakeLists.darwin.txt b/ydb/core/grpc_streaming/ut/CMakeLists.darwin.txt index bbeafa0ac0..b1f97905fa 100644 --- a/ydb/core/grpc_streaming/ut/CMakeLists.darwin.txt +++ b/ydb/core/grpc_streaming/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_streaming/ut/CMakeLists.linux-aarch64.txt b/ydb/core/grpc_streaming/ut/CMakeLists.linux-aarch64.txt index 974065232a..7a191b3f9a 100644 --- a/ydb/core/grpc_streaming/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/grpc_streaming/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_streaming/ut/CMakeLists.linux.txt b/ydb/core/grpc_streaming/ut/CMakeLists.linux.txt index 8a5d86ee36..47519e41b5 100644 --- a/ydb/core/grpc_streaming/ut/CMakeLists.linux.txt +++ b/ydb/core/grpc_streaming/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_streaming/ut/CMakeLists.txt b/ydb/core/grpc_streaming/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/grpc_streaming/ut/CMakeLists.txt +++ b/ydb/core/grpc_streaming/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_streaming/ut/grpc/CMakeLists.darwin.txt b/ydb/core/grpc_streaming/ut/grpc/CMakeLists.darwin.txt index a6096564e8..f3984ef21a 100644 --- a/ydb/core/grpc_streaming/ut/grpc/CMakeLists.darwin.txt +++ b/ydb/core/grpc_streaming/ut/grpc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_streaming/ut/grpc/CMakeLists.linux-aarch64.txt b/ydb/core/grpc_streaming/ut/grpc/CMakeLists.linux-aarch64.txt index f7ab45e8ba..b2402664a7 100644 --- a/ydb/core/grpc_streaming/ut/grpc/CMakeLists.linux-aarch64.txt +++ b/ydb/core/grpc_streaming/ut/grpc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_streaming/ut/grpc/CMakeLists.linux.txt b/ydb/core/grpc_streaming/ut/grpc/CMakeLists.linux.txt index f7ab45e8ba..b2402664a7 100644 --- a/ydb/core/grpc_streaming/ut/grpc/CMakeLists.linux.txt +++ b/ydb/core/grpc_streaming/ut/grpc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/grpc_streaming/ut/grpc/CMakeLists.txt b/ydb/core/grpc_streaming/ut/grpc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/grpc_streaming/ut/grpc/CMakeLists.txt +++ b/ydb/core/grpc_streaming/ut/grpc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/health_check/CMakeLists.darwin.txt b/ydb/core/health_check/CMakeLists.darwin.txt index 66cd39d09e..57fa13ff70 100644 --- a/ydb/core/health_check/CMakeLists.darwin.txt +++ b/ydb/core/health_check/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/health_check/CMakeLists.linux-aarch64.txt b/ydb/core/health_check/CMakeLists.linux-aarch64.txt index 5aebea5955..7cd8c50e92 100644 --- a/ydb/core/health_check/CMakeLists.linux-aarch64.txt +++ b/ydb/core/health_check/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/health_check/CMakeLists.linux.txt b/ydb/core/health_check/CMakeLists.linux.txt index 5aebea5955..7cd8c50e92 100644 --- a/ydb/core/health_check/CMakeLists.linux.txt +++ b/ydb/core/health_check/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/health_check/CMakeLists.txt b/ydb/core/health_check/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/health_check/CMakeLists.txt +++ b/ydb/core/health_check/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/health_check/ut/CMakeLists.darwin.txt b/ydb/core/health_check/ut/CMakeLists.darwin.txt index 2b7b62513f..1632c0c68e 100644 --- a/ydb/core/health_check/ut/CMakeLists.darwin.txt +++ b/ydb/core/health_check/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/health_check/ut/CMakeLists.linux-aarch64.txt b/ydb/core/health_check/ut/CMakeLists.linux-aarch64.txt index a518df4973..74fb895e4b 100644 --- a/ydb/core/health_check/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/health_check/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/health_check/ut/CMakeLists.linux.txt b/ydb/core/health_check/ut/CMakeLists.linux.txt index 9db6afab21..11fff4a342 100644 --- a/ydb/core/health_check/ut/CMakeLists.linux.txt +++ b/ydb/core/health_check/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/health_check/ut/CMakeLists.txt b/ydb/core/health_check/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/health_check/ut/CMakeLists.txt +++ b/ydb/core/health_check/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/http_proxy/CMakeLists.darwin.txt b/ydb/core/http_proxy/CMakeLists.darwin.txt index 01d1e50a36..d76dd4343b 100644 --- a/ydb/core/http_proxy/CMakeLists.darwin.txt +++ b/ydb/core/http_proxy/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/http_proxy/CMakeLists.linux-aarch64.txt b/ydb/core/http_proxy/CMakeLists.linux-aarch64.txt index 15de640511..35e6158b49 100644 --- a/ydb/core/http_proxy/CMakeLists.linux-aarch64.txt +++ b/ydb/core/http_proxy/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/http_proxy/CMakeLists.linux.txt b/ydb/core/http_proxy/CMakeLists.linux.txt index 15de640511..35e6158b49 100644 --- a/ydb/core/http_proxy/CMakeLists.linux.txt +++ b/ydb/core/http_proxy/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/http_proxy/CMakeLists.txt b/ydb/core/http_proxy/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/http_proxy/CMakeLists.txt +++ b/ydb/core/http_proxy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/http_proxy/ut/CMakeLists.darwin.txt b/ydb/core/http_proxy/ut/CMakeLists.darwin.txt index 09f8502a4d..016edd93c2 100644 --- a/ydb/core/http_proxy/ut/CMakeLists.darwin.txt +++ b/ydb/core/http_proxy/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/http_proxy/ut/CMakeLists.linux-aarch64.txt b/ydb/core/http_proxy/ut/CMakeLists.linux-aarch64.txt index a7ee67234d..3bcc61a1be 100644 --- a/ydb/core/http_proxy/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/http_proxy/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/http_proxy/ut/CMakeLists.linux.txt b/ydb/core/http_proxy/ut/CMakeLists.linux.txt index 3cfcfa4b19..c23447952a 100644 --- a/ydb/core/http_proxy/ut/CMakeLists.linux.txt +++ b/ydb/core/http_proxy/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/http_proxy/ut/CMakeLists.txt b/ydb/core/http_proxy/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/http_proxy/ut/CMakeLists.txt +++ b/ydb/core/http_proxy/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/io_formats/CMakeLists.darwin.txt b/ydb/core/io_formats/CMakeLists.darwin.txt index 12ffede84b..c443e626fd 100644 --- a/ydb/core/io_formats/CMakeLists.darwin.txt +++ b/ydb/core/io_formats/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/io_formats/CMakeLists.linux-aarch64.txt b/ydb/core/io_formats/CMakeLists.linux-aarch64.txt index b8d428bc20..4a2ffea394 100644 --- a/ydb/core/io_formats/CMakeLists.linux-aarch64.txt +++ b/ydb/core/io_formats/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/io_formats/CMakeLists.linux.txt b/ydb/core/io_formats/CMakeLists.linux.txt index b8d428bc20..4a2ffea394 100644 --- a/ydb/core/io_formats/CMakeLists.linux.txt +++ b/ydb/core/io_formats/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/io_formats/CMakeLists.txt b/ydb/core/io_formats/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/io_formats/CMakeLists.txt +++ b/ydb/core/io_formats/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/io_formats/ut/CMakeLists.darwin.txt b/ydb/core/io_formats/ut/CMakeLists.darwin.txt index d7632c83b9..e7845da8af 100644 --- a/ydb/core/io_formats/ut/CMakeLists.darwin.txt +++ b/ydb/core/io_formats/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/io_formats/ut/CMakeLists.linux-aarch64.txt b/ydb/core/io_formats/ut/CMakeLists.linux-aarch64.txt index 4b7bca3fc5..169ee0a43a 100644 --- a/ydb/core/io_formats/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/io_formats/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/io_formats/ut/CMakeLists.linux.txt b/ydb/core/io_formats/ut/CMakeLists.linux.txt index 3194a0ec72..e90f863cee 100644 --- a/ydb/core/io_formats/ut/CMakeLists.linux.txt +++ b/ydb/core/io_formats/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/io_formats/ut/CMakeLists.txt b/ydb/core/io_formats/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/io_formats/ut/CMakeLists.txt +++ b/ydb/core/io_formats/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/CMakeLists.txt b/ydb/core/kesus/CMakeLists.txt index db0ba79582..a02332ebce 100644 --- a/ydb/core/kesus/CMakeLists.txt +++ b/ydb/core/kesus/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/proxy/CMakeLists.darwin.txt b/ydb/core/kesus/proxy/CMakeLists.darwin.txt index 8fe48c712b..623ce42287 100644 --- a/ydb/core/kesus/proxy/CMakeLists.darwin.txt +++ b/ydb/core/kesus/proxy/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/proxy/CMakeLists.linux-aarch64.txt b/ydb/core/kesus/proxy/CMakeLists.linux-aarch64.txt index b892250d7b..e7dfe3ffe4 100644 --- a/ydb/core/kesus/proxy/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kesus/proxy/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/proxy/CMakeLists.linux.txt b/ydb/core/kesus/proxy/CMakeLists.linux.txt index b892250d7b..e7dfe3ffe4 100644 --- a/ydb/core/kesus/proxy/CMakeLists.linux.txt +++ b/ydb/core/kesus/proxy/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/proxy/CMakeLists.txt b/ydb/core/kesus/proxy/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kesus/proxy/CMakeLists.txt +++ b/ydb/core/kesus/proxy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/proxy/ut/CMakeLists.darwin.txt b/ydb/core/kesus/proxy/ut/CMakeLists.darwin.txt index 6d97c9882f..7d1082a471 100644 --- a/ydb/core/kesus/proxy/ut/CMakeLists.darwin.txt +++ b/ydb/core/kesus/proxy/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/proxy/ut/CMakeLists.linux-aarch64.txt b/ydb/core/kesus/proxy/ut/CMakeLists.linux-aarch64.txt index 5c6864cc6a..b2cc342f10 100644 --- a/ydb/core/kesus/proxy/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kesus/proxy/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/proxy/ut/CMakeLists.linux.txt b/ydb/core/kesus/proxy/ut/CMakeLists.linux.txt index 22b1845d44..f6149ba6f2 100644 --- a/ydb/core/kesus/proxy/ut/CMakeLists.linux.txt +++ b/ydb/core/kesus/proxy/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/proxy/ut/CMakeLists.txt b/ydb/core/kesus/proxy/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kesus/proxy/ut/CMakeLists.txt +++ b/ydb/core/kesus/proxy/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/tablet/CMakeLists.darwin.txt b/ydb/core/kesus/tablet/CMakeLists.darwin.txt index ddcffa3cf9..5677b3ecf4 100644 --- a/ydb/core/kesus/tablet/CMakeLists.darwin.txt +++ b/ydb/core/kesus/tablet/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/tablet/CMakeLists.linux-aarch64.txt b/ydb/core/kesus/tablet/CMakeLists.linux-aarch64.txt index c06a632fcd..3d71075132 100644 --- a/ydb/core/kesus/tablet/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kesus/tablet/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/tablet/CMakeLists.linux.txt b/ydb/core/kesus/tablet/CMakeLists.linux.txt index c06a632fcd..3d71075132 100644 --- a/ydb/core/kesus/tablet/CMakeLists.linux.txt +++ b/ydb/core/kesus/tablet/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/tablet/CMakeLists.txt b/ydb/core/kesus/tablet/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kesus/tablet/CMakeLists.txt +++ b/ydb/core/kesus/tablet/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.darwin.txt b/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.darwin.txt index 19fec0b0b0..2ccb59b1a1 100644 --- a/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.darwin.txt +++ b/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.linux-aarch64.txt b/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.linux-aarch64.txt index ec3ec406cf..03c28aec78 100644 --- a/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.linux.txt b/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.linux.txt index 654cc38a7a..c56508b3c0 100644 --- a/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.linux.txt +++ b/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.txt b/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.txt +++ b/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/tablet/ut/CMakeLists.darwin.txt b/ydb/core/kesus/tablet/ut/CMakeLists.darwin.txt index ea79b18cc9..86d317e35b 100644 --- a/ydb/core/kesus/tablet/ut/CMakeLists.darwin.txt +++ b/ydb/core/kesus/tablet/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/tablet/ut/CMakeLists.linux-aarch64.txt b/ydb/core/kesus/tablet/ut/CMakeLists.linux-aarch64.txt index 99890b00ef..bfee98cf9e 100644 --- a/ydb/core/kesus/tablet/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kesus/tablet/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/tablet/ut/CMakeLists.linux.txt b/ydb/core/kesus/tablet/ut/CMakeLists.linux.txt index 01c5200aaf..596ae712e7 100644 --- a/ydb/core/kesus/tablet/ut/CMakeLists.linux.txt +++ b/ydb/core/kesus/tablet/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kesus/tablet/ut/CMakeLists.txt b/ydb/core/kesus/tablet/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kesus/tablet/ut/CMakeLists.txt +++ b/ydb/core/kesus/tablet/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/keyvalue/CMakeLists.darwin.txt b/ydb/core/keyvalue/CMakeLists.darwin.txt index 5a7fc1a54a..fa3b2d5eef 100644 --- a/ydb/core/keyvalue/CMakeLists.darwin.txt +++ b/ydb/core/keyvalue/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/keyvalue/CMakeLists.linux-aarch64.txt b/ydb/core/keyvalue/CMakeLists.linux-aarch64.txt index a8c3217af0..a0be4d8631 100644 --- a/ydb/core/keyvalue/CMakeLists.linux-aarch64.txt +++ b/ydb/core/keyvalue/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/keyvalue/CMakeLists.linux.txt b/ydb/core/keyvalue/CMakeLists.linux.txt index a8c3217af0..a0be4d8631 100644 --- a/ydb/core/keyvalue/CMakeLists.linux.txt +++ b/ydb/core/keyvalue/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/keyvalue/CMakeLists.txt b/ydb/core/keyvalue/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/keyvalue/CMakeLists.txt +++ b/ydb/core/keyvalue/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/keyvalue/protos/CMakeLists.darwin.txt b/ydb/core/keyvalue/protos/CMakeLists.darwin.txt index 0f26493773..f4d36e1d67 100644 --- a/ydb/core/keyvalue/protos/CMakeLists.darwin.txt +++ b/ydb/core/keyvalue/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/keyvalue/protos/CMakeLists.linux-aarch64.txt b/ydb/core/keyvalue/protos/CMakeLists.linux-aarch64.txt index a4fa4185de..0cc34f2f1f 100644 --- a/ydb/core/keyvalue/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/core/keyvalue/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/keyvalue/protos/CMakeLists.linux.txt b/ydb/core/keyvalue/protos/CMakeLists.linux.txt index a4fa4185de..0cc34f2f1f 100644 --- a/ydb/core/keyvalue/protos/CMakeLists.linux.txt +++ b/ydb/core/keyvalue/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/keyvalue/protos/CMakeLists.txt b/ydb/core/keyvalue/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/keyvalue/protos/CMakeLists.txt +++ b/ydb/core/keyvalue/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/keyvalue/ut/CMakeLists.darwin.txt b/ydb/core/keyvalue/ut/CMakeLists.darwin.txt index cfcb539eb0..0310869d66 100644 --- a/ydb/core/keyvalue/ut/CMakeLists.darwin.txt +++ b/ydb/core/keyvalue/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/keyvalue/ut/CMakeLists.linux-aarch64.txt b/ydb/core/keyvalue/ut/CMakeLists.linux-aarch64.txt index 0bdab37515..80e0879c43 100644 --- a/ydb/core/keyvalue/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/keyvalue/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/keyvalue/ut/CMakeLists.linux.txt b/ydb/core/keyvalue/ut/CMakeLists.linux.txt index 0d748f11b2..8d364ad611 100644 --- a/ydb/core/keyvalue/ut/CMakeLists.linux.txt +++ b/ydb/core/keyvalue/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/keyvalue/ut/CMakeLists.txt b/ydb/core/keyvalue/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/keyvalue/ut/CMakeLists.txt +++ b/ydb/core/keyvalue/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/CMakeLists.darwin.txt b/ydb/core/kqp/CMakeLists.darwin.txt index 6102a5fe4c..3eb7972cab 100644 --- a/ydb/core/kqp/CMakeLists.darwin.txt +++ b/ydb/core/kqp/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/CMakeLists.linux-aarch64.txt index 3368aeba19..c539f81bfa 100644 --- a/ydb/core/kqp/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/CMakeLists.linux.txt b/ydb/core/kqp/CMakeLists.linux.txt index 3368aeba19..c539f81bfa 100644 --- a/ydb/core/kqp/CMakeLists.linux.txt +++ b/ydb/core/kqp/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/CMakeLists.txt b/ydb/core/kqp/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/CMakeLists.txt +++ b/ydb/core/kqp/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/common/CMakeLists.darwin.txt b/ydb/core/kqp/common/CMakeLists.darwin.txt index ad02149145..7ffd2b4be8 100644 --- a/ydb/core/kqp/common/CMakeLists.darwin.txt +++ b/ydb/core/kqp/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/common/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/common/CMakeLists.linux-aarch64.txt index 2532d5453d..b669a94abb 100644 --- a/ydb/core/kqp/common/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/common/CMakeLists.linux.txt b/ydb/core/kqp/common/CMakeLists.linux.txt index 2532d5453d..b669a94abb 100644 --- a/ydb/core/kqp/common/CMakeLists.linux.txt +++ b/ydb/core/kqp/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/common/CMakeLists.txt b/ydb/core/kqp/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/common/CMakeLists.txt +++ b/ydb/core/kqp/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/compile_service/CMakeLists.darwin.txt b/ydb/core/kqp/compile_service/CMakeLists.darwin.txt index 622e57a784..b45c5d71e1 100644 --- a/ydb/core/kqp/compile_service/CMakeLists.darwin.txt +++ b/ydb/core/kqp/compile_service/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/compile_service/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/compile_service/CMakeLists.linux-aarch64.txt index f8c51496e5..8568cb8a45 100644 --- a/ydb/core/kqp/compile_service/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/compile_service/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/compile_service/CMakeLists.linux.txt b/ydb/core/kqp/compile_service/CMakeLists.linux.txt index f8c51496e5..8568cb8a45 100644 --- a/ydb/core/kqp/compile_service/CMakeLists.linux.txt +++ b/ydb/core/kqp/compile_service/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/compile_service/CMakeLists.txt b/ydb/core/kqp/compile_service/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/compile_service/CMakeLists.txt +++ b/ydb/core/kqp/compile_service/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/compute_actor/CMakeLists.darwin.txt b/ydb/core/kqp/compute_actor/CMakeLists.darwin.txt index e0e75bb349..1f60d1015d 100644 --- a/ydb/core/kqp/compute_actor/CMakeLists.darwin.txt +++ b/ydb/core/kqp/compute_actor/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/compute_actor/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/compute_actor/CMakeLists.linux-aarch64.txt index ed7c3c8407..7e158ca387 100644 --- a/ydb/core/kqp/compute_actor/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/compute_actor/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/compute_actor/CMakeLists.linux.txt b/ydb/core/kqp/compute_actor/CMakeLists.linux.txt index ed7c3c8407..7e158ca387 100644 --- a/ydb/core/kqp/compute_actor/CMakeLists.linux.txt +++ b/ydb/core/kqp/compute_actor/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/compute_actor/CMakeLists.txt b/ydb/core/kqp/compute_actor/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/compute_actor/CMakeLists.txt +++ b/ydb/core/kqp/compute_actor/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/counters/CMakeLists.darwin.txt b/ydb/core/kqp/counters/CMakeLists.darwin.txt index 7e48143efe..8f457ba4da 100644 --- a/ydb/core/kqp/counters/CMakeLists.darwin.txt +++ b/ydb/core/kqp/counters/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/counters/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/counters/CMakeLists.linux-aarch64.txt index 917f755625..f0dbbe779d 100644 --- a/ydb/core/kqp/counters/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/counters/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/counters/CMakeLists.linux.txt b/ydb/core/kqp/counters/CMakeLists.linux.txt index 917f755625..f0dbbe779d 100644 --- a/ydb/core/kqp/counters/CMakeLists.linux.txt +++ b/ydb/core/kqp/counters/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/counters/CMakeLists.txt b/ydb/core/kqp/counters/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/counters/CMakeLists.txt +++ b/ydb/core/kqp/counters/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/executer_actor/CMakeLists.darwin.txt b/ydb/core/kqp/executer_actor/CMakeLists.darwin.txt index 75f886c323..4de87f9588 100644 --- a/ydb/core/kqp/executer_actor/CMakeLists.darwin.txt +++ b/ydb/core/kqp/executer_actor/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/executer_actor/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/executer_actor/CMakeLists.linux-aarch64.txt index 72d59cdd50..bcfd6eb80f 100644 --- a/ydb/core/kqp/executer_actor/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/executer_actor/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/executer_actor/CMakeLists.linux.txt b/ydb/core/kqp/executer_actor/CMakeLists.linux.txt index 72d59cdd50..bcfd6eb80f 100644 --- a/ydb/core/kqp/executer_actor/CMakeLists.linux.txt +++ b/ydb/core/kqp/executer_actor/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/executer_actor/CMakeLists.txt b/ydb/core/kqp/executer_actor/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/executer_actor/CMakeLists.txt +++ b/ydb/core/kqp/executer_actor/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/executer_actor/ut/CMakeLists.darwin.txt b/ydb/core/kqp/executer_actor/ut/CMakeLists.darwin.txt index e87896c514..97577d5ed6 100644 --- a/ydb/core/kqp/executer_actor/ut/CMakeLists.darwin.txt +++ b/ydb/core/kqp/executer_actor/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/executer_actor/ut/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/executer_actor/ut/CMakeLists.linux-aarch64.txt index 432b8499ac..1e85eb4b85 100644 --- a/ydb/core/kqp/executer_actor/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/executer_actor/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/executer_actor/ut/CMakeLists.linux.txt b/ydb/core/kqp/executer_actor/ut/CMakeLists.linux.txt index 49caa3f1d8..06eb867dcc 100644 --- a/ydb/core/kqp/executer_actor/ut/CMakeLists.linux.txt +++ b/ydb/core/kqp/executer_actor/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/executer_actor/ut/CMakeLists.txt b/ydb/core/kqp/executer_actor/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/executer_actor/ut/CMakeLists.txt +++ b/ydb/core/kqp/executer_actor/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/expr_nodes/CMakeLists.darwin.txt b/ydb/core/kqp/expr_nodes/CMakeLists.darwin.txt index 920eeadabe..f7bb91913a 100644 --- a/ydb/core/kqp/expr_nodes/CMakeLists.darwin.txt +++ b/ydb/core/kqp/expr_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/expr_nodes/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/expr_nodes/CMakeLists.linux-aarch64.txt index 95b4deb74b..d4e1a53b13 100644 --- a/ydb/core/kqp/expr_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/expr_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/expr_nodes/CMakeLists.linux.txt b/ydb/core/kqp/expr_nodes/CMakeLists.linux.txt index 95b4deb74b..d4e1a53b13 100644 --- a/ydb/core/kqp/expr_nodes/CMakeLists.linux.txt +++ b/ydb/core/kqp/expr_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/expr_nodes/CMakeLists.txt b/ydb/core/kqp/expr_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/expr_nodes/CMakeLists.txt +++ b/ydb/core/kqp/expr_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/gateway/CMakeLists.darwin.txt b/ydb/core/kqp/gateway/CMakeLists.darwin.txt index f68a6ad84d..a2b7ff3564 100644 --- a/ydb/core/kqp/gateway/CMakeLists.darwin.txt +++ b/ydb/core/kqp/gateway/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/gateway/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/gateway/CMakeLists.linux-aarch64.txt index 126582ffde..b68d9fc993 100644 --- a/ydb/core/kqp/gateway/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/gateway/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/gateway/CMakeLists.linux.txt b/ydb/core/kqp/gateway/CMakeLists.linux.txt index 126582ffde..b68d9fc993 100644 --- a/ydb/core/kqp/gateway/CMakeLists.linux.txt +++ b/ydb/core/kqp/gateway/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/gateway/CMakeLists.txt b/ydb/core/kqp/gateway/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/gateway/CMakeLists.txt +++ b/ydb/core/kqp/gateway/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/host/CMakeLists.darwin.txt b/ydb/core/kqp/host/CMakeLists.darwin.txt index 78b127def5..064dd98393 100644 --- a/ydb/core/kqp/host/CMakeLists.darwin.txt +++ b/ydb/core/kqp/host/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/host/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/host/CMakeLists.linux-aarch64.txt index 9f00d20bb4..eb34322e5b 100644 --- a/ydb/core/kqp/host/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/host/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/host/CMakeLists.linux.txt b/ydb/core/kqp/host/CMakeLists.linux.txt index 9f00d20bb4..eb34322e5b 100644 --- a/ydb/core/kqp/host/CMakeLists.linux.txt +++ b/ydb/core/kqp/host/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/host/CMakeLists.txt b/ydb/core/kqp/host/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/host/CMakeLists.txt +++ b/ydb/core/kqp/host/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/node_service/CMakeLists.darwin.txt b/ydb/core/kqp/node_service/CMakeLists.darwin.txt index ee7004b1b4..3656f42ea2 100644 --- a/ydb/core/kqp/node_service/CMakeLists.darwin.txt +++ b/ydb/core/kqp/node_service/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/node_service/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/node_service/CMakeLists.linux-aarch64.txt index 8d82dc5147..809b67173c 100644 --- a/ydb/core/kqp/node_service/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/node_service/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/node_service/CMakeLists.linux.txt b/ydb/core/kqp/node_service/CMakeLists.linux.txt index 8d82dc5147..809b67173c 100644 --- a/ydb/core/kqp/node_service/CMakeLists.linux.txt +++ b/ydb/core/kqp/node_service/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/node_service/CMakeLists.txt b/ydb/core/kqp/node_service/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/node_service/CMakeLists.txt +++ b/ydb/core/kqp/node_service/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/node_service/ut/CMakeLists.darwin.txt b/ydb/core/kqp/node_service/ut/CMakeLists.darwin.txt index 2d4e10ca57..0a34112b00 100644 --- a/ydb/core/kqp/node_service/ut/CMakeLists.darwin.txt +++ b/ydb/core/kqp/node_service/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/node_service/ut/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/node_service/ut/CMakeLists.linux-aarch64.txt index 55dcce7a01..99a912d151 100644 --- a/ydb/core/kqp/node_service/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/node_service/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/node_service/ut/CMakeLists.linux.txt b/ydb/core/kqp/node_service/ut/CMakeLists.linux.txt index c0ce8aa89a..7254dd6a46 100644 --- a/ydb/core/kqp/node_service/ut/CMakeLists.linux.txt +++ b/ydb/core/kqp/node_service/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/node_service/ut/CMakeLists.txt b/ydb/core/kqp/node_service/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/node_service/ut/CMakeLists.txt +++ b/ydb/core/kqp/node_service/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/CMakeLists.darwin.txt b/ydb/core/kqp/opt/CMakeLists.darwin.txt index 03aa5162a4..c7580faeb2 100644 --- a/ydb/core/kqp/opt/CMakeLists.darwin.txt +++ b/ydb/core/kqp/opt/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/opt/CMakeLists.linux-aarch64.txt index ab234eaf09..db53e7fb6a 100644 --- a/ydb/core/kqp/opt/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/opt/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/CMakeLists.linux.txt b/ydb/core/kqp/opt/CMakeLists.linux.txt index ab234eaf09..db53e7fb6a 100644 --- a/ydb/core/kqp/opt/CMakeLists.linux.txt +++ b/ydb/core/kqp/opt/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/CMakeLists.txt b/ydb/core/kqp/opt/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/opt/CMakeLists.txt +++ b/ydb/core/kqp/opt/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/logical/CMakeLists.darwin.txt b/ydb/core/kqp/opt/logical/CMakeLists.darwin.txt index 479006bbcf..987f3e52d2 100644 --- a/ydb/core/kqp/opt/logical/CMakeLists.darwin.txt +++ b/ydb/core/kqp/opt/logical/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/logical/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/opt/logical/CMakeLists.linux-aarch64.txt index 151073efbf..37ceb4a01e 100644 --- a/ydb/core/kqp/opt/logical/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/opt/logical/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/logical/CMakeLists.linux.txt b/ydb/core/kqp/opt/logical/CMakeLists.linux.txt index 151073efbf..37ceb4a01e 100644 --- a/ydb/core/kqp/opt/logical/CMakeLists.linux.txt +++ b/ydb/core/kqp/opt/logical/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/logical/CMakeLists.txt b/ydb/core/kqp/opt/logical/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/opt/logical/CMakeLists.txt +++ b/ydb/core/kqp/opt/logical/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/peephole/CMakeLists.darwin.txt b/ydb/core/kqp/opt/peephole/CMakeLists.darwin.txt index 4916768fec..823ec24b9f 100644 --- a/ydb/core/kqp/opt/peephole/CMakeLists.darwin.txt +++ b/ydb/core/kqp/opt/peephole/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/peephole/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/opt/peephole/CMakeLists.linux-aarch64.txt index 0fdfc5633a..9f5d4324fd 100644 --- a/ydb/core/kqp/opt/peephole/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/opt/peephole/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/peephole/CMakeLists.linux.txt b/ydb/core/kqp/opt/peephole/CMakeLists.linux.txt index 0fdfc5633a..9f5d4324fd 100644 --- a/ydb/core/kqp/opt/peephole/CMakeLists.linux.txt +++ b/ydb/core/kqp/opt/peephole/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/peephole/CMakeLists.txt b/ydb/core/kqp/opt/peephole/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/opt/peephole/CMakeLists.txt +++ b/ydb/core/kqp/opt/peephole/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/physical/CMakeLists.darwin.txt b/ydb/core/kqp/opt/physical/CMakeLists.darwin.txt index 586055a4ea..1a25f18234 100644 --- a/ydb/core/kqp/opt/physical/CMakeLists.darwin.txt +++ b/ydb/core/kqp/opt/physical/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/physical/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/opt/physical/CMakeLists.linux-aarch64.txt index 999edcb835..2662cfd7a6 100644 --- a/ydb/core/kqp/opt/physical/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/opt/physical/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/physical/CMakeLists.linux.txt b/ydb/core/kqp/opt/physical/CMakeLists.linux.txt index 999edcb835..2662cfd7a6 100644 --- a/ydb/core/kqp/opt/physical/CMakeLists.linux.txt +++ b/ydb/core/kqp/opt/physical/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/physical/CMakeLists.txt b/ydb/core/kqp/opt/physical/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/opt/physical/CMakeLists.txt +++ b/ydb/core/kqp/opt/physical/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/physical/effects/CMakeLists.darwin.txt b/ydb/core/kqp/opt/physical/effects/CMakeLists.darwin.txt index 3aa411d4fd..d226627416 100644 --- a/ydb/core/kqp/opt/physical/effects/CMakeLists.darwin.txt +++ b/ydb/core/kqp/opt/physical/effects/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/physical/effects/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/opt/physical/effects/CMakeLists.linux-aarch64.txt index aa84253bc8..761997487e 100644 --- a/ydb/core/kqp/opt/physical/effects/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/opt/physical/effects/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/physical/effects/CMakeLists.linux.txt b/ydb/core/kqp/opt/physical/effects/CMakeLists.linux.txt index aa84253bc8..761997487e 100644 --- a/ydb/core/kqp/opt/physical/effects/CMakeLists.linux.txt +++ b/ydb/core/kqp/opt/physical/effects/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/opt/physical/effects/CMakeLists.txt b/ydb/core/kqp/opt/physical/effects/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/opt/physical/effects/CMakeLists.txt +++ b/ydb/core/kqp/opt/physical/effects/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/provider/CMakeLists.darwin.txt b/ydb/core/kqp/provider/CMakeLists.darwin.txt index 78868c23b2..644aa54605 100644 --- a/ydb/core/kqp/provider/CMakeLists.darwin.txt +++ b/ydb/core/kqp/provider/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/provider/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/provider/CMakeLists.linux-aarch64.txt index 53be60b082..aa5f414c69 100644 --- a/ydb/core/kqp/provider/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/provider/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/provider/CMakeLists.linux.txt b/ydb/core/kqp/provider/CMakeLists.linux.txt index 53be60b082..aa5f414c69 100644 --- a/ydb/core/kqp/provider/CMakeLists.linux.txt +++ b/ydb/core/kqp/provider/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/provider/CMakeLists.txt b/ydb/core/kqp/provider/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/provider/CMakeLists.txt +++ b/ydb/core/kqp/provider/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/provider/ut/CMakeLists.darwin.txt b/ydb/core/kqp/provider/ut/CMakeLists.darwin.txt index 49a6a686d1..83c6fdcd34 100644 --- a/ydb/core/kqp/provider/ut/CMakeLists.darwin.txt +++ b/ydb/core/kqp/provider/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/provider/ut/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/provider/ut/CMakeLists.linux-aarch64.txt index d6439cac53..097d2e9902 100644 --- a/ydb/core/kqp/provider/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/provider/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/provider/ut/CMakeLists.linux.txt b/ydb/core/kqp/provider/ut/CMakeLists.linux.txt index 7ae153b368..5b846abd63 100644 --- a/ydb/core/kqp/provider/ut/CMakeLists.linux.txt +++ b/ydb/core/kqp/provider/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/provider/ut/CMakeLists.txt b/ydb/core/kqp/provider/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/provider/ut/CMakeLists.txt +++ b/ydb/core/kqp/provider/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/proxy_service/CMakeLists.darwin.txt b/ydb/core/kqp/proxy_service/CMakeLists.darwin.txt index 1727ae8f2e..1c0bbdf2ff 100644 --- a/ydb/core/kqp/proxy_service/CMakeLists.darwin.txt +++ b/ydb/core/kqp/proxy_service/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/proxy_service/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/proxy_service/CMakeLists.linux-aarch64.txt index c6c241777f..60d88c62cc 100644 --- a/ydb/core/kqp/proxy_service/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/proxy_service/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/proxy_service/CMakeLists.linux.txt b/ydb/core/kqp/proxy_service/CMakeLists.linux.txt index c6c241777f..60d88c62cc 100644 --- a/ydb/core/kqp/proxy_service/CMakeLists.linux.txt +++ b/ydb/core/kqp/proxy_service/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/proxy_service/CMakeLists.txt b/ydb/core/kqp/proxy_service/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/proxy_service/CMakeLists.txt +++ b/ydb/core/kqp/proxy_service/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/proxy_service/ut/CMakeLists.darwin.txt b/ydb/core/kqp/proxy_service/ut/CMakeLists.darwin.txt index 20200d7889..4c86233743 100644 --- a/ydb/core/kqp/proxy_service/ut/CMakeLists.darwin.txt +++ b/ydb/core/kqp/proxy_service/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/proxy_service/ut/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/proxy_service/ut/CMakeLists.linux-aarch64.txt index 24caf4a4ab..5d906792c4 100644 --- a/ydb/core/kqp/proxy_service/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/proxy_service/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/proxy_service/ut/CMakeLists.linux.txt b/ydb/core/kqp/proxy_service/ut/CMakeLists.linux.txt index 9d322fd09e..697c26f595 100644 --- a/ydb/core/kqp/proxy_service/ut/CMakeLists.linux.txt +++ b/ydb/core/kqp/proxy_service/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/proxy_service/ut/CMakeLists.txt b/ydb/core/kqp/proxy_service/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/proxy_service/ut/CMakeLists.txt +++ b/ydb/core/kqp/proxy_service/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/query_compiler/CMakeLists.darwin.txt b/ydb/core/kqp/query_compiler/CMakeLists.darwin.txt index fb9370d043..c848e589bd 100644 --- a/ydb/core/kqp/query_compiler/CMakeLists.darwin.txt +++ b/ydb/core/kqp/query_compiler/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/query_compiler/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/query_compiler/CMakeLists.linux-aarch64.txt index cb348af439..bd6045c8f0 100644 --- a/ydb/core/kqp/query_compiler/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/query_compiler/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/query_compiler/CMakeLists.linux.txt b/ydb/core/kqp/query_compiler/CMakeLists.linux.txt index cb348af439..bd6045c8f0 100644 --- a/ydb/core/kqp/query_compiler/CMakeLists.linux.txt +++ b/ydb/core/kqp/query_compiler/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/query_compiler/CMakeLists.txt b/ydb/core/kqp/query_compiler/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/query_compiler/CMakeLists.txt +++ b/ydb/core/kqp/query_compiler/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/rm_service/CMakeLists.darwin.txt b/ydb/core/kqp/rm_service/CMakeLists.darwin.txt index 2f3e30dd4d..316317ff2f 100644 --- a/ydb/core/kqp/rm_service/CMakeLists.darwin.txt +++ b/ydb/core/kqp/rm_service/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/rm_service/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/rm_service/CMakeLists.linux-aarch64.txt index 4b9aaf7e99..8f967d11b7 100644 --- a/ydb/core/kqp/rm_service/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/rm_service/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/rm_service/CMakeLists.linux.txt b/ydb/core/kqp/rm_service/CMakeLists.linux.txt index 4b9aaf7e99..8f967d11b7 100644 --- a/ydb/core/kqp/rm_service/CMakeLists.linux.txt +++ b/ydb/core/kqp/rm_service/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/rm_service/CMakeLists.txt b/ydb/core/kqp/rm_service/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/rm_service/CMakeLists.txt +++ b/ydb/core/kqp/rm_service/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/rm_service/ut/CMakeLists.darwin.txt b/ydb/core/kqp/rm_service/ut/CMakeLists.darwin.txt index e7b1b20850..4a304c97fa 100644 --- a/ydb/core/kqp/rm_service/ut/CMakeLists.darwin.txt +++ b/ydb/core/kqp/rm_service/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/rm_service/ut/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/rm_service/ut/CMakeLists.linux-aarch64.txt index 1cb51d4b88..13b931034c 100644 --- a/ydb/core/kqp/rm_service/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/rm_service/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/rm_service/ut/CMakeLists.linux.txt b/ydb/core/kqp/rm_service/ut/CMakeLists.linux.txt index 5b3df0e454..33fbfe9fd4 100644 --- a/ydb/core/kqp/rm_service/ut/CMakeLists.linux.txt +++ b/ydb/core/kqp/rm_service/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/rm_service/ut/CMakeLists.txt b/ydb/core/kqp/rm_service/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/rm_service/ut/CMakeLists.txt +++ b/ydb/core/kqp/rm_service/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/runtime/CMakeLists.darwin.txt b/ydb/core/kqp/runtime/CMakeLists.darwin.txt index 3f0643e6e8..d3e2d3f197 100644 --- a/ydb/core/kqp/runtime/CMakeLists.darwin.txt +++ b/ydb/core/kqp/runtime/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/runtime/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/runtime/CMakeLists.linux-aarch64.txt index 7dee34ab15..f2ad284482 100644 --- a/ydb/core/kqp/runtime/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/runtime/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/runtime/CMakeLists.linux.txt b/ydb/core/kqp/runtime/CMakeLists.linux.txt index 7dee34ab15..f2ad284482 100644 --- a/ydb/core/kqp/runtime/CMakeLists.linux.txt +++ b/ydb/core/kqp/runtime/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/runtime/CMakeLists.txt b/ydb/core/kqp/runtime/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/runtime/CMakeLists.txt +++ b/ydb/core/kqp/runtime/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/runtime/ut/CMakeLists.darwin.txt b/ydb/core/kqp/runtime/ut/CMakeLists.darwin.txt index deae8ecaa2..e2a8cbe172 100644 --- a/ydb/core/kqp/runtime/ut/CMakeLists.darwin.txt +++ b/ydb/core/kqp/runtime/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/runtime/ut/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/runtime/ut/CMakeLists.linux-aarch64.txt index c11f2da95e..da8ff56bdd 100644 --- a/ydb/core/kqp/runtime/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/runtime/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/runtime/ut/CMakeLists.linux.txt b/ydb/core/kqp/runtime/ut/CMakeLists.linux.txt index 2f3413bbbd..9c64b23840 100644 --- a/ydb/core/kqp/runtime/ut/CMakeLists.linux.txt +++ b/ydb/core/kqp/runtime/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/runtime/ut/CMakeLists.txt b/ydb/core/kqp/runtime/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/runtime/ut/CMakeLists.txt +++ b/ydb/core/kqp/runtime/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/session_actor/CMakeLists.darwin.txt b/ydb/core/kqp/session_actor/CMakeLists.darwin.txt index 44a02a9706..3d7c558e40 100644 --- a/ydb/core/kqp/session_actor/CMakeLists.darwin.txt +++ b/ydb/core/kqp/session_actor/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/session_actor/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/session_actor/CMakeLists.linux-aarch64.txt index 1f590542cb..cb89198b2e 100644 --- a/ydb/core/kqp/session_actor/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/session_actor/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/session_actor/CMakeLists.linux.txt b/ydb/core/kqp/session_actor/CMakeLists.linux.txt index 1f590542cb..cb89198b2e 100644 --- a/ydb/core/kqp/session_actor/CMakeLists.linux.txt +++ b/ydb/core/kqp/session_actor/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/session_actor/CMakeLists.txt b/ydb/core/kqp/session_actor/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/session_actor/CMakeLists.txt +++ b/ydb/core/kqp/session_actor/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/topics/CMakeLists.darwin.txt b/ydb/core/kqp/topics/CMakeLists.darwin.txt index 2133b6b0e3..3bd77195ea 100644 --- a/ydb/core/kqp/topics/CMakeLists.darwin.txt +++ b/ydb/core/kqp/topics/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/topics/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/topics/CMakeLists.linux-aarch64.txt index 5eb4bc1a3c..f3a8e98bf8 100644 --- a/ydb/core/kqp/topics/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/topics/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/topics/CMakeLists.linux.txt b/ydb/core/kqp/topics/CMakeLists.linux.txt index 5eb4bc1a3c..f3a8e98bf8 100644 --- a/ydb/core/kqp/topics/CMakeLists.linux.txt +++ b/ydb/core/kqp/topics/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/topics/CMakeLists.txt b/ydb/core/kqp/topics/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/topics/CMakeLists.txt +++ b/ydb/core/kqp/topics/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/CMakeLists.txt b/ydb/core/kqp/ut/CMakeLists.txt index 656d7c7b6e..c5c9fca340 100644 --- a/ydb/core/kqp/ut/CMakeLists.txt +++ b/ydb/core/kqp/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/arrow/CMakeLists.darwin.txt b/ydb/core/kqp/ut/arrow/CMakeLists.darwin.txt index f491d04941..1aaba9ec92 100644 --- a/ydb/core/kqp/ut/arrow/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/arrow/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/arrow/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/arrow/CMakeLists.linux-aarch64.txt index 5e57e1180f..e4a990ac49 100644 --- a/ydb/core/kqp/ut/arrow/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/arrow/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/arrow/CMakeLists.linux.txt b/ydb/core/kqp/ut/arrow/CMakeLists.linux.txt index 9d6822fb9f..e4efc793e3 100644 --- a/ydb/core/kqp/ut/arrow/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/arrow/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/arrow/CMakeLists.txt b/ydb/core/kqp/ut/arrow/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/arrow/CMakeLists.txt +++ b/ydb/core/kqp/ut/arrow/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/common/CMakeLists.darwin.txt b/ydb/core/kqp/ut/common/CMakeLists.darwin.txt index ca9b96e849..fd14efe2ef 100644 --- a/ydb/core/kqp/ut/common/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/common/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/common/CMakeLists.linux-aarch64.txt index 4f6c34f949..6f4af35c96 100644 --- a/ydb/core/kqp/ut/common/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/common/CMakeLists.linux.txt b/ydb/core/kqp/ut/common/CMakeLists.linux.txt index 4f6c34f949..6f4af35c96 100644 --- a/ydb/core/kqp/ut/common/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/common/CMakeLists.txt b/ydb/core/kqp/ut/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/common/CMakeLists.txt +++ b/ydb/core/kqp/ut/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/effects/CMakeLists.darwin.txt b/ydb/core/kqp/ut/effects/CMakeLists.darwin.txt index 7928cdf0c4..92e24a5b50 100644 --- a/ydb/core/kqp/ut/effects/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/effects/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/effects/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/effects/CMakeLists.linux-aarch64.txt index 01af7d9bfe..393c9af4bb 100644 --- a/ydb/core/kqp/ut/effects/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/effects/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/effects/CMakeLists.linux.txt b/ydb/core/kqp/ut/effects/CMakeLists.linux.txt index 63f6f887e4..ab17f019e7 100644 --- a/ydb/core/kqp/ut/effects/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/effects/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/effects/CMakeLists.txt b/ydb/core/kqp/ut/effects/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/effects/CMakeLists.txt +++ b/ydb/core/kqp/ut/effects/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/indexes/CMakeLists.darwin.txt b/ydb/core/kqp/ut/indexes/CMakeLists.darwin.txt index f9f72bc869..a8c9f5b600 100644 --- a/ydb/core/kqp/ut/indexes/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/indexes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/indexes/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/indexes/CMakeLists.linux-aarch64.txt index 57d795221e..8c5599f0c8 100644 --- a/ydb/core/kqp/ut/indexes/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/indexes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/indexes/CMakeLists.linux.txt b/ydb/core/kqp/ut/indexes/CMakeLists.linux.txt index 1453d328b0..42fe49cfb4 100644 --- a/ydb/core/kqp/ut/indexes/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/indexes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/indexes/CMakeLists.txt b/ydb/core/kqp/ut/indexes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/indexes/CMakeLists.txt +++ b/ydb/core/kqp/ut/indexes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/join/CMakeLists.darwin.txt b/ydb/core/kqp/ut/join/CMakeLists.darwin.txt index cb2b0f8fdd..718146c3fa 100644 --- a/ydb/core/kqp/ut/join/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/join/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/join/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/join/CMakeLists.linux-aarch64.txt index c6fc9c62b8..35beef55ad 100644 --- a/ydb/core/kqp/ut/join/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/join/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/join/CMakeLists.linux.txt b/ydb/core/kqp/ut/join/CMakeLists.linux.txt index 434b0715c1..c21a9868bd 100644 --- a/ydb/core/kqp/ut/join/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/join/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/join/CMakeLists.txt b/ydb/core/kqp/ut/join/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/join/CMakeLists.txt +++ b/ydb/core/kqp/ut/join/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/olap/CMakeLists.darwin.txt b/ydb/core/kqp/ut/olap/CMakeLists.darwin.txt index 49a561121e..6fc483c91c 100644 --- a/ydb/core/kqp/ut/olap/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/olap/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/olap/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/olap/CMakeLists.linux-aarch64.txt index 606ac2b245..a9d512fff5 100644 --- a/ydb/core/kqp/ut/olap/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/olap/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/olap/CMakeLists.linux.txt b/ydb/core/kqp/ut/olap/CMakeLists.linux.txt index e5383fecbd..68112a28bf 100644 --- a/ydb/core/kqp/ut/olap/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/olap/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/olap/CMakeLists.txt b/ydb/core/kqp/ut/olap/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/olap/CMakeLists.txt +++ b/ydb/core/kqp/ut/olap/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/opt/CMakeLists.darwin.txt b/ydb/core/kqp/ut/opt/CMakeLists.darwin.txt index 3b0df221ab..87a449ba66 100644 --- a/ydb/core/kqp/ut/opt/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/opt/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/opt/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/opt/CMakeLists.linux-aarch64.txt index de6af2b371..8746a2fe48 100644 --- a/ydb/core/kqp/ut/opt/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/opt/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/opt/CMakeLists.linux.txt b/ydb/core/kqp/ut/opt/CMakeLists.linux.txt index c24994ff91..c3d26b0ca4 100644 --- a/ydb/core/kqp/ut/opt/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/opt/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/opt/CMakeLists.txt b/ydb/core/kqp/ut/opt/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/opt/CMakeLists.txt +++ b/ydb/core/kqp/ut/opt/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/perf/CMakeLists.darwin.txt b/ydb/core/kqp/ut/perf/CMakeLists.darwin.txt index aed02254ef..f15160331e 100644 --- a/ydb/core/kqp/ut/perf/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/perf/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/perf/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/perf/CMakeLists.linux-aarch64.txt index 5bece16771..a68891459a 100644 --- a/ydb/core/kqp/ut/perf/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/perf/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/perf/CMakeLists.linux.txt b/ydb/core/kqp/ut/perf/CMakeLists.linux.txt index 6df07cca93..644e51850b 100644 --- a/ydb/core/kqp/ut/perf/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/perf/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/perf/CMakeLists.txt b/ydb/core/kqp/ut/perf/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/perf/CMakeLists.txt +++ b/ydb/core/kqp/ut/perf/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/pg/CMakeLists.darwin.txt b/ydb/core/kqp/ut/pg/CMakeLists.darwin.txt index d9be4ac245..42bc4b2b5a 100644 --- a/ydb/core/kqp/ut/pg/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/pg/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/pg/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/pg/CMakeLists.linux-aarch64.txt index fdcd09000d..6634c27b40 100644 --- a/ydb/core/kqp/ut/pg/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/pg/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/pg/CMakeLists.linux.txt b/ydb/core/kqp/ut/pg/CMakeLists.linux.txt index 622e8843ce..135b33a23b 100644 --- a/ydb/core/kqp/ut/pg/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/pg/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/pg/CMakeLists.txt b/ydb/core/kqp/ut/pg/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/pg/CMakeLists.txt +++ b/ydb/core/kqp/ut/pg/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/query/CMakeLists.darwin.txt b/ydb/core/kqp/ut/query/CMakeLists.darwin.txt index 74a17aa7a1..b76140eaac 100644 --- a/ydb/core/kqp/ut/query/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/query/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/query/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/query/CMakeLists.linux-aarch64.txt index 7daec17c78..9869a85096 100644 --- a/ydb/core/kqp/ut/query/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/query/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/query/CMakeLists.linux.txt b/ydb/core/kqp/ut/query/CMakeLists.linux.txt index e695796565..67a887a4b8 100644 --- a/ydb/core/kqp/ut/query/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/query/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/query/CMakeLists.txt b/ydb/core/kqp/ut/query/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/query/CMakeLists.txt +++ b/ydb/core/kqp/ut/query/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/scan/CMakeLists.darwin.txt b/ydb/core/kqp/ut/scan/CMakeLists.darwin.txt index 51d863e82f..204711ca66 100644 --- a/ydb/core/kqp/ut/scan/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/scan/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/scan/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/scan/CMakeLists.linux-aarch64.txt index 2420b3c41e..ac23f4b093 100644 --- a/ydb/core/kqp/ut/scan/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/scan/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/scan/CMakeLists.linux.txt b/ydb/core/kqp/ut/scan/CMakeLists.linux.txt index 49ccb304d5..dd097e8bc5 100644 --- a/ydb/core/kqp/ut/scan/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/scan/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/scan/CMakeLists.txt b/ydb/core/kqp/ut/scan/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/scan/CMakeLists.txt +++ b/ydb/core/kqp/ut/scan/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/scheme/CMakeLists.darwin.txt b/ydb/core/kqp/ut/scheme/CMakeLists.darwin.txt index 1bbfffd6af..1422fb2f3c 100644 --- a/ydb/core/kqp/ut/scheme/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/scheme/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/scheme/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/scheme/CMakeLists.linux-aarch64.txt index 7f0e24683c..7b0dbba6d1 100644 --- a/ydb/core/kqp/ut/scheme/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/scheme/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/scheme/CMakeLists.linux.txt b/ydb/core/kqp/ut/scheme/CMakeLists.linux.txt index 27b2e250df..8f45ac664c 100644 --- a/ydb/core/kqp/ut/scheme/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/scheme/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/scheme/CMakeLists.txt b/ydb/core/kqp/ut/scheme/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/scheme/CMakeLists.txt +++ b/ydb/core/kqp/ut/scheme/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/service/CMakeLists.darwin.txt b/ydb/core/kqp/ut/service/CMakeLists.darwin.txt index dd508390b9..6abafd5f8f 100644 --- a/ydb/core/kqp/ut/service/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/service/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/service/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/service/CMakeLists.linux-aarch64.txt index 40ec0e2702..7b12343b31 100644 --- a/ydb/core/kqp/ut/service/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/service/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/service/CMakeLists.linux.txt b/ydb/core/kqp/ut/service/CMakeLists.linux.txt index 43db5b00b2..e4110ab556 100644 --- a/ydb/core/kqp/ut/service/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/service/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/service/CMakeLists.txt b/ydb/core/kqp/ut/service/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/service/CMakeLists.txt +++ b/ydb/core/kqp/ut/service/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/spilling/CMakeLists.darwin.txt b/ydb/core/kqp/ut/spilling/CMakeLists.darwin.txt index 26e90b0523..c72f6fea58 100644 --- a/ydb/core/kqp/ut/spilling/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/spilling/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/spilling/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/spilling/CMakeLists.linux-aarch64.txt index b38622c47e..fc78b78fab 100644 --- a/ydb/core/kqp/ut/spilling/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/spilling/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/spilling/CMakeLists.linux.txt b/ydb/core/kqp/ut/spilling/CMakeLists.linux.txt index 5e529c0479..7a9e54c6fe 100644 --- a/ydb/core/kqp/ut/spilling/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/spilling/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/spilling/CMakeLists.txt b/ydb/core/kqp/ut/spilling/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/spilling/CMakeLists.txt +++ b/ydb/core/kqp/ut/spilling/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/sysview/CMakeLists.darwin.txt b/ydb/core/kqp/ut/sysview/CMakeLists.darwin.txt index 18fd5e0741..325a1a67c2 100644 --- a/ydb/core/kqp/ut/sysview/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/sysview/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/sysview/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/sysview/CMakeLists.linux-aarch64.txt index b54fc1e42a..3724a28349 100644 --- a/ydb/core/kqp/ut/sysview/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/sysview/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/sysview/CMakeLists.linux.txt b/ydb/core/kqp/ut/sysview/CMakeLists.linux.txt index c4144956c6..76a5623ead 100644 --- a/ydb/core/kqp/ut/sysview/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/sysview/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/sysview/CMakeLists.txt b/ydb/core/kqp/ut/sysview/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/sysview/CMakeLists.txt +++ b/ydb/core/kqp/ut/sysview/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/tx/CMakeLists.darwin.txt b/ydb/core/kqp/ut/tx/CMakeLists.darwin.txt index cc70c540d6..f4c2e4eca2 100644 --- a/ydb/core/kqp/ut/tx/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/tx/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/tx/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/tx/CMakeLists.linux-aarch64.txt index 96a3a41728..e01bb50fc2 100644 --- a/ydb/core/kqp/ut/tx/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/tx/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/tx/CMakeLists.linux.txt b/ydb/core/kqp/ut/tx/CMakeLists.linux.txt index 9ab5402f37..2e4408da02 100644 --- a/ydb/core/kqp/ut/tx/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/tx/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/tx/CMakeLists.txt b/ydb/core/kqp/ut/tx/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/tx/CMakeLists.txt +++ b/ydb/core/kqp/ut/tx/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/yql/CMakeLists.darwin.txt b/ydb/core/kqp/ut/yql/CMakeLists.darwin.txt index e523d7c3f4..d15fd1deb0 100644 --- a/ydb/core/kqp/ut/yql/CMakeLists.darwin.txt +++ b/ydb/core/kqp/ut/yql/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/yql/CMakeLists.linux-aarch64.txt b/ydb/core/kqp/ut/yql/CMakeLists.linux-aarch64.txt index 537513cf25..9e354ae21f 100644 --- a/ydb/core/kqp/ut/yql/CMakeLists.linux-aarch64.txt +++ b/ydb/core/kqp/ut/yql/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/yql/CMakeLists.linux.txt b/ydb/core/kqp/ut/yql/CMakeLists.linux.txt index 07ced3e37c..437af3bcb5 100644 --- a/ydb/core/kqp/ut/yql/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/yql/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/kqp/ut/yql/CMakeLists.txt b/ydb/core/kqp/ut/yql/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/kqp/ut/yql/CMakeLists.txt +++ b/ydb/core/kqp/ut/yql/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/load_test/CMakeLists.darwin.txt b/ydb/core/load_test/CMakeLists.darwin.txt index 478623a532..2347724689 100644 --- a/ydb/core/load_test/CMakeLists.darwin.txt +++ b/ydb/core/load_test/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/load_test/CMakeLists.linux-aarch64.txt b/ydb/core/load_test/CMakeLists.linux-aarch64.txt index 598df6875e..0968220b4d 100644 --- a/ydb/core/load_test/CMakeLists.linux-aarch64.txt +++ b/ydb/core/load_test/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/load_test/CMakeLists.linux.txt b/ydb/core/load_test/CMakeLists.linux.txt index 598df6875e..0968220b4d 100644 --- a/ydb/core/load_test/CMakeLists.linux.txt +++ b/ydb/core/load_test/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/load_test/CMakeLists.txt b/ydb/core/load_test/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/load_test/CMakeLists.txt +++ b/ydb/core/load_test/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/load_test/ut_ycsb/CMakeLists.darwin.txt b/ydb/core/load_test/ut_ycsb/CMakeLists.darwin.txt index ec0116a041..ca874b8b13 100644 --- a/ydb/core/load_test/ut_ycsb/CMakeLists.darwin.txt +++ b/ydb/core/load_test/ut_ycsb/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/load_test/ut_ycsb/CMakeLists.linux-aarch64.txt b/ydb/core/load_test/ut_ycsb/CMakeLists.linux-aarch64.txt index 58d76a0121..728763fd3c 100644 --- a/ydb/core/load_test/ut_ycsb/CMakeLists.linux-aarch64.txt +++ b/ydb/core/load_test/ut_ycsb/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/load_test/ut_ycsb/CMakeLists.linux.txt b/ydb/core/load_test/ut_ycsb/CMakeLists.linux.txt index ad2a3c7a13..35c734b79b 100644 --- a/ydb/core/load_test/ut_ycsb/CMakeLists.linux.txt +++ b/ydb/core/load_test/ut_ycsb/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/load_test/ut_ycsb/CMakeLists.txt b/ydb/core/load_test/ut_ycsb/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/load_test/ut_ycsb/CMakeLists.txt +++ b/ydb/core/load_test/ut_ycsb/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/metering/CMakeLists.darwin.txt b/ydb/core/metering/CMakeLists.darwin.txt index 9d767ff495..030f3e2d37 100644 --- a/ydb/core/metering/CMakeLists.darwin.txt +++ b/ydb/core/metering/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/metering/CMakeLists.linux-aarch64.txt b/ydb/core/metering/CMakeLists.linux-aarch64.txt index 19770fe441..6a5da52518 100644 --- a/ydb/core/metering/CMakeLists.linux-aarch64.txt +++ b/ydb/core/metering/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/metering/CMakeLists.linux.txt b/ydb/core/metering/CMakeLists.linux.txt index 19770fe441..6a5da52518 100644 --- a/ydb/core/metering/CMakeLists.linux.txt +++ b/ydb/core/metering/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/metering/CMakeLists.txt b/ydb/core/metering/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/metering/CMakeLists.txt +++ b/ydb/core/metering/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/metering/ut/CMakeLists.darwin.txt b/ydb/core/metering/ut/CMakeLists.darwin.txt index 892e242993..d46eaa2639 100644 --- a/ydb/core/metering/ut/CMakeLists.darwin.txt +++ b/ydb/core/metering/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/metering/ut/CMakeLists.linux-aarch64.txt b/ydb/core/metering/ut/CMakeLists.linux-aarch64.txt index 6a297030c6..9233a785b9 100644 --- a/ydb/core/metering/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/metering/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/metering/ut/CMakeLists.linux.txt b/ydb/core/metering/ut/CMakeLists.linux.txt index 7fbf1a9a76..4b92723197 100644 --- a/ydb/core/metering/ut/CMakeLists.linux.txt +++ b/ydb/core/metering/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/metering/ut/CMakeLists.txt b/ydb/core/metering/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/metering/ut/CMakeLists.txt +++ b/ydb/core/metering/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/CMakeLists.darwin.txt b/ydb/core/mind/CMakeLists.darwin.txt index 3145ef92cc..cf47982546 100644 --- a/ydb/core/mind/CMakeLists.darwin.txt +++ b/ydb/core/mind/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/CMakeLists.linux-aarch64.txt b/ydb/core/mind/CMakeLists.linux-aarch64.txt index e9de531cb4..0b52905853 100644 --- a/ydb/core/mind/CMakeLists.linux-aarch64.txt +++ b/ydb/core/mind/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/CMakeLists.linux.txt b/ydb/core/mind/CMakeLists.linux.txt index e9de531cb4..0b52905853 100644 --- a/ydb/core/mind/CMakeLists.linux.txt +++ b/ydb/core/mind/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/CMakeLists.txt b/ydb/core/mind/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/mind/CMakeLists.txt +++ b/ydb/core/mind/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/address_classification/CMakeLists.darwin.txt b/ydb/core/mind/address_classification/CMakeLists.darwin.txt index 818cbc56b8..24d9ef0395 100644 --- a/ydb/core/mind/address_classification/CMakeLists.darwin.txt +++ b/ydb/core/mind/address_classification/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/address_classification/CMakeLists.linux-aarch64.txt b/ydb/core/mind/address_classification/CMakeLists.linux-aarch64.txt index d84b043a08..feab362019 100644 --- a/ydb/core/mind/address_classification/CMakeLists.linux-aarch64.txt +++ b/ydb/core/mind/address_classification/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/address_classification/CMakeLists.linux.txt b/ydb/core/mind/address_classification/CMakeLists.linux.txt index d84b043a08..feab362019 100644 --- a/ydb/core/mind/address_classification/CMakeLists.linux.txt +++ b/ydb/core/mind/address_classification/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/address_classification/CMakeLists.txt b/ydb/core/mind/address_classification/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/mind/address_classification/CMakeLists.txt +++ b/ydb/core/mind/address_classification/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/address_classification/ut/CMakeLists.darwin.txt b/ydb/core/mind/address_classification/ut/CMakeLists.darwin.txt index 7ba877b496..2954d31675 100644 --- a/ydb/core/mind/address_classification/ut/CMakeLists.darwin.txt +++ b/ydb/core/mind/address_classification/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/address_classification/ut/CMakeLists.linux-aarch64.txt b/ydb/core/mind/address_classification/ut/CMakeLists.linux-aarch64.txt index 2aafb4821f..69edf734c6 100644 --- a/ydb/core/mind/address_classification/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/mind/address_classification/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/address_classification/ut/CMakeLists.linux.txt b/ydb/core/mind/address_classification/ut/CMakeLists.linux.txt index 6449de5e51..bcc4fae78e 100644 --- a/ydb/core/mind/address_classification/ut/CMakeLists.linux.txt +++ b/ydb/core/mind/address_classification/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/address_classification/ut/CMakeLists.txt b/ydb/core/mind/address_classification/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/mind/address_classification/ut/CMakeLists.txt +++ b/ydb/core/mind/address_classification/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/CMakeLists.darwin.txt b/ydb/core/mind/bscontroller/CMakeLists.darwin.txt index 172eeee1d5..29efd0a407 100644 --- a/ydb/core/mind/bscontroller/CMakeLists.darwin.txt +++ b/ydb/core/mind/bscontroller/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/CMakeLists.linux-aarch64.txt b/ydb/core/mind/bscontroller/CMakeLists.linux-aarch64.txt index 2d0fcb29f3..a7dfc9839c 100644 --- a/ydb/core/mind/bscontroller/CMakeLists.linux-aarch64.txt +++ b/ydb/core/mind/bscontroller/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/CMakeLists.linux.txt b/ydb/core/mind/bscontroller/CMakeLists.linux.txt index 2d0fcb29f3..a7dfc9839c 100644 --- a/ydb/core/mind/bscontroller/CMakeLists.linux.txt +++ b/ydb/core/mind/bscontroller/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/CMakeLists.txt b/ydb/core/mind/bscontroller/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/mind/bscontroller/CMakeLists.txt +++ b/ydb/core/mind/bscontroller/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/ut/CMakeLists.darwin.txt b/ydb/core/mind/bscontroller/ut/CMakeLists.darwin.txt index 9596b2d708..6fe927882a 100644 --- a/ydb/core/mind/bscontroller/ut/CMakeLists.darwin.txt +++ b/ydb/core/mind/bscontroller/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/ut/CMakeLists.linux-aarch64.txt b/ydb/core/mind/bscontroller/ut/CMakeLists.linux-aarch64.txt index f08f77921d..09bef15989 100644 --- a/ydb/core/mind/bscontroller/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/mind/bscontroller/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/ut/CMakeLists.linux.txt b/ydb/core/mind/bscontroller/ut/CMakeLists.linux.txt index af6b28e6e5..91c55a78be 100644 --- a/ydb/core/mind/bscontroller/ut/CMakeLists.linux.txt +++ b/ydb/core/mind/bscontroller/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/ut/CMakeLists.txt b/ydb/core/mind/bscontroller/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/mind/bscontroller/ut/CMakeLists.txt +++ b/ydb/core/mind/bscontroller/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.darwin.txt b/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.darwin.txt index 3c604e326e..e694b113e7 100644 --- a/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.darwin.txt +++ b/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.linux-aarch64.txt b/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.linux-aarch64.txt index 5c3118d209..e1fbd2b9a7 100644 --- a/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.linux-aarch64.txt +++ b/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.linux.txt b/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.linux.txt index d30ccd2164..eaa9ec333c 100644 --- a/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.linux.txt +++ b/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.txt b/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.txt +++ b/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.darwin.txt b/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.darwin.txt index 4d7c639883..528032ca27 100644 --- a/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.darwin.txt +++ b/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.linux-aarch64.txt b/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.linux-aarch64.txt index 0d62e9a2c6..a1a9414257 100644 --- a/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.linux-aarch64.txt +++ b/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.linux.txt b/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.linux.txt index fea01a97e2..5b0ea1e47e 100644 --- a/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.linux.txt +++ b/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.txt b/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.txt +++ b/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/hive/CMakeLists.darwin.txt b/ydb/core/mind/hive/CMakeLists.darwin.txt index 77c04bfa27..381f98c0bb 100644 --- a/ydb/core/mind/hive/CMakeLists.darwin.txt +++ b/ydb/core/mind/hive/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/hive/CMakeLists.linux-aarch64.txt b/ydb/core/mind/hive/CMakeLists.linux-aarch64.txt index 25545146d1..78002d5729 100644 --- a/ydb/core/mind/hive/CMakeLists.linux-aarch64.txt +++ b/ydb/core/mind/hive/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/hive/CMakeLists.linux.txt b/ydb/core/mind/hive/CMakeLists.linux.txt index 25545146d1..78002d5729 100644 --- a/ydb/core/mind/hive/CMakeLists.linux.txt +++ b/ydb/core/mind/hive/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/hive/CMakeLists.txt b/ydb/core/mind/hive/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/mind/hive/CMakeLists.txt +++ b/ydb/core/mind/hive/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/hive/ut/CMakeLists.darwin.txt b/ydb/core/mind/hive/ut/CMakeLists.darwin.txt index 21e6e84e0f..920142c248 100644 --- a/ydb/core/mind/hive/ut/CMakeLists.darwin.txt +++ b/ydb/core/mind/hive/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/hive/ut/CMakeLists.linux-aarch64.txt b/ydb/core/mind/hive/ut/CMakeLists.linux-aarch64.txt index d372e3062e..fd3f25ea3d 100644 --- a/ydb/core/mind/hive/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/mind/hive/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/hive/ut/CMakeLists.linux.txt b/ydb/core/mind/hive/ut/CMakeLists.linux.txt index 2b28962890..38c8cca435 100644 --- a/ydb/core/mind/hive/ut/CMakeLists.linux.txt +++ b/ydb/core/mind/hive/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/hive/ut/CMakeLists.txt b/ydb/core/mind/hive/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/mind/hive/ut/CMakeLists.txt +++ b/ydb/core/mind/hive/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/ut/CMakeLists.darwin.txt b/ydb/core/mind/ut/CMakeLists.darwin.txt index 807a6fcabe..de9158e7ed 100644 --- a/ydb/core/mind/ut/CMakeLists.darwin.txt +++ b/ydb/core/mind/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/ut/CMakeLists.linux-aarch64.txt b/ydb/core/mind/ut/CMakeLists.linux-aarch64.txt index dfc5392216..f02658d70a 100644 --- a/ydb/core/mind/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/mind/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/ut/CMakeLists.linux.txt b/ydb/core/mind/ut/CMakeLists.linux.txt index aca88d41a7..15c8975d6b 100644 --- a/ydb/core/mind/ut/CMakeLists.linux.txt +++ b/ydb/core/mind/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/ut/CMakeLists.txt b/ydb/core/mind/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/mind/ut/CMakeLists.txt +++ b/ydb/core/mind/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/ut_fat/CMakeLists.darwin.txt b/ydb/core/mind/ut_fat/CMakeLists.darwin.txt index 6630f84c0a..dbf9dc1c3a 100644 --- a/ydb/core/mind/ut_fat/CMakeLists.darwin.txt +++ b/ydb/core/mind/ut_fat/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/ut_fat/CMakeLists.linux-aarch64.txt b/ydb/core/mind/ut_fat/CMakeLists.linux-aarch64.txt index af27bb9fe9..4ec72040af 100644 --- a/ydb/core/mind/ut_fat/CMakeLists.linux-aarch64.txt +++ b/ydb/core/mind/ut_fat/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/ut_fat/CMakeLists.linux.txt b/ydb/core/mind/ut_fat/CMakeLists.linux.txt index 43d4802a5d..05bbbbac33 100644 --- a/ydb/core/mind/ut_fat/CMakeLists.linux.txt +++ b/ydb/core/mind/ut_fat/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mind/ut_fat/CMakeLists.txt b/ydb/core/mind/ut_fat/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/mind/ut_fat/CMakeLists.txt +++ b/ydb/core/mind/ut_fat/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mon/CMakeLists.darwin.txt b/ydb/core/mon/CMakeLists.darwin.txt index 1620c5d252..fee6b631b2 100644 --- a/ydb/core/mon/CMakeLists.darwin.txt +++ b/ydb/core/mon/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mon/CMakeLists.linux-aarch64.txt b/ydb/core/mon/CMakeLists.linux-aarch64.txt index 4b8c66905d..30901ee692 100644 --- a/ydb/core/mon/CMakeLists.linux-aarch64.txt +++ b/ydb/core/mon/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mon/CMakeLists.linux.txt b/ydb/core/mon/CMakeLists.linux.txt index 4b8c66905d..30901ee692 100644 --- a/ydb/core/mon/CMakeLists.linux.txt +++ b/ydb/core/mon/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mon/CMakeLists.txt b/ydb/core/mon/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/mon/CMakeLists.txt +++ b/ydb/core/mon/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mon_alloc/CMakeLists.darwin.txt b/ydb/core/mon_alloc/CMakeLists.darwin.txt index 096e9abbbc..76a8322a60 100644 --- a/ydb/core/mon_alloc/CMakeLists.darwin.txt +++ b/ydb/core/mon_alloc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mon_alloc/CMakeLists.linux-aarch64.txt b/ydb/core/mon_alloc/CMakeLists.linux-aarch64.txt index 8b21875bd0..242c4e3705 100644 --- a/ydb/core/mon_alloc/CMakeLists.linux-aarch64.txt +++ b/ydb/core/mon_alloc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mon_alloc/CMakeLists.linux.txt b/ydb/core/mon_alloc/CMakeLists.linux.txt index 8b21875bd0..242c4e3705 100644 --- a/ydb/core/mon_alloc/CMakeLists.linux.txt +++ b/ydb/core/mon_alloc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/mon_alloc/CMakeLists.txt b/ydb/core/mon_alloc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/mon_alloc/CMakeLists.txt +++ b/ydb/core/mon_alloc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/node_whiteboard/CMakeLists.darwin.txt b/ydb/core/node_whiteboard/CMakeLists.darwin.txt index 59fedd1835..5602840318 100644 --- a/ydb/core/node_whiteboard/CMakeLists.darwin.txt +++ b/ydb/core/node_whiteboard/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/node_whiteboard/CMakeLists.linux-aarch64.txt b/ydb/core/node_whiteboard/CMakeLists.linux-aarch64.txt index efb5afc13b..1a95d9c13d 100644 --- a/ydb/core/node_whiteboard/CMakeLists.linux-aarch64.txt +++ b/ydb/core/node_whiteboard/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/node_whiteboard/CMakeLists.linux.txt b/ydb/core/node_whiteboard/CMakeLists.linux.txt index efb5afc13b..1a95d9c13d 100644 --- a/ydb/core/node_whiteboard/CMakeLists.linux.txt +++ b/ydb/core/node_whiteboard/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/node_whiteboard/CMakeLists.txt b/ydb/core/node_whiteboard/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/node_whiteboard/CMakeLists.txt +++ b/ydb/core/node_whiteboard/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/CMakeLists.darwin.txt b/ydb/core/persqueue/CMakeLists.darwin.txt index 86ca8e4206..7b9926052f 100644 --- a/ydb/core/persqueue/CMakeLists.darwin.txt +++ b/ydb/core/persqueue/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/CMakeLists.linux-aarch64.txt b/ydb/core/persqueue/CMakeLists.linux-aarch64.txt index b7fb17167d..fce2e6ac15 100644 --- a/ydb/core/persqueue/CMakeLists.linux-aarch64.txt +++ b/ydb/core/persqueue/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/CMakeLists.linux.txt b/ydb/core/persqueue/CMakeLists.linux.txt index b7fb17167d..fce2e6ac15 100644 --- a/ydb/core/persqueue/CMakeLists.linux.txt +++ b/ydb/core/persqueue/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/CMakeLists.txt b/ydb/core/persqueue/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/persqueue/CMakeLists.txt +++ b/ydb/core/persqueue/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/codecs/CMakeLists.darwin.txt b/ydb/core/persqueue/codecs/CMakeLists.darwin.txt index 8808ce7d18..06d39d1b16 100644 --- a/ydb/core/persqueue/codecs/CMakeLists.darwin.txt +++ b/ydb/core/persqueue/codecs/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/codecs/CMakeLists.linux-aarch64.txt b/ydb/core/persqueue/codecs/CMakeLists.linux-aarch64.txt index 7a7e3bb8c2..99a1af484e 100644 --- a/ydb/core/persqueue/codecs/CMakeLists.linux-aarch64.txt +++ b/ydb/core/persqueue/codecs/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/codecs/CMakeLists.linux.txt b/ydb/core/persqueue/codecs/CMakeLists.linux.txt index 7a7e3bb8c2..99a1af484e 100644 --- a/ydb/core/persqueue/codecs/CMakeLists.linux.txt +++ b/ydb/core/persqueue/codecs/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/codecs/CMakeLists.txt b/ydb/core/persqueue/codecs/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/persqueue/codecs/CMakeLists.txt +++ b/ydb/core/persqueue/codecs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/config/CMakeLists.darwin.txt b/ydb/core/persqueue/config/CMakeLists.darwin.txt index bb8c600cfd..197328427c 100644 --- a/ydb/core/persqueue/config/CMakeLists.darwin.txt +++ b/ydb/core/persqueue/config/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/config/CMakeLists.linux-aarch64.txt b/ydb/core/persqueue/config/CMakeLists.linux-aarch64.txt index 11acdcffed..af94c1e823 100644 --- a/ydb/core/persqueue/config/CMakeLists.linux-aarch64.txt +++ b/ydb/core/persqueue/config/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/config/CMakeLists.linux.txt b/ydb/core/persqueue/config/CMakeLists.linux.txt index 11acdcffed..af94c1e823 100644 --- a/ydb/core/persqueue/config/CMakeLists.linux.txt +++ b/ydb/core/persqueue/config/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/config/CMakeLists.txt b/ydb/core/persqueue/config/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/persqueue/config/CMakeLists.txt +++ b/ydb/core/persqueue/config/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/events/CMakeLists.darwin.txt b/ydb/core/persqueue/events/CMakeLists.darwin.txt index 1f75ca7aa1..d3a3f2cf37 100644 --- a/ydb/core/persqueue/events/CMakeLists.darwin.txt +++ b/ydb/core/persqueue/events/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/events/CMakeLists.linux-aarch64.txt b/ydb/core/persqueue/events/CMakeLists.linux-aarch64.txt index 3f03c09d33..1e58965269 100644 --- a/ydb/core/persqueue/events/CMakeLists.linux-aarch64.txt +++ b/ydb/core/persqueue/events/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/events/CMakeLists.linux.txt b/ydb/core/persqueue/events/CMakeLists.linux.txt index 3f03c09d33..1e58965269 100644 --- a/ydb/core/persqueue/events/CMakeLists.linux.txt +++ b/ydb/core/persqueue/events/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/events/CMakeLists.txt b/ydb/core/persqueue/events/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/persqueue/events/CMakeLists.txt +++ b/ydb/core/persqueue/events/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/partition_key_range/CMakeLists.darwin.txt b/ydb/core/persqueue/partition_key_range/CMakeLists.darwin.txt index f460f2cc2f..a43bf08617 100644 --- a/ydb/core/persqueue/partition_key_range/CMakeLists.darwin.txt +++ b/ydb/core/persqueue/partition_key_range/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/partition_key_range/CMakeLists.linux-aarch64.txt b/ydb/core/persqueue/partition_key_range/CMakeLists.linux-aarch64.txt index d3bc585e90..5ec3d2b867 100644 --- a/ydb/core/persqueue/partition_key_range/CMakeLists.linux-aarch64.txt +++ b/ydb/core/persqueue/partition_key_range/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/partition_key_range/CMakeLists.linux.txt b/ydb/core/persqueue/partition_key_range/CMakeLists.linux.txt index d3bc585e90..5ec3d2b867 100644 --- a/ydb/core/persqueue/partition_key_range/CMakeLists.linux.txt +++ b/ydb/core/persqueue/partition_key_range/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/partition_key_range/CMakeLists.txt b/ydb/core/persqueue/partition_key_range/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/persqueue/partition_key_range/CMakeLists.txt +++ b/ydb/core/persqueue/partition_key_range/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/ut/CMakeLists.darwin.txt b/ydb/core/persqueue/ut/CMakeLists.darwin.txt index 7f61cd76b3..933e71772b 100644 --- a/ydb/core/persqueue/ut/CMakeLists.darwin.txt +++ b/ydb/core/persqueue/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/ut/CMakeLists.linux-aarch64.txt b/ydb/core/persqueue/ut/CMakeLists.linux-aarch64.txt index d0c5cc9820..d0a04888cc 100644 --- a/ydb/core/persqueue/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/persqueue/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/ut/CMakeLists.linux.txt b/ydb/core/persqueue/ut/CMakeLists.linux.txt index 8874cec170..9754093eaa 100644 --- a/ydb/core/persqueue/ut/CMakeLists.linux.txt +++ b/ydb/core/persqueue/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/ut/CMakeLists.txt b/ydb/core/persqueue/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/persqueue/ut/CMakeLists.txt +++ b/ydb/core/persqueue/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/ut/common/CMakeLists.darwin.txt b/ydb/core/persqueue/ut/common/CMakeLists.darwin.txt index d62a1bc560..f398910fc5 100644 --- a/ydb/core/persqueue/ut/common/CMakeLists.darwin.txt +++ b/ydb/core/persqueue/ut/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/ut/common/CMakeLists.linux-aarch64.txt b/ydb/core/persqueue/ut/common/CMakeLists.linux-aarch64.txt index ceee853274..a533a7288d 100644 --- a/ydb/core/persqueue/ut/common/CMakeLists.linux-aarch64.txt +++ b/ydb/core/persqueue/ut/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/ut/common/CMakeLists.linux.txt b/ydb/core/persqueue/ut/common/CMakeLists.linux.txt index ceee853274..a533a7288d 100644 --- a/ydb/core/persqueue/ut/common/CMakeLists.linux.txt +++ b/ydb/core/persqueue/ut/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/ut/common/CMakeLists.txt b/ydb/core/persqueue/ut/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/persqueue/ut/common/CMakeLists.txt +++ b/ydb/core/persqueue/ut/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/ut/slow/CMakeLists.darwin.txt b/ydb/core/persqueue/ut/slow/CMakeLists.darwin.txt index dcf1335838..bd44b84216 100644 --- a/ydb/core/persqueue/ut/slow/CMakeLists.darwin.txt +++ b/ydb/core/persqueue/ut/slow/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/ut/slow/CMakeLists.linux-aarch64.txt b/ydb/core/persqueue/ut/slow/CMakeLists.linux-aarch64.txt index 262dc106b8..d2f00bdd1c 100644 --- a/ydb/core/persqueue/ut/slow/CMakeLists.linux-aarch64.txt +++ b/ydb/core/persqueue/ut/slow/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/ut/slow/CMakeLists.linux.txt b/ydb/core/persqueue/ut/slow/CMakeLists.linux.txt index 36afb491e4..ac9ec89206 100644 --- a/ydb/core/persqueue/ut/slow/CMakeLists.linux.txt +++ b/ydb/core/persqueue/ut/slow/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/ut/slow/CMakeLists.txt b/ydb/core/persqueue/ut/slow/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/persqueue/ut/slow/CMakeLists.txt +++ b/ydb/core/persqueue/ut/slow/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/writer/CMakeLists.darwin.txt b/ydb/core/persqueue/writer/CMakeLists.darwin.txt index 5d6a962b33..facc5b0ca5 100644 --- a/ydb/core/persqueue/writer/CMakeLists.darwin.txt +++ b/ydb/core/persqueue/writer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/writer/CMakeLists.linux-aarch64.txt b/ydb/core/persqueue/writer/CMakeLists.linux-aarch64.txt index 7c52f93cf5..64893626e2 100644 --- a/ydb/core/persqueue/writer/CMakeLists.linux-aarch64.txt +++ b/ydb/core/persqueue/writer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/writer/CMakeLists.linux.txt b/ydb/core/persqueue/writer/CMakeLists.linux.txt index 7c52f93cf5..64893626e2 100644 --- a/ydb/core/persqueue/writer/CMakeLists.linux.txt +++ b/ydb/core/persqueue/writer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/persqueue/writer/CMakeLists.txt b/ydb/core/persqueue/writer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/persqueue/writer/CMakeLists.txt +++ b/ydb/core/persqueue/writer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/pgproxy/CMakeLists.darwin.txt b/ydb/core/pgproxy/CMakeLists.darwin.txt index a6984d0aa6..1152f61502 100644 --- a/ydb/core/pgproxy/CMakeLists.darwin.txt +++ b/ydb/core/pgproxy/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/pgproxy/CMakeLists.linux-aarch64.txt b/ydb/core/pgproxy/CMakeLists.linux-aarch64.txt index 0db70f2636..2a7b6d732b 100644 --- a/ydb/core/pgproxy/CMakeLists.linux-aarch64.txt +++ b/ydb/core/pgproxy/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/pgproxy/CMakeLists.linux.txt b/ydb/core/pgproxy/CMakeLists.linux.txt index 0db70f2636..2a7b6d732b 100644 --- a/ydb/core/pgproxy/CMakeLists.linux.txt +++ b/ydb/core/pgproxy/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/pgproxy/CMakeLists.txt b/ydb/core/pgproxy/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/pgproxy/CMakeLists.txt +++ b/ydb/core/pgproxy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/pgproxy/ut/CMakeLists.darwin.txt b/ydb/core/pgproxy/ut/CMakeLists.darwin.txt index 1549492761..c508c2cf90 100644 --- a/ydb/core/pgproxy/ut/CMakeLists.darwin.txt +++ b/ydb/core/pgproxy/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/pgproxy/ut/CMakeLists.linux-aarch64.txt b/ydb/core/pgproxy/ut/CMakeLists.linux-aarch64.txt index 4b60601d5d..6b93f8badc 100644 --- a/ydb/core/pgproxy/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/pgproxy/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/pgproxy/ut/CMakeLists.linux.txt b/ydb/core/pgproxy/ut/CMakeLists.linux.txt index 60bc2d12ab..5880ac9f9b 100644 --- a/ydb/core/pgproxy/ut/CMakeLists.linux.txt +++ b/ydb/core/pgproxy/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/pgproxy/ut/CMakeLists.txt b/ydb/core/pgproxy/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/pgproxy/ut/CMakeLists.txt +++ b/ydb/core/pgproxy/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/protos/CMakeLists.darwin.txt b/ydb/core/protos/CMakeLists.darwin.txt index 79c023dd47..9f0972a459 100644 --- a/ydb/core/protos/CMakeLists.darwin.txt +++ b/ydb/core/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/protos/CMakeLists.linux-aarch64.txt b/ydb/core/protos/CMakeLists.linux-aarch64.txt index 463e4bf3be..0e52135134 100644 --- a/ydb/core/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/core/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/protos/CMakeLists.linux.txt b/ydb/core/protos/CMakeLists.linux.txt index 463e4bf3be..0e52135134 100644 --- a/ydb/core/protos/CMakeLists.linux.txt +++ b/ydb/core/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/protos/CMakeLists.txt b/ydb/core/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/protos/CMakeLists.txt +++ b/ydb/core/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/protos/out/CMakeLists.darwin.txt b/ydb/core/protos/out/CMakeLists.darwin.txt index ce490450ae..75b16d3394 100644 --- a/ydb/core/protos/out/CMakeLists.darwin.txt +++ b/ydb/core/protos/out/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/protos/out/CMakeLists.linux-aarch64.txt b/ydb/core/protos/out/CMakeLists.linux-aarch64.txt index 97d55fe459..e080a9db95 100644 --- a/ydb/core/protos/out/CMakeLists.linux-aarch64.txt +++ b/ydb/core/protos/out/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/protos/out/CMakeLists.linux.txt b/ydb/core/protos/out/CMakeLists.linux.txt index 97d55fe459..e080a9db95 100644 --- a/ydb/core/protos/out/CMakeLists.linux.txt +++ b/ydb/core/protos/out/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/protos/out/CMakeLists.txt b/ydb/core/protos/out/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/protos/out/CMakeLists.txt +++ b/ydb/core/protos/out/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/public_http/CMakeLists.darwin.txt b/ydb/core/public_http/CMakeLists.darwin.txt index 3fbf28ebbc..b674ecc887 100644 --- a/ydb/core/public_http/CMakeLists.darwin.txt +++ b/ydb/core/public_http/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/public_http/CMakeLists.linux-aarch64.txt b/ydb/core/public_http/CMakeLists.linux-aarch64.txt index ede7bb704d..790494f5f9 100644 --- a/ydb/core/public_http/CMakeLists.linux-aarch64.txt +++ b/ydb/core/public_http/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/public_http/CMakeLists.linux.txt b/ydb/core/public_http/CMakeLists.linux.txt index ede7bb704d..790494f5f9 100644 --- a/ydb/core/public_http/CMakeLists.linux.txt +++ b/ydb/core/public_http/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/public_http/CMakeLists.txt b/ydb/core/public_http/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/public_http/CMakeLists.txt +++ b/ydb/core/public_http/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/public_http/protos/CMakeLists.darwin.txt b/ydb/core/public_http/protos/CMakeLists.darwin.txt index d8028f197d..7e3d0cd118 100644 --- a/ydb/core/public_http/protos/CMakeLists.darwin.txt +++ b/ydb/core/public_http/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/public_http/protos/CMakeLists.linux-aarch64.txt b/ydb/core/public_http/protos/CMakeLists.linux-aarch64.txt index 19b2fdc4d6..0969434e82 100644 --- a/ydb/core/public_http/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/core/public_http/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/public_http/protos/CMakeLists.linux.txt b/ydb/core/public_http/protos/CMakeLists.linux.txt index 19b2fdc4d6..0969434e82 100644 --- a/ydb/core/public_http/protos/CMakeLists.linux.txt +++ b/ydb/core/public_http/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/public_http/protos/CMakeLists.txt b/ydb/core/public_http/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/public_http/protos/CMakeLists.txt +++ b/ydb/core/public_http/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/public_http/ut/CMakeLists.darwin.txt b/ydb/core/public_http/ut/CMakeLists.darwin.txt index 2bc578a05f..5f8f9bbe29 100644 --- a/ydb/core/public_http/ut/CMakeLists.darwin.txt +++ b/ydb/core/public_http/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/public_http/ut/CMakeLists.linux-aarch64.txt b/ydb/core/public_http/ut/CMakeLists.linux-aarch64.txt index 4262a04695..d8f65f56d5 100644 --- a/ydb/core/public_http/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/public_http/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/public_http/ut/CMakeLists.linux.txt b/ydb/core/public_http/ut/CMakeLists.linux.txt index 345f9341a5..f43709d1fa 100644 --- a/ydb/core/public_http/ut/CMakeLists.linux.txt +++ b/ydb/core/public_http/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/public_http/ut/CMakeLists.txt b/ydb/core/public_http/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/public_http/ut/CMakeLists.txt +++ b/ydb/core/public_http/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/quoter/CMakeLists.darwin.txt b/ydb/core/quoter/CMakeLists.darwin.txt index 44be50d286..944c9b9fff 100644 --- a/ydb/core/quoter/CMakeLists.darwin.txt +++ b/ydb/core/quoter/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/quoter/CMakeLists.linux-aarch64.txt b/ydb/core/quoter/CMakeLists.linux-aarch64.txt index 97a0bbbeb6..3bd282f84d 100644 --- a/ydb/core/quoter/CMakeLists.linux-aarch64.txt +++ b/ydb/core/quoter/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/quoter/CMakeLists.linux.txt b/ydb/core/quoter/CMakeLists.linux.txt index 97a0bbbeb6..3bd282f84d 100644 --- a/ydb/core/quoter/CMakeLists.linux.txt +++ b/ydb/core/quoter/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/quoter/CMakeLists.txt b/ydb/core/quoter/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/quoter/CMakeLists.txt +++ b/ydb/core/quoter/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.darwin.txt b/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.darwin.txt index 9dc9c7b207..3f9738a272 100644 --- a/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.darwin.txt +++ b/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.linux-aarch64.txt b/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.linux-aarch64.txt index a95bd2b923..03cfa14e69 100644 --- a/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.linux-aarch64.txt +++ b/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.linux.txt b/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.linux.txt index 59e905f40e..58b7d74728 100644 --- a/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.linux.txt +++ b/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.txt b/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.txt +++ b/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/quoter/ut/CMakeLists.darwin.txt b/ydb/core/quoter/ut/CMakeLists.darwin.txt index 034a872444..e088d349e2 100644 --- a/ydb/core/quoter/ut/CMakeLists.darwin.txt +++ b/ydb/core/quoter/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/quoter/ut/CMakeLists.linux-aarch64.txt b/ydb/core/quoter/ut/CMakeLists.linux-aarch64.txt index 09c5fd4fdb..9fd7a080e6 100644 --- a/ydb/core/quoter/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/quoter/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/quoter/ut/CMakeLists.linux.txt b/ydb/core/quoter/ut/CMakeLists.linux.txt index 7f57b45264..a5f2b93d78 100644 --- a/ydb/core/quoter/ut/CMakeLists.linux.txt +++ b/ydb/core/quoter/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/quoter/ut/CMakeLists.txt b/ydb/core/quoter/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/quoter/ut/CMakeLists.txt +++ b/ydb/core/quoter/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/scheme/CMakeLists.darwin.txt b/ydb/core/scheme/CMakeLists.darwin.txt index cdb6a472f6..82ba1fccb1 100644 --- a/ydb/core/scheme/CMakeLists.darwin.txt +++ b/ydb/core/scheme/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/scheme/CMakeLists.linux-aarch64.txt b/ydb/core/scheme/CMakeLists.linux-aarch64.txt index 8882354185..98cdbeea4a 100644 --- a/ydb/core/scheme/CMakeLists.linux-aarch64.txt +++ b/ydb/core/scheme/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/scheme/CMakeLists.linux.txt b/ydb/core/scheme/CMakeLists.linux.txt index 8882354185..98cdbeea4a 100644 --- a/ydb/core/scheme/CMakeLists.linux.txt +++ b/ydb/core/scheme/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/scheme/CMakeLists.txt b/ydb/core/scheme/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/scheme/CMakeLists.txt +++ b/ydb/core/scheme/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/scheme/ut/CMakeLists.darwin.txt b/ydb/core/scheme/ut/CMakeLists.darwin.txt index 73d0828c73..c8bb7a6bbc 100644 --- a/ydb/core/scheme/ut/CMakeLists.darwin.txt +++ b/ydb/core/scheme/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/scheme/ut/CMakeLists.linux-aarch64.txt b/ydb/core/scheme/ut/CMakeLists.linux-aarch64.txt index 61e213fedf..85e4b11d2f 100644 --- a/ydb/core/scheme/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/scheme/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/scheme/ut/CMakeLists.linux.txt b/ydb/core/scheme/ut/CMakeLists.linux.txt index 828860c035..c7ec0c8e4e 100644 --- a/ydb/core/scheme/ut/CMakeLists.linux.txt +++ b/ydb/core/scheme/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/scheme/ut/CMakeLists.txt b/ydb/core/scheme/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/scheme/ut/CMakeLists.txt +++ b/ydb/core/scheme/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/scheme_types/CMakeLists.darwin.txt b/ydb/core/scheme_types/CMakeLists.darwin.txt index 2d58bc4abb..210c5626fc 100644 --- a/ydb/core/scheme_types/CMakeLists.darwin.txt +++ b/ydb/core/scheme_types/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/scheme_types/CMakeLists.linux-aarch64.txt b/ydb/core/scheme_types/CMakeLists.linux-aarch64.txt index 43bd326e73..36d765b6c8 100644 --- a/ydb/core/scheme_types/CMakeLists.linux-aarch64.txt +++ b/ydb/core/scheme_types/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/scheme_types/CMakeLists.linux.txt b/ydb/core/scheme_types/CMakeLists.linux.txt index 43bd326e73..36d765b6c8 100644 --- a/ydb/core/scheme_types/CMakeLists.linux.txt +++ b/ydb/core/scheme_types/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/scheme_types/CMakeLists.txt b/ydb/core/scheme_types/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/scheme_types/CMakeLists.txt +++ b/ydb/core/scheme_types/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/security/CMakeLists.darwin.txt b/ydb/core/security/CMakeLists.darwin.txt index e63989e7c5..833a67dafc 100644 --- a/ydb/core/security/CMakeLists.darwin.txt +++ b/ydb/core/security/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/security/CMakeLists.linux-aarch64.txt b/ydb/core/security/CMakeLists.linux-aarch64.txt index eaf472957d..bef8933463 100644 --- a/ydb/core/security/CMakeLists.linux-aarch64.txt +++ b/ydb/core/security/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/security/CMakeLists.linux.txt b/ydb/core/security/CMakeLists.linux.txt index eaf472957d..bef8933463 100644 --- a/ydb/core/security/CMakeLists.linux.txt +++ b/ydb/core/security/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/security/CMakeLists.txt b/ydb/core/security/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/security/CMakeLists.txt +++ b/ydb/core/security/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/security/ut/CMakeLists.darwin.txt b/ydb/core/security/ut/CMakeLists.darwin.txt index f2c4b7a21a..9d4b782a09 100644 --- a/ydb/core/security/ut/CMakeLists.darwin.txt +++ b/ydb/core/security/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/security/ut/CMakeLists.linux-aarch64.txt b/ydb/core/security/ut/CMakeLists.linux-aarch64.txt index 18dd03f312..8474b96b50 100644 --- a/ydb/core/security/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/security/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/security/ut/CMakeLists.linux.txt b/ydb/core/security/ut/CMakeLists.linux.txt index 6dfdf2094e..c6975183a3 100644 --- a/ydb/core/security/ut/CMakeLists.linux.txt +++ b/ydb/core/security/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/security/ut/CMakeLists.txt b/ydb/core/security/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/security/ut/CMakeLists.txt +++ b/ydb/core/security/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/CMakeLists.darwin.txt b/ydb/core/sys_view/CMakeLists.darwin.txt index 3c1ead061f..79cb54391a 100644 --- a/ydb/core/sys_view/CMakeLists.darwin.txt +++ b/ydb/core/sys_view/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/CMakeLists.linux-aarch64.txt b/ydb/core/sys_view/CMakeLists.linux-aarch64.txt index 4515d9fcec..b8c03c3cd7 100644 --- a/ydb/core/sys_view/CMakeLists.linux-aarch64.txt +++ b/ydb/core/sys_view/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/CMakeLists.linux.txt b/ydb/core/sys_view/CMakeLists.linux.txt index 4515d9fcec..b8c03c3cd7 100644 --- a/ydb/core/sys_view/CMakeLists.linux.txt +++ b/ydb/core/sys_view/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/CMakeLists.txt b/ydb/core/sys_view/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/sys_view/CMakeLists.txt +++ b/ydb/core/sys_view/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/common/CMakeLists.darwin.txt b/ydb/core/sys_view/common/CMakeLists.darwin.txt index f4454c1e99..cf19da8bae 100644 --- a/ydb/core/sys_view/common/CMakeLists.darwin.txt +++ b/ydb/core/sys_view/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/common/CMakeLists.linux-aarch64.txt b/ydb/core/sys_view/common/CMakeLists.linux-aarch64.txt index d9fa510e00..b0562b9d36 100644 --- a/ydb/core/sys_view/common/CMakeLists.linux-aarch64.txt +++ b/ydb/core/sys_view/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/common/CMakeLists.linux.txt b/ydb/core/sys_view/common/CMakeLists.linux.txt index d9fa510e00..b0562b9d36 100644 --- a/ydb/core/sys_view/common/CMakeLists.linux.txt +++ b/ydb/core/sys_view/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/common/CMakeLists.txt b/ydb/core/sys_view/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/sys_view/common/CMakeLists.txt +++ b/ydb/core/sys_view/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/nodes/CMakeLists.darwin.txt b/ydb/core/sys_view/nodes/CMakeLists.darwin.txt index 5b29d5b6e7..8312dc7532 100644 --- a/ydb/core/sys_view/nodes/CMakeLists.darwin.txt +++ b/ydb/core/sys_view/nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/nodes/CMakeLists.linux-aarch64.txt b/ydb/core/sys_view/nodes/CMakeLists.linux-aarch64.txt index 33884dd82c..3ae49315c7 100644 --- a/ydb/core/sys_view/nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/core/sys_view/nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/nodes/CMakeLists.linux.txt b/ydb/core/sys_view/nodes/CMakeLists.linux.txt index 33884dd82c..3ae49315c7 100644 --- a/ydb/core/sys_view/nodes/CMakeLists.linux.txt +++ b/ydb/core/sys_view/nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/nodes/CMakeLists.txt b/ydb/core/sys_view/nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/sys_view/nodes/CMakeLists.txt +++ b/ydb/core/sys_view/nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/partition_stats/CMakeLists.darwin.txt b/ydb/core/sys_view/partition_stats/CMakeLists.darwin.txt index 097216d9b4..88faa7f7f8 100644 --- a/ydb/core/sys_view/partition_stats/CMakeLists.darwin.txt +++ b/ydb/core/sys_view/partition_stats/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/partition_stats/CMakeLists.linux-aarch64.txt b/ydb/core/sys_view/partition_stats/CMakeLists.linux-aarch64.txt index 4358952479..1282f3c33b 100644 --- a/ydb/core/sys_view/partition_stats/CMakeLists.linux-aarch64.txt +++ b/ydb/core/sys_view/partition_stats/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/partition_stats/CMakeLists.linux.txt b/ydb/core/sys_view/partition_stats/CMakeLists.linux.txt index 4358952479..1282f3c33b 100644 --- a/ydb/core/sys_view/partition_stats/CMakeLists.linux.txt +++ b/ydb/core/sys_view/partition_stats/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/partition_stats/CMakeLists.txt b/ydb/core/sys_view/partition_stats/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/sys_view/partition_stats/CMakeLists.txt +++ b/ydb/core/sys_view/partition_stats/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/partition_stats/ut/CMakeLists.darwin.txt b/ydb/core/sys_view/partition_stats/ut/CMakeLists.darwin.txt index 7a83cc82ab..26588fe25d 100644 --- a/ydb/core/sys_view/partition_stats/ut/CMakeLists.darwin.txt +++ b/ydb/core/sys_view/partition_stats/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/partition_stats/ut/CMakeLists.linux-aarch64.txt b/ydb/core/sys_view/partition_stats/ut/CMakeLists.linux-aarch64.txt index fc57201f33..ce025963d3 100644 --- a/ydb/core/sys_view/partition_stats/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/sys_view/partition_stats/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/partition_stats/ut/CMakeLists.linux.txt b/ydb/core/sys_view/partition_stats/ut/CMakeLists.linux.txt index c119550a4a..112df0c1d4 100644 --- a/ydb/core/sys_view/partition_stats/ut/CMakeLists.linux.txt +++ b/ydb/core/sys_view/partition_stats/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/partition_stats/ut/CMakeLists.txt b/ydb/core/sys_view/partition_stats/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/sys_view/partition_stats/ut/CMakeLists.txt +++ b/ydb/core/sys_view/partition_stats/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/processor/CMakeLists.darwin.txt b/ydb/core/sys_view/processor/CMakeLists.darwin.txt index 81dfe077bc..1416bcdbe8 100644 --- a/ydb/core/sys_view/processor/CMakeLists.darwin.txt +++ b/ydb/core/sys_view/processor/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/processor/CMakeLists.linux-aarch64.txt b/ydb/core/sys_view/processor/CMakeLists.linux-aarch64.txt index 1f53664d34..aa745310f9 100644 --- a/ydb/core/sys_view/processor/CMakeLists.linux-aarch64.txt +++ b/ydb/core/sys_view/processor/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/processor/CMakeLists.linux.txt b/ydb/core/sys_view/processor/CMakeLists.linux.txt index 1f53664d34..aa745310f9 100644 --- a/ydb/core/sys_view/processor/CMakeLists.linux.txt +++ b/ydb/core/sys_view/processor/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/processor/CMakeLists.txt b/ydb/core/sys_view/processor/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/sys_view/processor/CMakeLists.txt +++ b/ydb/core/sys_view/processor/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/query_stats/CMakeLists.darwin.txt b/ydb/core/sys_view/query_stats/CMakeLists.darwin.txt index 37e706258a..eece0034f8 100644 --- a/ydb/core/sys_view/query_stats/CMakeLists.darwin.txt +++ b/ydb/core/sys_view/query_stats/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/query_stats/CMakeLists.linux-aarch64.txt b/ydb/core/sys_view/query_stats/CMakeLists.linux-aarch64.txt index 29bd910107..16df0e1481 100644 --- a/ydb/core/sys_view/query_stats/CMakeLists.linux-aarch64.txt +++ b/ydb/core/sys_view/query_stats/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/query_stats/CMakeLists.linux.txt b/ydb/core/sys_view/query_stats/CMakeLists.linux.txt index 29bd910107..16df0e1481 100644 --- a/ydb/core/sys_view/query_stats/CMakeLists.linux.txt +++ b/ydb/core/sys_view/query_stats/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/query_stats/CMakeLists.txt b/ydb/core/sys_view/query_stats/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/sys_view/query_stats/CMakeLists.txt +++ b/ydb/core/sys_view/query_stats/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/query_stats/ut/CMakeLists.darwin.txt b/ydb/core/sys_view/query_stats/ut/CMakeLists.darwin.txt index 09fba86f25..a1de0ba257 100644 --- a/ydb/core/sys_view/query_stats/ut/CMakeLists.darwin.txt +++ b/ydb/core/sys_view/query_stats/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/query_stats/ut/CMakeLists.linux-aarch64.txt b/ydb/core/sys_view/query_stats/ut/CMakeLists.linux-aarch64.txt index 5d12ad0bfe..e1cd24630b 100644 --- a/ydb/core/sys_view/query_stats/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/sys_view/query_stats/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/query_stats/ut/CMakeLists.linux.txt b/ydb/core/sys_view/query_stats/ut/CMakeLists.linux.txt index 59ff28750d..5cc6243294 100644 --- a/ydb/core/sys_view/query_stats/ut/CMakeLists.linux.txt +++ b/ydb/core/sys_view/query_stats/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/query_stats/ut/CMakeLists.txt b/ydb/core/sys_view/query_stats/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/sys_view/query_stats/ut/CMakeLists.txt +++ b/ydb/core/sys_view/query_stats/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/service/CMakeLists.darwin.txt b/ydb/core/sys_view/service/CMakeLists.darwin.txt index 1d740946e0..1e55c4dae7 100644 --- a/ydb/core/sys_view/service/CMakeLists.darwin.txt +++ b/ydb/core/sys_view/service/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/service/CMakeLists.linux-aarch64.txt b/ydb/core/sys_view/service/CMakeLists.linux-aarch64.txt index 09f474ac14..f4765b088f 100644 --- a/ydb/core/sys_view/service/CMakeLists.linux-aarch64.txt +++ b/ydb/core/sys_view/service/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/service/CMakeLists.linux.txt b/ydb/core/sys_view/service/CMakeLists.linux.txt index 09f474ac14..f4765b088f 100644 --- a/ydb/core/sys_view/service/CMakeLists.linux.txt +++ b/ydb/core/sys_view/service/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/service/CMakeLists.txt b/ydb/core/sys_view/service/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/sys_view/service/CMakeLists.txt +++ b/ydb/core/sys_view/service/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/service/ut/CMakeLists.darwin.txt b/ydb/core/sys_view/service/ut/CMakeLists.darwin.txt index 379455bab9..49a75c0f48 100644 --- a/ydb/core/sys_view/service/ut/CMakeLists.darwin.txt +++ b/ydb/core/sys_view/service/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/service/ut/CMakeLists.linux-aarch64.txt b/ydb/core/sys_view/service/ut/CMakeLists.linux-aarch64.txt index 84970c6c54..03c923661c 100644 --- a/ydb/core/sys_view/service/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/sys_view/service/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/service/ut/CMakeLists.linux.txt b/ydb/core/sys_view/service/ut/CMakeLists.linux.txt index 937a67ae32..27713ebefd 100644 --- a/ydb/core/sys_view/service/ut/CMakeLists.linux.txt +++ b/ydb/core/sys_view/service/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/service/ut/CMakeLists.txt b/ydb/core/sys_view/service/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/sys_view/service/ut/CMakeLists.txt +++ b/ydb/core/sys_view/service/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/storage/CMakeLists.darwin.txt b/ydb/core/sys_view/storage/CMakeLists.darwin.txt index cbdb428ce1..4a5f608797 100644 --- a/ydb/core/sys_view/storage/CMakeLists.darwin.txt +++ b/ydb/core/sys_view/storage/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/storage/CMakeLists.linux-aarch64.txt b/ydb/core/sys_view/storage/CMakeLists.linux-aarch64.txt index a2b111becb..391ef896dd 100644 --- a/ydb/core/sys_view/storage/CMakeLists.linux-aarch64.txt +++ b/ydb/core/sys_view/storage/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/storage/CMakeLists.linux.txt b/ydb/core/sys_view/storage/CMakeLists.linux.txt index a2b111becb..391ef896dd 100644 --- a/ydb/core/sys_view/storage/CMakeLists.linux.txt +++ b/ydb/core/sys_view/storage/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/storage/CMakeLists.txt b/ydb/core/sys_view/storage/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/sys_view/storage/CMakeLists.txt +++ b/ydb/core/sys_view/storage/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/tablets/CMakeLists.darwin.txt b/ydb/core/sys_view/tablets/CMakeLists.darwin.txt index b88aa61ce8..001a1930e2 100644 --- a/ydb/core/sys_view/tablets/CMakeLists.darwin.txt +++ b/ydb/core/sys_view/tablets/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/tablets/CMakeLists.linux-aarch64.txt b/ydb/core/sys_view/tablets/CMakeLists.linux-aarch64.txt index be94bc267b..babb0ef42d 100644 --- a/ydb/core/sys_view/tablets/CMakeLists.linux-aarch64.txt +++ b/ydb/core/sys_view/tablets/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/tablets/CMakeLists.linux.txt b/ydb/core/sys_view/tablets/CMakeLists.linux.txt index be94bc267b..babb0ef42d 100644 --- a/ydb/core/sys_view/tablets/CMakeLists.linux.txt +++ b/ydb/core/sys_view/tablets/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/tablets/CMakeLists.txt b/ydb/core/sys_view/tablets/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/sys_view/tablets/CMakeLists.txt +++ b/ydb/core/sys_view/tablets/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/ut_kqp/CMakeLists.darwin.txt b/ydb/core/sys_view/ut_kqp/CMakeLists.darwin.txt index d2ef408e87..0e64adc0c5 100644 --- a/ydb/core/sys_view/ut_kqp/CMakeLists.darwin.txt +++ b/ydb/core/sys_view/ut_kqp/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/ut_kqp/CMakeLists.linux-aarch64.txt b/ydb/core/sys_view/ut_kqp/CMakeLists.linux-aarch64.txt index a6b75a97ca..29f14a0f43 100644 --- a/ydb/core/sys_view/ut_kqp/CMakeLists.linux-aarch64.txt +++ b/ydb/core/sys_view/ut_kqp/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/ut_kqp/CMakeLists.linux.txt b/ydb/core/sys_view/ut_kqp/CMakeLists.linux.txt index 5a987b1c4c..cd856741c5 100644 --- a/ydb/core/sys_view/ut_kqp/CMakeLists.linux.txt +++ b/ydb/core/sys_view/ut_kqp/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/sys_view/ut_kqp/CMakeLists.txt b/ydb/core/sys_view/ut_kqp/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/sys_view/ut_kqp/CMakeLists.txt +++ b/ydb/core/sys_view/ut_kqp/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet/CMakeLists.darwin.txt b/ydb/core/tablet/CMakeLists.darwin.txt index ec3f900097..a00d85cb7d 100644 --- a/ydb/core/tablet/CMakeLists.darwin.txt +++ b/ydb/core/tablet/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet/CMakeLists.linux-aarch64.txt b/ydb/core/tablet/CMakeLists.linux-aarch64.txt index 400193aca0..1143b1cf62 100644 --- a/ydb/core/tablet/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tablet/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet/CMakeLists.linux.txt b/ydb/core/tablet/CMakeLists.linux.txt index 400193aca0..1143b1cf62 100644 --- a/ydb/core/tablet/CMakeLists.linux.txt +++ b/ydb/core/tablet/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet/CMakeLists.txt b/ydb/core/tablet/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tablet/CMakeLists.txt +++ b/ydb/core/tablet/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet/ut/CMakeLists.darwin.txt b/ydb/core/tablet/ut/CMakeLists.darwin.txt index c811e83b0d..744b14bad9 100644 --- a/ydb/core/tablet/ut/CMakeLists.darwin.txt +++ b/ydb/core/tablet/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tablet/ut/CMakeLists.linux-aarch64.txt index 2044f5cf6e..f06a3d90a5 100644 --- a/ydb/core/tablet/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tablet/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet/ut/CMakeLists.linux.txt b/ydb/core/tablet/ut/CMakeLists.linux.txt index 099c71c73f..fe561d3023 100644 --- a/ydb/core/tablet/ut/CMakeLists.linux.txt +++ b/ydb/core/tablet/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet/ut/CMakeLists.txt b/ydb/core/tablet/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tablet/ut/CMakeLists.txt +++ b/ydb/core/tablet/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/CMakeLists.darwin.txt b/ydb/core/tablet_flat/CMakeLists.darwin.txt index 3fe11bbf83..7398f2a969 100644 --- a/ydb/core/tablet_flat/CMakeLists.darwin.txt +++ b/ydb/core/tablet_flat/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/CMakeLists.linux-aarch64.txt b/ydb/core/tablet_flat/CMakeLists.linux-aarch64.txt index bc48c31e12..03ca64a989 100644 --- a/ydb/core/tablet_flat/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tablet_flat/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/CMakeLists.linux.txt b/ydb/core/tablet_flat/CMakeLists.linux.txt index bc48c31e12..03ca64a989 100644 --- a/ydb/core/tablet_flat/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/CMakeLists.txt b/ydb/core/tablet_flat/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tablet_flat/CMakeLists.txt +++ b/ydb/core/tablet_flat/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/protos/CMakeLists.darwin.txt b/ydb/core/tablet_flat/protos/CMakeLists.darwin.txt index 786a97477b..6797fa0d36 100644 --- a/ydb/core/tablet_flat/protos/CMakeLists.darwin.txt +++ b/ydb/core/tablet_flat/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/protos/CMakeLists.linux-aarch64.txt b/ydb/core/tablet_flat/protos/CMakeLists.linux-aarch64.txt index 9226844de3..ad79b2d857 100644 --- a/ydb/core/tablet_flat/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tablet_flat/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/protos/CMakeLists.linux.txt b/ydb/core/tablet_flat/protos/CMakeLists.linux.txt index 9226844de3..ad79b2d857 100644 --- a/ydb/core/tablet_flat/protos/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/protos/CMakeLists.txt b/ydb/core/tablet_flat/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tablet_flat/protos/CMakeLists.txt +++ b/ydb/core/tablet_flat/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/CMakeLists.txt b/ydb/core/tablet_flat/test/CMakeLists.txt index bf5171a9ec..d94bd65bae 100644 --- a/ydb/core/tablet_flat/test/CMakeLists.txt +++ b/ydb/core/tablet_flat/test/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/CMakeLists.txt b/ydb/core/tablet_flat/test/libs/CMakeLists.txt index bb3a7cd201..243691cd33 100644 --- a/ydb/core/tablet_flat/test/libs/CMakeLists.txt +++ b/ydb/core/tablet_flat/test/libs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/exec/CMakeLists.darwin.txt b/ydb/core/tablet_flat/test/libs/exec/CMakeLists.darwin.txt index 720d0db495..f08cfe6755 100644 --- a/ydb/core/tablet_flat/test/libs/exec/CMakeLists.darwin.txt +++ b/ydb/core/tablet_flat/test/libs/exec/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/exec/CMakeLists.linux-aarch64.txt b/ydb/core/tablet_flat/test/libs/exec/CMakeLists.linux-aarch64.txt index c919589e1a..e9f0680f06 100644 --- a/ydb/core/tablet_flat/test/libs/exec/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tablet_flat/test/libs/exec/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/exec/CMakeLists.linux.txt b/ydb/core/tablet_flat/test/libs/exec/CMakeLists.linux.txt index c919589e1a..e9f0680f06 100644 --- a/ydb/core/tablet_flat/test/libs/exec/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/test/libs/exec/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/exec/CMakeLists.txt b/ydb/core/tablet_flat/test/libs/exec/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tablet_flat/test/libs/exec/CMakeLists.txt +++ b/ydb/core/tablet_flat/test/libs/exec/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/rows/CMakeLists.darwin.txt b/ydb/core/tablet_flat/test/libs/rows/CMakeLists.darwin.txt index cb79a59c95..3919df16d8 100644 --- a/ydb/core/tablet_flat/test/libs/rows/CMakeLists.darwin.txt +++ b/ydb/core/tablet_flat/test/libs/rows/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/rows/CMakeLists.linux-aarch64.txt b/ydb/core/tablet_flat/test/libs/rows/CMakeLists.linux-aarch64.txt index ad2bbaff6e..14b9a1cff3 100644 --- a/ydb/core/tablet_flat/test/libs/rows/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tablet_flat/test/libs/rows/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/rows/CMakeLists.linux.txt b/ydb/core/tablet_flat/test/libs/rows/CMakeLists.linux.txt index ad2bbaff6e..14b9a1cff3 100644 --- a/ydb/core/tablet_flat/test/libs/rows/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/test/libs/rows/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/rows/CMakeLists.txt b/ydb/core/tablet_flat/test/libs/rows/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tablet_flat/test/libs/rows/CMakeLists.txt +++ b/ydb/core/tablet_flat/test/libs/rows/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/table/CMakeLists.darwin.txt b/ydb/core/tablet_flat/test/libs/table/CMakeLists.darwin.txt index a61d3c93a1..ab7b86db4b 100644 --- a/ydb/core/tablet_flat/test/libs/table/CMakeLists.darwin.txt +++ b/ydb/core/tablet_flat/test/libs/table/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/table/CMakeLists.linux-aarch64.txt b/ydb/core/tablet_flat/test/libs/table/CMakeLists.linux-aarch64.txt index eb1c40bfdd..0030fd5762 100644 --- a/ydb/core/tablet_flat/test/libs/table/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tablet_flat/test/libs/table/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/table/CMakeLists.linux.txt b/ydb/core/tablet_flat/test/libs/table/CMakeLists.linux.txt index eb1c40bfdd..0030fd5762 100644 --- a/ydb/core/tablet_flat/test/libs/table/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/test/libs/table/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/table/CMakeLists.txt b/ydb/core/tablet_flat/test/libs/table/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tablet_flat/test/libs/table/CMakeLists.txt +++ b/ydb/core/tablet_flat/test/libs/table/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.darwin.txt b/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.darwin.txt index 751d6f6c23..970f0fd9cc 100644 --- a/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.darwin.txt +++ b/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.linux-aarch64.txt b/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.linux-aarch64.txt index 1a14e7bbee..d6a54ae5aa 100644 --- a/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.linux.txt b/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.linux.txt index 1a14e7bbee..d6a54ae5aa 100644 --- a/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.txt b/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.txt +++ b/ydb/core/tablet_flat/test/libs/table/model/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/tool/CMakeLists.txt b/ydb/core/tablet_flat/test/tool/CMakeLists.txt index bedc0db8ab..657dc1afad 100644 --- a/ydb/core/tablet_flat/test/tool/CMakeLists.txt +++ b/ydb/core/tablet_flat/test/tool/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/tool/perf/CMakeLists.darwin.txt b/ydb/core/tablet_flat/test/tool/perf/CMakeLists.darwin.txt index 15e489dde5..ce232c8388 100644 --- a/ydb/core/tablet_flat/test/tool/perf/CMakeLists.darwin.txt +++ b/ydb/core/tablet_flat/test/tool/perf/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/tool/perf/CMakeLists.linux-aarch64.txt b/ydb/core/tablet_flat/test/tool/perf/CMakeLists.linux-aarch64.txt index 2b28b8cc09..bb47d19273 100644 --- a/ydb/core/tablet_flat/test/tool/perf/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tablet_flat/test/tool/perf/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/tool/perf/CMakeLists.linux.txt b/ydb/core/tablet_flat/test/tool/perf/CMakeLists.linux.txt index c5b845cc1c..1738debc18 100644 --- a/ydb/core/tablet_flat/test/tool/perf/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/test/tool/perf/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/tool/perf/CMakeLists.txt b/ydb/core/tablet_flat/test/tool/perf/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tablet_flat/test/tool/perf/CMakeLists.txt +++ b/ydb/core/tablet_flat/test/tool/perf/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/tool/surg/CMakeLists.darwin.txt b/ydb/core/tablet_flat/test/tool/surg/CMakeLists.darwin.txt index 0d3a824021..5fc9a60279 100644 --- a/ydb/core/tablet_flat/test/tool/surg/CMakeLists.darwin.txt +++ b/ydb/core/tablet_flat/test/tool/surg/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/tool/surg/CMakeLists.linux-aarch64.txt b/ydb/core/tablet_flat/test/tool/surg/CMakeLists.linux-aarch64.txt index 70dc754227..2553dca4c8 100644 --- a/ydb/core/tablet_flat/test/tool/surg/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tablet_flat/test/tool/surg/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/tool/surg/CMakeLists.linux.txt b/ydb/core/tablet_flat/test/tool/surg/CMakeLists.linux.txt index 54f7bd0d1f..4bf1d56faa 100644 --- a/ydb/core/tablet_flat/test/tool/surg/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/test/tool/surg/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/test/tool/surg/CMakeLists.txt b/ydb/core/tablet_flat/test/tool/surg/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tablet_flat/test/tool/surg/CMakeLists.txt +++ b/ydb/core/tablet_flat/test/tool/surg/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/ut/CMakeLists.darwin.txt b/ydb/core/tablet_flat/ut/CMakeLists.darwin.txt index 2d562ed938..ea153fbb25 100644 --- a/ydb/core/tablet_flat/ut/CMakeLists.darwin.txt +++ b/ydb/core/tablet_flat/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tablet_flat/ut/CMakeLists.linux-aarch64.txt index 2e105df8ca..c1beaf6c3c 100644 --- a/ydb/core/tablet_flat/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tablet_flat/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/ut/CMakeLists.linux.txt b/ydb/core/tablet_flat/ut/CMakeLists.linux.txt index a81bc4acef..ff15f707e6 100644 --- a/ydb/core/tablet_flat/ut/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/ut/CMakeLists.txt b/ydb/core/tablet_flat/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tablet_flat/ut/CMakeLists.txt +++ b/ydb/core/tablet_flat/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/ut_large/CMakeLists.darwin.txt b/ydb/core/tablet_flat/ut_large/CMakeLists.darwin.txt index 324ba024e0..2afc1c904a 100644 --- a/ydb/core/tablet_flat/ut_large/CMakeLists.darwin.txt +++ b/ydb/core/tablet_flat/ut_large/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/ut_large/CMakeLists.linux-aarch64.txt b/ydb/core/tablet_flat/ut_large/CMakeLists.linux-aarch64.txt index 969b64e8c6..2afdb0710f 100644 --- a/ydb/core/tablet_flat/ut_large/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tablet_flat/ut_large/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/ut_large/CMakeLists.linux.txt b/ydb/core/tablet_flat/ut_large/CMakeLists.linux.txt index 6eb86cf7e4..e3043060fc 100644 --- a/ydb/core/tablet_flat/ut_large/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/ut_large/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/ut_large/CMakeLists.txt b/ydb/core/tablet_flat/ut_large/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tablet_flat/ut_large/CMakeLists.txt +++ b/ydb/core/tablet_flat/ut_large/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/ut_pg/CMakeLists.darwin.txt b/ydb/core/tablet_flat/ut_pg/CMakeLists.darwin.txt index 38b07eaf3f..2dc4308eef 100644 --- a/ydb/core/tablet_flat/ut_pg/CMakeLists.darwin.txt +++ b/ydb/core/tablet_flat/ut_pg/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/ut_pg/CMakeLists.linux-aarch64.txt b/ydb/core/tablet_flat/ut_pg/CMakeLists.linux-aarch64.txt index c05fc12197..6ff07baa52 100644 --- a/ydb/core/tablet_flat/ut_pg/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tablet_flat/ut_pg/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/ut_pg/CMakeLists.linux.txt b/ydb/core/tablet_flat/ut_pg/CMakeLists.linux.txt index fd914d36d0..b31677ca84 100644 --- a/ydb/core/tablet_flat/ut_pg/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/ut_pg/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tablet_flat/ut_pg/CMakeLists.txt b/ydb/core/tablet_flat/ut_pg/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tablet_flat/ut_pg/CMakeLists.txt +++ b/ydb/core/tablet_flat/ut_pg/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/test_tablet/CMakeLists.darwin.txt b/ydb/core/test_tablet/CMakeLists.darwin.txt index b73dc5b0ab..48dcfc154a 100644 --- a/ydb/core/test_tablet/CMakeLists.darwin.txt +++ b/ydb/core/test_tablet/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/test_tablet/CMakeLists.linux-aarch64.txt b/ydb/core/test_tablet/CMakeLists.linux-aarch64.txt index 9b51e691f2..78de9acf4d 100644 --- a/ydb/core/test_tablet/CMakeLists.linux-aarch64.txt +++ b/ydb/core/test_tablet/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/test_tablet/CMakeLists.linux.txt b/ydb/core/test_tablet/CMakeLists.linux.txt index 9b51e691f2..78de9acf4d 100644 --- a/ydb/core/test_tablet/CMakeLists.linux.txt +++ b/ydb/core/test_tablet/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/test_tablet/CMakeLists.txt b/ydb/core/test_tablet/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/test_tablet/CMakeLists.txt +++ b/ydb/core/test_tablet/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/CMakeLists.darwin.txt b/ydb/core/testlib/CMakeLists.darwin.txt index ca2ac9ef8d..8294cbad15 100644 --- a/ydb/core/testlib/CMakeLists.darwin.txt +++ b/ydb/core/testlib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/CMakeLists.linux-aarch64.txt b/ydb/core/testlib/CMakeLists.linux-aarch64.txt index 3c36477a64..aee2ef2473 100644 --- a/ydb/core/testlib/CMakeLists.linux-aarch64.txt +++ b/ydb/core/testlib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/CMakeLists.linux.txt b/ydb/core/testlib/CMakeLists.linux.txt index 3c36477a64..aee2ef2473 100644 --- a/ydb/core/testlib/CMakeLists.linux.txt +++ b/ydb/core/testlib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/CMakeLists.txt b/ydb/core/testlib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/testlib/CMakeLists.txt +++ b/ydb/core/testlib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/actors/CMakeLists.darwin.txt b/ydb/core/testlib/actors/CMakeLists.darwin.txt index 795d6b4cf7..ee3a1ec036 100644 --- a/ydb/core/testlib/actors/CMakeLists.darwin.txt +++ b/ydb/core/testlib/actors/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/actors/CMakeLists.linux-aarch64.txt b/ydb/core/testlib/actors/CMakeLists.linux-aarch64.txt index c1a667bba6..4e148b509e 100644 --- a/ydb/core/testlib/actors/CMakeLists.linux-aarch64.txt +++ b/ydb/core/testlib/actors/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/actors/CMakeLists.linux.txt b/ydb/core/testlib/actors/CMakeLists.linux.txt index c1a667bba6..4e148b509e 100644 --- a/ydb/core/testlib/actors/CMakeLists.linux.txt +++ b/ydb/core/testlib/actors/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/actors/CMakeLists.txt b/ydb/core/testlib/actors/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/testlib/actors/CMakeLists.txt +++ b/ydb/core/testlib/actors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/actors/ut/CMakeLists.darwin.txt b/ydb/core/testlib/actors/ut/CMakeLists.darwin.txt index f220955d2c..548f908ffe 100644 --- a/ydb/core/testlib/actors/ut/CMakeLists.darwin.txt +++ b/ydb/core/testlib/actors/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/actors/ut/CMakeLists.linux-aarch64.txt b/ydb/core/testlib/actors/ut/CMakeLists.linux-aarch64.txt index 5b90b62994..9eed91d3d8 100644 --- a/ydb/core/testlib/actors/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/testlib/actors/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/actors/ut/CMakeLists.linux.txt b/ydb/core/testlib/actors/ut/CMakeLists.linux.txt index d0b3f1c691..e2b6db1f27 100644 --- a/ydb/core/testlib/actors/ut/CMakeLists.linux.txt +++ b/ydb/core/testlib/actors/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/actors/ut/CMakeLists.txt b/ydb/core/testlib/actors/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/testlib/actors/ut/CMakeLists.txt +++ b/ydb/core/testlib/actors/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/basics/CMakeLists.darwin.txt b/ydb/core/testlib/basics/CMakeLists.darwin.txt index 4703caf15e..1f963b1883 100644 --- a/ydb/core/testlib/basics/CMakeLists.darwin.txt +++ b/ydb/core/testlib/basics/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/basics/CMakeLists.linux-aarch64.txt b/ydb/core/testlib/basics/CMakeLists.linux-aarch64.txt index 11f4e0bdde..ae8a039691 100644 --- a/ydb/core/testlib/basics/CMakeLists.linux-aarch64.txt +++ b/ydb/core/testlib/basics/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/basics/CMakeLists.linux.txt b/ydb/core/testlib/basics/CMakeLists.linux.txt index 11f4e0bdde..ae8a039691 100644 --- a/ydb/core/testlib/basics/CMakeLists.linux.txt +++ b/ydb/core/testlib/basics/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/basics/CMakeLists.txt b/ydb/core/testlib/basics/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/testlib/basics/CMakeLists.txt +++ b/ydb/core/testlib/basics/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/basics/default/CMakeLists.darwin.txt b/ydb/core/testlib/basics/default/CMakeLists.darwin.txt index 6339cd1b4b..f95ffc8013 100644 --- a/ydb/core/testlib/basics/default/CMakeLists.darwin.txt +++ b/ydb/core/testlib/basics/default/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/basics/default/CMakeLists.linux-aarch64.txt b/ydb/core/testlib/basics/default/CMakeLists.linux-aarch64.txt index 47aac9fe82..06d27cdf77 100644 --- a/ydb/core/testlib/basics/default/CMakeLists.linux-aarch64.txt +++ b/ydb/core/testlib/basics/default/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/basics/default/CMakeLists.linux.txt b/ydb/core/testlib/basics/default/CMakeLists.linux.txt index 47aac9fe82..06d27cdf77 100644 --- a/ydb/core/testlib/basics/default/CMakeLists.linux.txt +++ b/ydb/core/testlib/basics/default/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/basics/default/CMakeLists.txt b/ydb/core/testlib/basics/default/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/testlib/basics/default/CMakeLists.txt +++ b/ydb/core/testlib/basics/default/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/default/CMakeLists.darwin.txt b/ydb/core/testlib/default/CMakeLists.darwin.txt index 7f271a88a6..1897f36f9d 100644 --- a/ydb/core/testlib/default/CMakeLists.darwin.txt +++ b/ydb/core/testlib/default/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/default/CMakeLists.linux-aarch64.txt b/ydb/core/testlib/default/CMakeLists.linux-aarch64.txt index de7516975c..a665c380d2 100644 --- a/ydb/core/testlib/default/CMakeLists.linux-aarch64.txt +++ b/ydb/core/testlib/default/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/default/CMakeLists.linux.txt b/ydb/core/testlib/default/CMakeLists.linux.txt index de7516975c..a665c380d2 100644 --- a/ydb/core/testlib/default/CMakeLists.linux.txt +++ b/ydb/core/testlib/default/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/default/CMakeLists.txt b/ydb/core/testlib/default/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/testlib/default/CMakeLists.txt +++ b/ydb/core/testlib/default/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/pg/CMakeLists.darwin.txt b/ydb/core/testlib/pg/CMakeLists.darwin.txt index 262e65a260..7d263fa4af 100644 --- a/ydb/core/testlib/pg/CMakeLists.darwin.txt +++ b/ydb/core/testlib/pg/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/pg/CMakeLists.linux-aarch64.txt b/ydb/core/testlib/pg/CMakeLists.linux-aarch64.txt index 7618ce48b6..89512dce03 100644 --- a/ydb/core/testlib/pg/CMakeLists.linux-aarch64.txt +++ b/ydb/core/testlib/pg/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/pg/CMakeLists.linux.txt b/ydb/core/testlib/pg/CMakeLists.linux.txt index 7618ce48b6..89512dce03 100644 --- a/ydb/core/testlib/pg/CMakeLists.linux.txt +++ b/ydb/core/testlib/pg/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/testlib/pg/CMakeLists.txt b/ydb/core/testlib/pg/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/testlib/pg/CMakeLists.txt +++ b/ydb/core/testlib/pg/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tracing/CMakeLists.darwin.txt b/ydb/core/tracing/CMakeLists.darwin.txt index c67e8da0f6..2ffc82165d 100644 --- a/ydb/core/tracing/CMakeLists.darwin.txt +++ b/ydb/core/tracing/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tracing/CMakeLists.linux-aarch64.txt b/ydb/core/tracing/CMakeLists.linux-aarch64.txt index 2e123dfa75..7d8eb71fc9 100644 --- a/ydb/core/tracing/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tracing/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tracing/CMakeLists.linux.txt b/ydb/core/tracing/CMakeLists.linux.txt index 2e123dfa75..7d8eb71fc9 100644 --- a/ydb/core/tracing/CMakeLists.linux.txt +++ b/ydb/core/tracing/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tracing/CMakeLists.txt b/ydb/core/tracing/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tracing/CMakeLists.txt +++ b/ydb/core/tracing/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/CMakeLists.darwin.txt b/ydb/core/tx/CMakeLists.darwin.txt index 6b91efc22a..ceb4de0b6f 100644 --- a/ydb/core/tx/CMakeLists.darwin.txt +++ b/ydb/core/tx/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/CMakeLists.linux-aarch64.txt b/ydb/core/tx/CMakeLists.linux-aarch64.txt index 676992c313..8f7572568b 100644 --- a/ydb/core/tx/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/CMakeLists.linux.txt b/ydb/core/tx/CMakeLists.linux.txt index 676992c313..8f7572568b 100644 --- a/ydb/core/tx/CMakeLists.linux.txt +++ b/ydb/core/tx/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/CMakeLists.txt b/ydb/core/tx/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/CMakeLists.txt +++ b/ydb/core/tx/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/balance_coverage/CMakeLists.darwin.txt b/ydb/core/tx/balance_coverage/CMakeLists.darwin.txt index 6aa986c5da..363e91a78a 100644 --- a/ydb/core/tx/balance_coverage/CMakeLists.darwin.txt +++ b/ydb/core/tx/balance_coverage/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/balance_coverage/CMakeLists.linux-aarch64.txt b/ydb/core/tx/balance_coverage/CMakeLists.linux-aarch64.txt index fac29f8996..596dc8126e 100644 --- a/ydb/core/tx/balance_coverage/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/balance_coverage/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/balance_coverage/CMakeLists.linux.txt b/ydb/core/tx/balance_coverage/CMakeLists.linux.txt index fac29f8996..596dc8126e 100644 --- a/ydb/core/tx/balance_coverage/CMakeLists.linux.txt +++ b/ydb/core/tx/balance_coverage/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/balance_coverage/CMakeLists.txt b/ydb/core/tx/balance_coverage/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/balance_coverage/CMakeLists.txt +++ b/ydb/core/tx/balance_coverage/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/balance_coverage/ut/CMakeLists.darwin.txt b/ydb/core/tx/balance_coverage/ut/CMakeLists.darwin.txt index 8bca67bafb..f003b5f429 100644 --- a/ydb/core/tx/balance_coverage/ut/CMakeLists.darwin.txt +++ b/ydb/core/tx/balance_coverage/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/balance_coverage/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tx/balance_coverage/ut/CMakeLists.linux-aarch64.txt index c88207187d..c41fc822ee 100644 --- a/ydb/core/tx/balance_coverage/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/balance_coverage/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/balance_coverage/ut/CMakeLists.linux.txt b/ydb/core/tx/balance_coverage/ut/CMakeLists.linux.txt index cdedad225b..f5e36c6906 100644 --- a/ydb/core/tx/balance_coverage/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/balance_coverage/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/balance_coverage/ut/CMakeLists.txt b/ydb/core/tx/balance_coverage/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/balance_coverage/ut/CMakeLists.txt +++ b/ydb/core/tx/balance_coverage/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/CMakeLists.darwin.txt b/ydb/core/tx/columnshard/CMakeLists.darwin.txt index 71a83f262d..80f1364ca5 100644 --- a/ydb/core/tx/columnshard/CMakeLists.darwin.txt +++ b/ydb/core/tx/columnshard/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/CMakeLists.linux-aarch64.txt b/ydb/core/tx/columnshard/CMakeLists.linux-aarch64.txt index a6e1b8613c..f049c5739f 100644 --- a/ydb/core/tx/columnshard/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/columnshard/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/CMakeLists.linux.txt b/ydb/core/tx/columnshard/CMakeLists.linux.txt index a6e1b8613c..f049c5739f 100644 --- a/ydb/core/tx/columnshard/CMakeLists.linux.txt +++ b/ydb/core/tx/columnshard/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/CMakeLists.txt b/ydb/core/tx/columnshard/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/columnshard/CMakeLists.txt +++ b/ydb/core/tx/columnshard/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/engines/CMakeLists.darwin.txt b/ydb/core/tx/columnshard/engines/CMakeLists.darwin.txt index 5da5cd8162..6e27fb3e51 100644 --- a/ydb/core/tx/columnshard/engines/CMakeLists.darwin.txt +++ b/ydb/core/tx/columnshard/engines/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/engines/CMakeLists.linux-aarch64.txt b/ydb/core/tx/columnshard/engines/CMakeLists.linux-aarch64.txt index 150983a196..10c6eaf1a0 100644 --- a/ydb/core/tx/columnshard/engines/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/columnshard/engines/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/engines/CMakeLists.linux.txt b/ydb/core/tx/columnshard/engines/CMakeLists.linux.txt index 150983a196..10c6eaf1a0 100644 --- a/ydb/core/tx/columnshard/engines/CMakeLists.linux.txt +++ b/ydb/core/tx/columnshard/engines/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/engines/CMakeLists.txt b/ydb/core/tx/columnshard/engines/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/columnshard/engines/CMakeLists.txt +++ b/ydb/core/tx/columnshard/engines/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/engines/ut/CMakeLists.darwin.txt b/ydb/core/tx/columnshard/engines/ut/CMakeLists.darwin.txt index 32df6c41a5..ba8c63d3ad 100644 --- a/ydb/core/tx/columnshard/engines/ut/CMakeLists.darwin.txt +++ b/ydb/core/tx/columnshard/engines/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/engines/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tx/columnshard/engines/ut/CMakeLists.linux-aarch64.txt index f4145487ad..d1d49d0716 100644 --- a/ydb/core/tx/columnshard/engines/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/columnshard/engines/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/engines/ut/CMakeLists.linux.txt b/ydb/core/tx/columnshard/engines/ut/CMakeLists.linux.txt index 74b8842838..eabb1bb22e 100644 --- a/ydb/core/tx/columnshard/engines/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/columnshard/engines/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/engines/ut/CMakeLists.txt b/ydb/core/tx/columnshard/engines/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/columnshard/engines/ut/CMakeLists.txt +++ b/ydb/core/tx/columnshard/engines/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/ut_rw/CMakeLists.darwin.txt b/ydb/core/tx/columnshard/ut_rw/CMakeLists.darwin.txt index c5042c3b1c..cf93f07e2a 100644 --- a/ydb/core/tx/columnshard/ut_rw/CMakeLists.darwin.txt +++ b/ydb/core/tx/columnshard/ut_rw/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/ut_rw/CMakeLists.linux-aarch64.txt b/ydb/core/tx/columnshard/ut_rw/CMakeLists.linux-aarch64.txt index 24daf7a8df..31ef19b3d4 100644 --- a/ydb/core/tx/columnshard/ut_rw/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/columnshard/ut_rw/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/ut_rw/CMakeLists.linux.txt b/ydb/core/tx/columnshard/ut_rw/CMakeLists.linux.txt index 9b322f903b..60acf20bfe 100644 --- a/ydb/core/tx/columnshard/ut_rw/CMakeLists.linux.txt +++ b/ydb/core/tx/columnshard/ut_rw/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/ut_rw/CMakeLists.txt b/ydb/core/tx/columnshard/ut_rw/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/columnshard/ut_rw/CMakeLists.txt +++ b/ydb/core/tx/columnshard/ut_rw/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/ut_schema/CMakeLists.darwin.txt b/ydb/core/tx/columnshard/ut_schema/CMakeLists.darwin.txt index 14d7115e97..cb3d4938b8 100644 --- a/ydb/core/tx/columnshard/ut_schema/CMakeLists.darwin.txt +++ b/ydb/core/tx/columnshard/ut_schema/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/ut_schema/CMakeLists.linux-aarch64.txt b/ydb/core/tx/columnshard/ut_schema/CMakeLists.linux-aarch64.txt index ce027bbdf1..4068e05362 100644 --- a/ydb/core/tx/columnshard/ut_schema/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/columnshard/ut_schema/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/ut_schema/CMakeLists.linux.txt b/ydb/core/tx/columnshard/ut_schema/CMakeLists.linux.txt index cd44c0605b..f1f96e464b 100644 --- a/ydb/core/tx/columnshard/ut_schema/CMakeLists.linux.txt +++ b/ydb/core/tx/columnshard/ut_schema/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/columnshard/ut_schema/CMakeLists.txt b/ydb/core/tx/columnshard/ut_schema/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/columnshard/ut_schema/CMakeLists.txt +++ b/ydb/core/tx/columnshard/ut_schema/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/coordinator/CMakeLists.darwin.txt b/ydb/core/tx/coordinator/CMakeLists.darwin.txt index e89ef36e4b..ae71c871d6 100644 --- a/ydb/core/tx/coordinator/CMakeLists.darwin.txt +++ b/ydb/core/tx/coordinator/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/coordinator/CMakeLists.linux-aarch64.txt b/ydb/core/tx/coordinator/CMakeLists.linux-aarch64.txt index e3a3e1f473..cfc638e059 100644 --- a/ydb/core/tx/coordinator/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/coordinator/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/coordinator/CMakeLists.linux.txt b/ydb/core/tx/coordinator/CMakeLists.linux.txt index e3a3e1f473..cfc638e059 100644 --- a/ydb/core/tx/coordinator/CMakeLists.linux.txt +++ b/ydb/core/tx/coordinator/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/coordinator/CMakeLists.txt b/ydb/core/tx/coordinator/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/coordinator/CMakeLists.txt +++ b/ydb/core/tx/coordinator/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/coordinator/ut/CMakeLists.darwin.txt b/ydb/core/tx/coordinator/ut/CMakeLists.darwin.txt index f536fdf352..9d4cda355b 100644 --- a/ydb/core/tx/coordinator/ut/CMakeLists.darwin.txt +++ b/ydb/core/tx/coordinator/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/coordinator/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tx/coordinator/ut/CMakeLists.linux-aarch64.txt index 2d593e85bc..6b8f4f5645 100644 --- a/ydb/core/tx/coordinator/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/coordinator/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/coordinator/ut/CMakeLists.linux.txt b/ydb/core/tx/coordinator/ut/CMakeLists.linux.txt index e55cbfb3bd..b5326652e9 100644 --- a/ydb/core/tx/coordinator/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/coordinator/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/coordinator/ut/CMakeLists.txt b/ydb/core/tx/coordinator/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/coordinator/ut/CMakeLists.txt +++ b/ydb/core/tx/coordinator/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/CMakeLists.darwin.txt b/ydb/core/tx/datashard/CMakeLists.darwin.txt index 48f3c5133f..9d58b961f0 100644 --- a/ydb/core/tx/datashard/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/CMakeLists.linux-aarch64.txt index 9257ce4c0c..1ff95f10b0 100644 --- a/ydb/core/tx/datashard/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/CMakeLists.linux.txt b/ydb/core/tx/datashard/CMakeLists.linux.txt index 9257ce4c0c..1ff95f10b0 100644 --- a/ydb/core/tx/datashard/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/CMakeLists.txt b/ydb/core/tx/datashard/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/CMakeLists.txt +++ b/ydb/core/tx/datashard/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.darwin.txt index b386be8852..3fb407f876 100644 --- a/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.linux-aarch64.txt index 53576a94fd..485b6f3245 100644 --- a/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.linux.txt index 794a33cbe9..37cda5d821 100644 --- a/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.txt b/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_build_index/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_build_index/CMakeLists.darwin.txt index f93c32d2c2..306a325ccc 100644 --- a/ydb/core/tx/datashard/ut_build_index/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_build_index/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_build_index/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_build_index/CMakeLists.linux-aarch64.txt index 67b9120908..02a22aa959 100644 --- a/ydb/core/tx/datashard/ut_build_index/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_build_index/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_build_index/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_build_index/CMakeLists.linux.txt index f81fbc869b..2fca6a379a 100644 --- a/ydb/core/tx/datashard/ut_build_index/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_build_index/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_build_index/CMakeLists.txt b/ydb/core/tx/datashard/ut_build_index/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_build_index/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_build_index/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_change_collector/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_change_collector/CMakeLists.darwin.txt index 8d6ae9f7ac..503c2d0583 100644 --- a/ydb/core/tx/datashard/ut_change_collector/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_change_collector/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_change_collector/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_change_collector/CMakeLists.linux-aarch64.txt index dbca8bd92e..1f287cec37 100644 --- a/ydb/core/tx/datashard/ut_change_collector/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_change_collector/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_change_collector/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_change_collector/CMakeLists.linux.txt index c54950be89..6abe926ae9 100644 --- a/ydb/core/tx/datashard/ut_change_collector/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_change_collector/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_change_collector/CMakeLists.txt b/ydb/core/tx/datashard/ut_change_collector/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_change_collector/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_change_collector/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.darwin.txt index fc4f7e8fb9..2025cf0815 100644 --- a/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.linux-aarch64.txt index 4c03b65fe0..fcac3cc051 100644 --- a/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.linux.txt index 92d279d34c..c91abbc054 100644 --- a/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.txt b/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_compaction/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_compaction/CMakeLists.darwin.txt index f8d4b47d5f..bd98c88354 100644 --- a/ydb/core/tx/datashard/ut_compaction/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_compaction/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_compaction/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_compaction/CMakeLists.linux-aarch64.txt index e4a2fa1930..01a0e4b30b 100644 --- a/ydb/core/tx/datashard/ut_compaction/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_compaction/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_compaction/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_compaction/CMakeLists.linux.txt index 76bb4ef4ed..eaa38613c3 100644 --- a/ydb/core/tx/datashard/ut_compaction/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_compaction/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_compaction/CMakeLists.txt b/ydb/core/tx/datashard/ut_compaction/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_compaction/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_compaction/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.darwin.txt index 038bf6b917..0e5496ef46 100644 --- a/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.linux-aarch64.txt index 42d4136d67..4723ecd803 100644 --- a/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.linux.txt index d0120b58e9..6aae1f4d1e 100644 --- a/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.txt b/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_followers/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_followers/CMakeLists.darwin.txt index da51f3fc23..ad6949574f 100644 --- a/ydb/core/tx/datashard/ut_followers/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_followers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_followers/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_followers/CMakeLists.linux-aarch64.txt index 1ecef18bd5..ebf2915f1a 100644 --- a/ydb/core/tx/datashard/ut_followers/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_followers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_followers/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_followers/CMakeLists.linux.txt index 4ecaae5abc..3ffdbd4f33 100644 --- a/ydb/core/tx/datashard/ut_followers/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_followers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_followers/CMakeLists.txt b/ydb/core/tx/datashard/ut_followers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_followers/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_followers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_init/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_init/CMakeLists.darwin.txt index 381cd4c7af..fb468101c6 100644 --- a/ydb/core/tx/datashard/ut_init/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_init/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_init/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_init/CMakeLists.linux-aarch64.txt index 283295ca9a..23472ef578 100644 --- a/ydb/core/tx/datashard/ut_init/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_init/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_init/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_init/CMakeLists.linux.txt index d5c1b87cdd..56f2a6e265 100644 --- a/ydb/core/tx/datashard/ut_init/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_init/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_init/CMakeLists.txt b/ydb/core/tx/datashard/ut_init/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_init/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_init/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_keys/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_keys/CMakeLists.darwin.txt index 1d407b2e0a..31f8999f03 100644 --- a/ydb/core/tx/datashard/ut_keys/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_keys/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_keys/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_keys/CMakeLists.linux-aarch64.txt index 74e6874198..95bb545ccf 100644 --- a/ydb/core/tx/datashard/ut_keys/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_keys/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_keys/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_keys/CMakeLists.linux.txt index 3467cb6c9c..c7e8188915 100644 --- a/ydb/core/tx/datashard/ut_keys/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_keys/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_keys/CMakeLists.txt b/ydb/core/tx/datashard/ut_keys/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_keys/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_keys/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_kqp/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_kqp/CMakeLists.darwin.txt index 1131f0a23c..86540f4a0b 100644 --- a/ydb/core/tx/datashard/ut_kqp/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_kqp/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_kqp/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_kqp/CMakeLists.linux-aarch64.txt index 7a5d54a82b..70eaf67922 100644 --- a/ydb/core/tx/datashard/ut_kqp/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_kqp/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_kqp/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_kqp/CMakeLists.linux.txt index 065f9dc22c..0aad365592 100644 --- a/ydb/core/tx/datashard/ut_kqp/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_kqp/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_kqp/CMakeLists.txt b/ydb/core/tx/datashard/ut_kqp/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_kqp/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_kqp/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.darwin.txt index b54fcb8d46..5b5e98d308 100644 --- a/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.linux-aarch64.txt index c8f6a96592..f4a46eef7c 100644 --- a/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.linux.txt index fa10d112c0..bb688695f7 100644 --- a/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.txt b/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.darwin.txt index f158976859..6d9ee2be7b 100644 --- a/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.linux-aarch64.txt index 91bd13e8a3..64e15cfedc 100644 --- a/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.linux.txt index bf7a0a16a1..e46aec382e 100644 --- a/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.txt b/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_locks/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_locks/CMakeLists.darwin.txt index a4f0177cb7..bce4785ba1 100644 --- a/ydb/core/tx/datashard/ut_locks/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_locks/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_locks/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_locks/CMakeLists.linux-aarch64.txt index 28d6f1d837..3cfa40ca23 100644 --- a/ydb/core/tx/datashard/ut_locks/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_locks/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_locks/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_locks/CMakeLists.linux.txt index df21ac3ac6..5ee710cf79 100644 --- a/ydb/core/tx/datashard/ut_locks/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_locks/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_locks/CMakeLists.txt b/ydb/core/tx/datashard/ut_locks/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_locks/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_locks/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_minikql/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_minikql/CMakeLists.darwin.txt index 67298af265..dd724043df 100644 --- a/ydb/core/tx/datashard/ut_minikql/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_minikql/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_minikql/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_minikql/CMakeLists.linux-aarch64.txt index d28748d38a..4514cf79e5 100644 --- a/ydb/core/tx/datashard/ut_minikql/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_minikql/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_minikql/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_minikql/CMakeLists.linux.txt index f01c9fef92..6428b12f40 100644 --- a/ydb/core/tx/datashard/ut_minikql/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_minikql/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_minikql/CMakeLists.txt b/ydb/core/tx/datashard/ut_minikql/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_minikql/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_minikql/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_minstep/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_minstep/CMakeLists.darwin.txt index 8a450055ae..9eb7b40b1f 100644 --- a/ydb/core/tx/datashard/ut_minstep/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_minstep/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_minstep/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_minstep/CMakeLists.linux-aarch64.txt index ab8c147fc1..c61824c8a5 100644 --- a/ydb/core/tx/datashard/ut_minstep/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_minstep/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_minstep/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_minstep/CMakeLists.linux.txt index ea46275bb1..c55fc89b21 100644 --- a/ydb/core/tx/datashard/ut_minstep/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_minstep/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_minstep/CMakeLists.txt b/ydb/core/tx/datashard/ut_minstep/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_minstep/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_minstep/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_order/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_order/CMakeLists.darwin.txt index 15fa08f39b..c83b3544da 100644 --- a/ydb/core/tx/datashard/ut_order/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_order/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_order/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_order/CMakeLists.linux-aarch64.txt index 7b48a25b1a..8e54085da0 100644 --- a/ydb/core/tx/datashard/ut_order/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_order/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_order/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_order/CMakeLists.linux.txt index 604a557516..850aa0031a 100644 --- a/ydb/core/tx/datashard/ut_order/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_order/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_order/CMakeLists.txt b/ydb/core/tx/datashard/ut_order/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_order/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_order/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.darwin.txt index 6c024b31fb..43697c8b7d 100644 --- a/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.linux-aarch64.txt index 565e7db2a7..20c1770db7 100644 --- a/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.linux.txt index a8e255c021..a71553ab88 100644 --- a/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.txt b/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_range_ops/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_range_ops/CMakeLists.darwin.txt index 7db2547942..07310208e4 100644 --- a/ydb/core/tx/datashard/ut_range_ops/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_range_ops/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_range_ops/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_range_ops/CMakeLists.linux-aarch64.txt index 9f594aa0c4..e0e0b057a6 100644 --- a/ydb/core/tx/datashard/ut_range_ops/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_range_ops/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_range_ops/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_range_ops/CMakeLists.linux.txt index 20bd8780ea..fdc4e6eac3 100644 --- a/ydb/core/tx/datashard/ut_range_ops/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_range_ops/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_range_ops/CMakeLists.txt b/ydb/core/tx/datashard/ut_range_ops/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_range_ops/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_range_ops/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_range_treap/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_range_treap/CMakeLists.darwin.txt index d26018dac2..0f70588a9d 100644 --- a/ydb/core/tx/datashard/ut_range_treap/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_range_treap/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_range_treap/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_range_treap/CMakeLists.linux-aarch64.txt index 9188cc3f9c..d4107a7ed9 100644 --- a/ydb/core/tx/datashard/ut_range_treap/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_range_treap/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_range_treap/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_range_treap/CMakeLists.linux.txt index e444d6c857..09fd2e76be 100644 --- a/ydb/core/tx/datashard/ut_range_treap/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_range_treap/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_range_treap/CMakeLists.txt b/ydb/core/tx/datashard/ut_range_treap/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_range_treap/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_range_treap/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.darwin.txt index fd9b603869..aa267223ee 100644 --- a/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.linux-aarch64.txt index 8ea9149469..4d25bbd403 100644 --- a/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.linux.txt index 159b691e08..a8681e6c37 100644 --- a/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.txt b/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_read_table/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_read_table/CMakeLists.darwin.txt index bef1935e6a..83776098db 100644 --- a/ydb/core/tx/datashard/ut_read_table/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_read_table/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_read_table/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_read_table/CMakeLists.linux-aarch64.txt index 340c9feb60..45b7e9d596 100644 --- a/ydb/core/tx/datashard/ut_read_table/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_read_table/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_read_table/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_read_table/CMakeLists.linux.txt index ab3c9dc090..1417f4b1f9 100644 --- a/ydb/core/tx/datashard/ut_read_table/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_read_table/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_read_table/CMakeLists.txt b/ydb/core/tx/datashard/ut_read_table/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_read_table/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_read_table/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_reassign/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_reassign/CMakeLists.darwin.txt index f1abbc8858..7dea57d2e0 100644 --- a/ydb/core/tx/datashard/ut_reassign/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_reassign/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_reassign/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_reassign/CMakeLists.linux-aarch64.txt index 349a179089..82d740933d 100644 --- a/ydb/core/tx/datashard/ut_reassign/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_reassign/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_reassign/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_reassign/CMakeLists.linux.txt index eb67a007b7..909007c8aa 100644 --- a/ydb/core/tx/datashard/ut_reassign/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_reassign/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_reassign/CMakeLists.txt b/ydb/core/tx/datashard/ut_reassign/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_reassign/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_reassign/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_replication/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_replication/CMakeLists.darwin.txt index 5b8312a550..d14487fc03 100644 --- a/ydb/core/tx/datashard/ut_replication/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_replication/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_replication/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_replication/CMakeLists.linux-aarch64.txt index 3655ae378c..a148626690 100644 --- a/ydb/core/tx/datashard/ut_replication/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_replication/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_replication/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_replication/CMakeLists.linux.txt index 3e172f51d0..1537cc6400 100644 --- a/ydb/core/tx/datashard/ut_replication/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_replication/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_replication/CMakeLists.txt b/ydb/core/tx/datashard/ut_replication/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_replication/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_replication/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_rs/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_rs/CMakeLists.darwin.txt index b3bc6b645c..b354f6640a 100644 --- a/ydb/core/tx/datashard/ut_rs/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_rs/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_rs/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_rs/CMakeLists.linux-aarch64.txt index 8f3743bb86..945da10793 100644 --- a/ydb/core/tx/datashard/ut_rs/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_rs/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_rs/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_rs/CMakeLists.linux.txt index 1aad3fd2d0..20144a564b 100644 --- a/ydb/core/tx/datashard/ut_rs/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_rs/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_rs/CMakeLists.txt b/ydb/core/tx/datashard/ut_rs/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_rs/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_rs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_snapshot/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_snapshot/CMakeLists.darwin.txt index f4b25a7759..8fb0b9e0da 100644 --- a/ydb/core/tx/datashard/ut_snapshot/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_snapshot/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_snapshot/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_snapshot/CMakeLists.linux-aarch64.txt index b373819780..388a06b58c 100644 --- a/ydb/core/tx/datashard/ut_snapshot/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_snapshot/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_snapshot/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_snapshot/CMakeLists.linux.txt index ce9978c5d1..53b9cc5991 100644 --- a/ydb/core/tx/datashard/ut_snapshot/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_snapshot/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_snapshot/CMakeLists.txt b/ydb/core/tx/datashard/ut_snapshot/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_snapshot/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_snapshot/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_stats/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_stats/CMakeLists.darwin.txt index ea7263a71e..ebe6967fbb 100644 --- a/ydb/core/tx/datashard/ut_stats/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_stats/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_stats/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_stats/CMakeLists.linux-aarch64.txt index 0f1bd97066..8d7994fa82 100644 --- a/ydb/core/tx/datashard/ut_stats/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_stats/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_stats/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_stats/CMakeLists.linux.txt index b779622767..931aa24670 100644 --- a/ydb/core/tx/datashard/ut_stats/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_stats/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_stats/CMakeLists.txt b/ydb/core/tx/datashard/ut_stats/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_stats/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_stats/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.darwin.txt index f266426caa..1f3732250e 100644 --- a/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.linux-aarch64.txt index 32fd70429e..407b63022c 100644 --- a/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.linux.txt index 5f736766c6..bc5c6ee9e9 100644 --- a/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.txt b/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_volatile/CMakeLists.darwin.txt b/ydb/core/tx/datashard/ut_volatile/CMakeLists.darwin.txt index 7c9ed5b640..137d7d163a 100644 --- a/ydb/core/tx/datashard/ut_volatile/CMakeLists.darwin.txt +++ b/ydb/core/tx/datashard/ut_volatile/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_volatile/CMakeLists.linux-aarch64.txt b/ydb/core/tx/datashard/ut_volatile/CMakeLists.linux-aarch64.txt index 12b06d9e07..b7a88e9ee0 100644 --- a/ydb/core/tx/datashard/ut_volatile/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/datashard/ut_volatile/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_volatile/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_volatile/CMakeLists.linux.txt index 45eeb9bc5d..17ea4b14b8 100644 --- a/ydb/core/tx/datashard/ut_volatile/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_volatile/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/datashard/ut_volatile/CMakeLists.txt b/ydb/core/tx/datashard/ut_volatile/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/datashard/ut_volatile/CMakeLists.txt +++ b/ydb/core/tx/datashard/ut_volatile/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/CMakeLists.darwin.txt b/ydb/core/tx/long_tx_service/CMakeLists.darwin.txt index ac354dd83d..c29cdc8938 100644 --- a/ydb/core/tx/long_tx_service/CMakeLists.darwin.txt +++ b/ydb/core/tx/long_tx_service/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/CMakeLists.linux-aarch64.txt b/ydb/core/tx/long_tx_service/CMakeLists.linux-aarch64.txt index cecdf350fc..9e74c57c6f 100644 --- a/ydb/core/tx/long_tx_service/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/long_tx_service/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/CMakeLists.linux.txt b/ydb/core/tx/long_tx_service/CMakeLists.linux.txt index cecdf350fc..9e74c57c6f 100644 --- a/ydb/core/tx/long_tx_service/CMakeLists.linux.txt +++ b/ydb/core/tx/long_tx_service/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/CMakeLists.txt b/ydb/core/tx/long_tx_service/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/long_tx_service/CMakeLists.txt +++ b/ydb/core/tx/long_tx_service/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/public/CMakeLists.darwin.txt b/ydb/core/tx/long_tx_service/public/CMakeLists.darwin.txt index 01668d86a2..81f9839443 100644 --- a/ydb/core/tx/long_tx_service/public/CMakeLists.darwin.txt +++ b/ydb/core/tx/long_tx_service/public/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/public/CMakeLists.linux-aarch64.txt b/ydb/core/tx/long_tx_service/public/CMakeLists.linux-aarch64.txt index 2b5ee65259..40b13ea0e1 100644 --- a/ydb/core/tx/long_tx_service/public/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/long_tx_service/public/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/public/CMakeLists.linux.txt b/ydb/core/tx/long_tx_service/public/CMakeLists.linux.txt index 2b5ee65259..40b13ea0e1 100644 --- a/ydb/core/tx/long_tx_service/public/CMakeLists.linux.txt +++ b/ydb/core/tx/long_tx_service/public/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/public/CMakeLists.txt b/ydb/core/tx/long_tx_service/public/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/long_tx_service/public/CMakeLists.txt +++ b/ydb/core/tx/long_tx_service/public/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/public/ut/CMakeLists.darwin.txt b/ydb/core/tx/long_tx_service/public/ut/CMakeLists.darwin.txt index 25393b6829..d61830bcc1 100644 --- a/ydb/core/tx/long_tx_service/public/ut/CMakeLists.darwin.txt +++ b/ydb/core/tx/long_tx_service/public/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/public/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tx/long_tx_service/public/ut/CMakeLists.linux-aarch64.txt index 7d56222a35..af96c346c4 100644 --- a/ydb/core/tx/long_tx_service/public/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/long_tx_service/public/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/public/ut/CMakeLists.linux.txt b/ydb/core/tx/long_tx_service/public/ut/CMakeLists.linux.txt index 64184226fa..c9dc549221 100644 --- a/ydb/core/tx/long_tx_service/public/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/long_tx_service/public/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/public/ut/CMakeLists.txt b/ydb/core/tx/long_tx_service/public/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/long_tx_service/public/ut/CMakeLists.txt +++ b/ydb/core/tx/long_tx_service/public/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/ut/CMakeLists.darwin.txt b/ydb/core/tx/long_tx_service/ut/CMakeLists.darwin.txt index f877946598..1a7ef15eeb 100644 --- a/ydb/core/tx/long_tx_service/ut/CMakeLists.darwin.txt +++ b/ydb/core/tx/long_tx_service/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tx/long_tx_service/ut/CMakeLists.linux-aarch64.txt index f6a7c727a8..7c847ee708 100644 --- a/ydb/core/tx/long_tx_service/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/long_tx_service/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/ut/CMakeLists.linux.txt b/ydb/core/tx/long_tx_service/ut/CMakeLists.linux.txt index 73f18097e0..0bad032361 100644 --- a/ydb/core/tx/long_tx_service/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/long_tx_service/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/long_tx_service/ut/CMakeLists.txt b/ydb/core/tx/long_tx_service/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/long_tx_service/ut/CMakeLists.txt +++ b/ydb/core/tx/long_tx_service/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/mediator/CMakeLists.darwin.txt b/ydb/core/tx/mediator/CMakeLists.darwin.txt index d5fc80b79b..e510cdc9d5 100644 --- a/ydb/core/tx/mediator/CMakeLists.darwin.txt +++ b/ydb/core/tx/mediator/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/mediator/CMakeLists.linux-aarch64.txt b/ydb/core/tx/mediator/CMakeLists.linux-aarch64.txt index 208d94c268..7a798aeff2 100644 --- a/ydb/core/tx/mediator/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/mediator/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/mediator/CMakeLists.linux.txt b/ydb/core/tx/mediator/CMakeLists.linux.txt index 208d94c268..7a798aeff2 100644 --- a/ydb/core/tx/mediator/CMakeLists.linux.txt +++ b/ydb/core/tx/mediator/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/mediator/CMakeLists.txt b/ydb/core/tx/mediator/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/mediator/CMakeLists.txt +++ b/ydb/core/tx/mediator/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/replication/CMakeLists.txt b/ydb/core/tx/replication/CMakeLists.txt index 710a6a0c66..fe827df615 100644 --- a/ydb/core/tx/replication/CMakeLists.txt +++ b/ydb/core/tx/replication/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/replication/controller/CMakeLists.darwin.txt b/ydb/core/tx/replication/controller/CMakeLists.darwin.txt index d83330da3d..b5e406fb9f 100644 --- a/ydb/core/tx/replication/controller/CMakeLists.darwin.txt +++ b/ydb/core/tx/replication/controller/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/replication/controller/CMakeLists.linux-aarch64.txt b/ydb/core/tx/replication/controller/CMakeLists.linux-aarch64.txt index 3bb04a97ce..49eef8a42b 100644 --- a/ydb/core/tx/replication/controller/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/replication/controller/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/replication/controller/CMakeLists.linux.txt b/ydb/core/tx/replication/controller/CMakeLists.linux.txt index 3bb04a97ce..49eef8a42b 100644 --- a/ydb/core/tx/replication/controller/CMakeLists.linux.txt +++ b/ydb/core/tx/replication/controller/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/replication/controller/CMakeLists.txt b/ydb/core/tx/replication/controller/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/replication/controller/CMakeLists.txt +++ b/ydb/core/tx/replication/controller/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/replication/ydb_proxy/CMakeLists.darwin.txt b/ydb/core/tx/replication/ydb_proxy/CMakeLists.darwin.txt index 9e3fc2864a..f5289141cd 100644 --- a/ydb/core/tx/replication/ydb_proxy/CMakeLists.darwin.txt +++ b/ydb/core/tx/replication/ydb_proxy/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/replication/ydb_proxy/CMakeLists.linux-aarch64.txt b/ydb/core/tx/replication/ydb_proxy/CMakeLists.linux-aarch64.txt index c5aa1f2ea1..dd04a0b7fe 100644 --- a/ydb/core/tx/replication/ydb_proxy/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/replication/ydb_proxy/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/replication/ydb_proxy/CMakeLists.linux.txt b/ydb/core/tx/replication/ydb_proxy/CMakeLists.linux.txt index c5aa1f2ea1..dd04a0b7fe 100644 --- a/ydb/core/tx/replication/ydb_proxy/CMakeLists.linux.txt +++ b/ydb/core/tx/replication/ydb_proxy/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/replication/ydb_proxy/CMakeLists.txt b/ydb/core/tx/replication/ydb_proxy/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/replication/ydb_proxy/CMakeLists.txt +++ b/ydb/core/tx/replication/ydb_proxy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.darwin.txt b/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.darwin.txt index bacc77648a..ddf3630d17 100644 --- a/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.darwin.txt +++ b/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.linux-aarch64.txt index 782f42f382..8df6c73237 100644 --- a/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.linux.txt b/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.linux.txt index 8e55bbf665..c134087ccb 100644 --- a/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.txt b/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.txt +++ b/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/CMakeLists.darwin.txt b/ydb/core/tx/scheme_board/CMakeLists.darwin.txt index a5671f3049..9934cd781f 100644 --- a/ydb/core/tx/scheme_board/CMakeLists.darwin.txt +++ b/ydb/core/tx/scheme_board/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/CMakeLists.linux-aarch64.txt b/ydb/core/tx/scheme_board/CMakeLists.linux-aarch64.txt index 8a8f94c9f0..19fe36bc98 100644 --- a/ydb/core/tx/scheme_board/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/scheme_board/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/CMakeLists.linux.txt b/ydb/core/tx/scheme_board/CMakeLists.linux.txt index 8a8f94c9f0..19fe36bc98 100644 --- a/ydb/core/tx/scheme_board/CMakeLists.linux.txt +++ b/ydb/core/tx/scheme_board/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/CMakeLists.txt b/ydb/core/tx/scheme_board/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/scheme_board/CMakeLists.txt +++ b/ydb/core/tx/scheme_board/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_cache/CMakeLists.darwin.txt b/ydb/core/tx/scheme_board/ut_cache/CMakeLists.darwin.txt index 265960eda8..d4c48cdf16 100644 --- a/ydb/core/tx/scheme_board/ut_cache/CMakeLists.darwin.txt +++ b/ydb/core/tx/scheme_board/ut_cache/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_cache/CMakeLists.linux-aarch64.txt b/ydb/core/tx/scheme_board/ut_cache/CMakeLists.linux-aarch64.txt index 3ee8f8f80a..f7d18f320a 100644 --- a/ydb/core/tx/scheme_board/ut_cache/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/scheme_board/ut_cache/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_cache/CMakeLists.linux.txt b/ydb/core/tx/scheme_board/ut_cache/CMakeLists.linux.txt index d15f175d99..391c44606e 100644 --- a/ydb/core/tx/scheme_board/ut_cache/CMakeLists.linux.txt +++ b/ydb/core/tx/scheme_board/ut_cache/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_cache/CMakeLists.txt b/ydb/core/tx/scheme_board/ut_cache/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/scheme_board/ut_cache/CMakeLists.txt +++ b/ydb/core/tx/scheme_board/ut_cache/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.darwin.txt b/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.darwin.txt index 307d5deca0..0662a5962b 100644 --- a/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.darwin.txt +++ b/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.linux-aarch64.txt b/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.linux-aarch64.txt index 57cb2d1081..703b96ff54 100644 --- a/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.linux.txt b/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.linux.txt index 71183d31ff..55196d7cef 100644 --- a/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.linux.txt +++ b/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.txt b/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.txt +++ b/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.darwin.txt b/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.darwin.txt index 41461692b2..e770b4ae0b 100644 --- a/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.darwin.txt +++ b/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.linux-aarch64.txt b/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.linux-aarch64.txt index bd99e894b9..450a95b504 100644 --- a/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.linux.txt b/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.linux.txt index ffb598925b..a2a8549311 100644 --- a/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.linux.txt +++ b/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.txt b/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.txt +++ b/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_populator/CMakeLists.darwin.txt b/ydb/core/tx/scheme_board/ut_populator/CMakeLists.darwin.txt index 56348f4ed2..1f366bc195 100644 --- a/ydb/core/tx/scheme_board/ut_populator/CMakeLists.darwin.txt +++ b/ydb/core/tx/scheme_board/ut_populator/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_populator/CMakeLists.linux-aarch64.txt b/ydb/core/tx/scheme_board/ut_populator/CMakeLists.linux-aarch64.txt index 8b502b7999..cc816492f5 100644 --- a/ydb/core/tx/scheme_board/ut_populator/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/scheme_board/ut_populator/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_populator/CMakeLists.linux.txt b/ydb/core/tx/scheme_board/ut_populator/CMakeLists.linux.txt index 691557851f..535675f314 100644 --- a/ydb/core/tx/scheme_board/ut_populator/CMakeLists.linux.txt +++ b/ydb/core/tx/scheme_board/ut_populator/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_populator/CMakeLists.txt b/ydb/core/tx/scheme_board/ut_populator/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/scheme_board/ut_populator/CMakeLists.txt +++ b/ydb/core/tx/scheme_board/ut_populator/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_replica/CMakeLists.darwin.txt b/ydb/core/tx/scheme_board/ut_replica/CMakeLists.darwin.txt index 9998d46b57..d85ccae1e7 100644 --- a/ydb/core/tx/scheme_board/ut_replica/CMakeLists.darwin.txt +++ b/ydb/core/tx/scheme_board/ut_replica/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_replica/CMakeLists.linux-aarch64.txt b/ydb/core/tx/scheme_board/ut_replica/CMakeLists.linux-aarch64.txt index cf35ea1aaa..28c2b89041 100644 --- a/ydb/core/tx/scheme_board/ut_replica/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/scheme_board/ut_replica/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_replica/CMakeLists.linux.txt b/ydb/core/tx/scheme_board/ut_replica/CMakeLists.linux.txt index 1450e810a8..892c622371 100644 --- a/ydb/core/tx/scheme_board/ut_replica/CMakeLists.linux.txt +++ b/ydb/core/tx/scheme_board/ut_replica/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_replica/CMakeLists.txt b/ydb/core/tx/scheme_board/ut_replica/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/scheme_board/ut_replica/CMakeLists.txt +++ b/ydb/core/tx/scheme_board/ut_replica/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.darwin.txt b/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.darwin.txt index 24b5ef04ef..cdc6da75a7 100644 --- a/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.darwin.txt +++ b/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.linux-aarch64.txt b/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.linux-aarch64.txt index d19e8858ca..385b6228d4 100644 --- a/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.linux.txt b/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.linux.txt index ddd3373cb4..c41f9544bf 100644 --- a/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.linux.txt +++ b/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.txt b/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.txt +++ b/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_cache/CMakeLists.darwin.txt b/ydb/core/tx/scheme_cache/CMakeLists.darwin.txt index 30c7e27370..52af4f51e1 100644 --- a/ydb/core/tx/scheme_cache/CMakeLists.darwin.txt +++ b/ydb/core/tx/scheme_cache/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_cache/CMakeLists.linux-aarch64.txt b/ydb/core/tx/scheme_cache/CMakeLists.linux-aarch64.txt index d34de3dba3..a5b5ceb1a2 100644 --- a/ydb/core/tx/scheme_cache/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/scheme_cache/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_cache/CMakeLists.linux.txt b/ydb/core/tx/scheme_cache/CMakeLists.linux.txt index d34de3dba3..a5b5ceb1a2 100644 --- a/ydb/core/tx/scheme_cache/CMakeLists.linux.txt +++ b/ydb/core/tx/scheme_cache/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/scheme_cache/CMakeLists.txt b/ydb/core/tx/scheme_cache/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/scheme_cache/CMakeLists.txt +++ b/ydb/core/tx/scheme_cache/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/CMakeLists.darwin.txt index b5c3ab6270..30d43d36c9 100644 --- a/ydb/core/tx/schemeshard/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/CMakeLists.linux-aarch64.txt index 6995ad9351..cad15eddcf 100644 --- a/ydb/core/tx/schemeshard/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/CMakeLists.linux.txt index 6995ad9351..cad15eddcf 100644 --- a/ydb/core/tx/schemeshard/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/CMakeLists.txt b/ydb/core/tx/schemeshard/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.darwin.txt index 68213fe33e..1241b65ed1 100644 --- a/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.linux-aarch64.txt index 0ccde1a16d..75e7c05265 100644 --- a/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.linux.txt index 546239a943..75fc66344a 100644 --- a/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_backup/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_backup/CMakeLists.darwin.txt index ac9af780e9..7bd789d18c 100644 --- a/ydb/core/tx/schemeshard/ut_backup/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_backup/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_backup/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_backup/CMakeLists.linux-aarch64.txt index 682432d540..2d60d0b6d7 100644 --- a/ydb/core/tx/schemeshard/ut_backup/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_backup/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_backup/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_backup/CMakeLists.linux.txt index 1294f84452..d89b652088 100644 --- a/ydb/core/tx/schemeshard/ut_backup/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_backup/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_backup/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_backup/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_backup/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_backup/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_base/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_base/CMakeLists.darwin.txt index 6b2dd7ed28..16c4bc53c7 100644 --- a/ydb/core/tx/schemeshard/ut_base/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_base/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_base/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_base/CMakeLists.linux-aarch64.txt index f7fe6faba9..31c6cd53be 100644 --- a/ydb/core/tx/schemeshard/ut_base/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_base/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_base/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_base/CMakeLists.linux.txt index dee34337a1..8eecdba711 100644 --- a/ydb/core/tx/schemeshard/ut_base/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_base/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_base/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_base/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_base/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_base/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.darwin.txt index 17119a42d9..ce14712ad7 100644 --- a/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.linux-aarch64.txt index be05a22dc3..3783d662e6 100644 --- a/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.linux.txt index 574b1ad015..7cfbff7cbc 100644 --- a/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.darwin.txt index 894fa9e2d3..ffcdd7a546 100644 --- a/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.linux-aarch64.txt index 59efcfe9b9..df3d2bb4ff 100644 --- a/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.linux.txt index ffecfdf042..4fd7e16fec 100644 --- a/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.darwin.txt index 67e5667c4d..c4ca7cce9a 100644 --- a/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.linux-aarch64.txt index 902e399085..6b0382c24a 100644 --- a/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.linux.txt index a50fd3ee71..67bd0e1a00 100644 --- a/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.darwin.txt index 9d5d5728dd..2158ce8ec6 100644 --- a/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.linux-aarch64.txt index 5be67eb84a..32c0761bcd 100644 --- a/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.linux.txt index 2f1f575e77..d071ed77f0 100644 --- a/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.darwin.txt index 6fb92e0799..dfda3e6c21 100644 --- a/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.linux-aarch64.txt index 28058403db..871f30254e 100644 --- a/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.linux.txt index 9e07abd8f5..2529a296b2 100644 --- a/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.darwin.txt index f1e290382a..fbc741a397 100644 --- a/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.linux-aarch64.txt index 430fab028f..c44ec151dd 100644 --- a/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.linux.txt index d9a6f3b33f..cc2074c3d5 100644 --- a/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_export/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_export/CMakeLists.darwin.txt index ae1c2216fa..d6e4ef4aac 100644 --- a/ydb/core/tx/schemeshard/ut_export/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_export/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_export/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_export/CMakeLists.linux-aarch64.txt index 2041f8b9fa..62f17a1bb5 100644 --- a/ydb/core/tx/schemeshard/ut_export/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_export/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_export/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_export/CMakeLists.linux.txt index 355ae5a461..e1a7434115 100644 --- a/ydb/core/tx/schemeshard/ut_export/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_export/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_export/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_export/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_export/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_export/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.darwin.txt index 364a12f069..40a84a41ef 100644 --- a/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.linux-aarch64.txt index 3febade8e9..a49b975c46 100644 --- a/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.linux.txt index ddcdddd773..9a4030e9d2 100644 --- a/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.darwin.txt index 887d3425ed..b60a9b7268 100644 --- a/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.linux-aarch64.txt index 1f2360a781..02d29f0717 100644 --- a/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.linux.txt index 5033551d0a..5495e71022 100644 --- a/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.darwin.txt index 18b25bdbb2..dd1a885d0a 100644 --- a/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.linux-aarch64.txt index d1af77b6b7..a7e704f88a 100644 --- a/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.linux.txt index 70ab975480..56f6b712dc 100644 --- a/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.darwin.txt index a43e52b9eb..79e932c23b 100644 --- a/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.linux-aarch64.txt index 0bb5d90954..b0c788e388 100644 --- a/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.linux.txt index ca5bf595aa..9512d9dda8 100644 --- a/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.darwin.txt index 70e1cd2961..f7e8181651 100644 --- a/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.linux-aarch64.txt index 0240deed2f..eba6438ce6 100644 --- a/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.linux.txt index 0240deed2f..eba6438ce6 100644 --- a/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_helpers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.darwin.txt index acabcfd0b4..eebbfca6b9 100644 --- a/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.linux-aarch64.txt index b1dd70d60e..3a373ddab9 100644 --- a/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.linux.txt index e50c68167d..c8bba43ba8 100644 --- a/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.darwin.txt index da78d41761..e3a6a14aeb 100644 --- a/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.linux-aarch64.txt index 959605a008..db8a7cc09e 100644 --- a/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.linux.txt index 4aef68e479..98f05949db 100644 --- a/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_login/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_login/CMakeLists.darwin.txt index 64f3cd949f..f6fb1eb060 100644 --- a/ydb/core/tx/schemeshard/ut_login/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_login/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_login/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_login/CMakeLists.linux-aarch64.txt index 5c19f9f8e1..3a6d02fe4f 100644 --- a/ydb/core/tx/schemeshard/ut_login/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_login/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_login/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_login/CMakeLists.linux.txt index 8d61693128..0ea65a33a5 100644 --- a/ydb/core/tx/schemeshard/ut_login/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_login/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_login/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_login/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_login/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_login/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_move/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_move/CMakeLists.darwin.txt index abca206eb1..8d1928189f 100644 --- a/ydb/core/tx/schemeshard/ut_move/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_move/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_move/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_move/CMakeLists.linux-aarch64.txt index 62f181f732..769872a1e5 100644 --- a/ydb/core/tx/schemeshard/ut_move/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_move/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_move/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_move/CMakeLists.linux.txt index f80a7562f6..ded8e8b2c5 100644 --- a/ydb/core/tx/schemeshard/ut_move/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_move/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_move/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_move/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_move/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_move/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.darwin.txt index 8f88cb3861..d8f45f6718 100644 --- a/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.linux-aarch64.txt index abb919d96f..9737dfc445 100644 --- a/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.linux.txt index 7768a75a9e..40c93f1633 100644 --- a/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_olap/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_olap/CMakeLists.darwin.txt index 300270735b..4ff56085d9 100644 --- a/ydb/core/tx/schemeshard/ut_olap/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_olap/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_olap/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_olap/CMakeLists.linux-aarch64.txt index c4323d8426..3aea291ade 100644 --- a/ydb/core/tx/schemeshard/ut_olap/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_olap/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_olap/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_olap/CMakeLists.linux.txt index 9ddf2319fa..91504d9bb5 100644 --- a/ydb/core/tx/schemeshard/ut_olap/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_olap/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_olap/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_olap/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_olap/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_olap/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.darwin.txt index 0d5e0f1768..b556899760 100644 --- a/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.linux-aarch64.txt index 733d11f3e2..8aaf088a81 100644 --- a/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.linux.txt index 3f6057aaf9..1ff19b0e46 100644 --- a/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_pq/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_pq/CMakeLists.darwin.txt index 017d6cdf35..fc07fac232 100644 --- a/ydb/core/tx/schemeshard/ut_pq/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_pq/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_pq/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_pq/CMakeLists.linux-aarch64.txt index 66593a23c4..4f3e24a6a4 100644 --- a/ydb/core/tx/schemeshard/ut_pq/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_pq/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_pq/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_pq/CMakeLists.linux.txt index 9a6e5b5b7a..c8725b38e7 100644 --- a/ydb/core/tx/schemeshard/ut_pq/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_pq/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_pq/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_pq/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_pq/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_pq/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.darwin.txt index 2d1d7f31e6..5fbd9d74bf 100644 --- a/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.linux-aarch64.txt index e4522bbb4d..9f8be44ade 100644 --- a/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.linux.txt index 25979a5933..5f767d465b 100644 --- a/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.darwin.txt index 044408beda..4fe2f02900 100644 --- a/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.linux-aarch64.txt index 2a7dd07da3..b5c83d93d5 100644 --- a/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.linux.txt index da9ea05cb0..79b65c0740 100644 --- a/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_replication/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_replication/CMakeLists.darwin.txt index e974358b97..7d3374568c 100644 --- a/ydb/core/tx/schemeshard/ut_replication/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_replication/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_replication/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_replication/CMakeLists.linux-aarch64.txt index ec9b5a4869..934a67e9bd 100644 --- a/ydb/core/tx/schemeshard/ut_replication/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_replication/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_replication/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_replication/CMakeLists.linux.txt index f1f49b5d59..2b695c4fa7 100644 --- a/ydb/core/tx/schemeshard/ut_replication/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_replication/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_replication/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_replication/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_replication/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_replication/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.darwin.txt index 41e5928e1c..fd702a9854 100644 --- a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux-aarch64.txt index 6e1526b8a7..4a6009ee9e 100644 --- a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux.txt index b2021e7f9e..ce5ac7e1f6 100644 --- a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_restore/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_restore/CMakeLists.darwin.txt index 32d1f0e059..1ac79f1658 100644 --- a/ydb/core/tx/schemeshard/ut_restore/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_restore/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_restore/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_restore/CMakeLists.linux-aarch64.txt index 9a4824e997..7a42531e8a 100644 --- a/ydb/core/tx/schemeshard/ut_restore/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_restore/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_restore/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_restore/CMakeLists.linux.txt index 78a810c7e2..e05a43e9f3 100644 --- a/ydb/core/tx/schemeshard/ut_restore/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_restore/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_restore/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_restore/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_restore/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_restore/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.darwin.txt index c882009deb..6519005f59 100644 --- a/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.linux-aarch64.txt index 6dd8f1c381..42a46a1341 100644 --- a/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.linux.txt index 9973b4fb02..46b251dcf4 100644 --- a/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.darwin.txt index b73503e073..df429e1ce2 100644 --- a/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.linux-aarch64.txt index 65b800e2dd..83d4b51ffb 100644 --- a/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.linux.txt index bee6dde6d2..68bac2d9b5 100644 --- a/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 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 008f21ae44..13a10e980e 100644 --- a/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.linux-aarch64.txt index 48b99b2c14..9c93a2c959 100644 --- a/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 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 eaafee187e..3c98566626 100644 --- a/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.darwin.txt index c8ca96dbc6..13f9a0f02a 100644 --- a/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.linux-aarch64.txt index 6662ca6999..703d9ea17a 100644 --- a/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.linux.txt index 762c674ccf..91973bb1c4 100644 --- a/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.darwin.txt index 407211f901..c1fbd7da3a 100644 --- a/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.linux-aarch64.txt index 98f93ab782..0e75e3ffce 100644 --- a/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.linux.txt index 43beec99f7..927d2db361 100644 --- a/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.darwin.txt index 6168fe217f..7e8ff14b56 100644 --- a/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.linux-aarch64.txt index 04aeb015e6..d899dda7a0 100644 --- a/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.linux.txt index 6421e1ebb0..9439e40d75 100644 --- a/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.darwin.txt index cd264ac488..556d43db1c 100644 --- a/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.linux-aarch64.txt index d161e545d4..b0f58c5ecc 100644 --- a/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.linux.txt index 316511a073..d910947966 100644 --- a/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.darwin.txt index c193f778d2..d340a1aace 100644 --- a/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.linux-aarch64.txt index 839e1bcfd1..b5ba433df1 100644 --- a/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.linux.txt index a671c83e42..73003da7d8 100644 --- a/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_stats/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_stats/CMakeLists.darwin.txt index cb9622f83f..0e5889e6c0 100644 --- a/ydb/core/tx/schemeshard/ut_stats/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_stats/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_stats/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_stats/CMakeLists.linux-aarch64.txt index 23fcee6612..ed5bb9cb13 100644 --- a/ydb/core/tx/schemeshard/ut_stats/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_stats/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_stats/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_stats/CMakeLists.linux.txt index 47a5a90d6f..9a84f2cb55 100644 --- a/ydb/core/tx/schemeshard/ut_stats/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_stats/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_stats/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_stats/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_stats/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_stats/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.darwin.txt index a096f56b15..2cdea4526c 100644 --- a/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.linux-aarch64.txt index b298446be5..0e22b2d1f9 100644 --- a/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.linux.txt index 53443579f5..332f88fecf 100644 --- a/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.darwin.txt index c1bb342ae6..6a1c8c9fed 100644 --- a/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.linux-aarch64.txt index e491522030..d6768cd5b4 100644 --- a/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.linux.txt index e313e1e415..9143b8bdbb 100644 --- a/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.darwin.txt index 90ad73fde6..fb8ac40105 100644 --- a/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.linux-aarch64.txt index 3100bc2f62..c267ca6675 100644 --- a/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.linux.txt index e1ad9c344b..77637459c0 100644 --- a/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.darwin.txt index bd700aa60b..bcda88dc12 100644 --- a/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.linux-aarch64.txt index 0acab4192d..c1e5f51878 100644 --- a/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.linux.txt index 20b04b78d8..0c927c8d1e 100644 --- a/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.darwin.txt b/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.darwin.txt index f65860e3c6..43bc52a93e 100644 --- a/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.darwin.txt +++ b/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.linux-aarch64.txt index 2e6d05e434..a8ede60764 100644 --- a/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.linux.txt index 286f01db5f..41b359f14f 100644 --- a/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.txt b/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.txt +++ b/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceproxy/CMakeLists.darwin.txt b/ydb/core/tx/sequenceproxy/CMakeLists.darwin.txt index eb992b1100..6721cb25be 100644 --- a/ydb/core/tx/sequenceproxy/CMakeLists.darwin.txt +++ b/ydb/core/tx/sequenceproxy/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceproxy/CMakeLists.linux-aarch64.txt b/ydb/core/tx/sequenceproxy/CMakeLists.linux-aarch64.txt index 6f16b3aeba..3481f5a84b 100644 --- a/ydb/core/tx/sequenceproxy/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/sequenceproxy/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceproxy/CMakeLists.linux.txt b/ydb/core/tx/sequenceproxy/CMakeLists.linux.txt index 6f16b3aeba..3481f5a84b 100644 --- a/ydb/core/tx/sequenceproxy/CMakeLists.linux.txt +++ b/ydb/core/tx/sequenceproxy/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceproxy/CMakeLists.txt b/ydb/core/tx/sequenceproxy/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/sequenceproxy/CMakeLists.txt +++ b/ydb/core/tx/sequenceproxy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceproxy/public/CMakeLists.darwin.txt b/ydb/core/tx/sequenceproxy/public/CMakeLists.darwin.txt index e9963f75da..db31ad4641 100644 --- a/ydb/core/tx/sequenceproxy/public/CMakeLists.darwin.txt +++ b/ydb/core/tx/sequenceproxy/public/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceproxy/public/CMakeLists.linux-aarch64.txt b/ydb/core/tx/sequenceproxy/public/CMakeLists.linux-aarch64.txt index df41f7745c..f5e2d23541 100644 --- a/ydb/core/tx/sequenceproxy/public/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/sequenceproxy/public/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceproxy/public/CMakeLists.linux.txt b/ydb/core/tx/sequenceproxy/public/CMakeLists.linux.txt index df41f7745c..f5e2d23541 100644 --- a/ydb/core/tx/sequenceproxy/public/CMakeLists.linux.txt +++ b/ydb/core/tx/sequenceproxy/public/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceproxy/public/CMakeLists.txt b/ydb/core/tx/sequenceproxy/public/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/sequenceproxy/public/CMakeLists.txt +++ b/ydb/core/tx/sequenceproxy/public/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceproxy/ut/CMakeLists.darwin.txt b/ydb/core/tx/sequenceproxy/ut/CMakeLists.darwin.txt index 65f46fedb4..5b2948d297 100644 --- a/ydb/core/tx/sequenceproxy/ut/CMakeLists.darwin.txt +++ b/ydb/core/tx/sequenceproxy/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceproxy/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tx/sequenceproxy/ut/CMakeLists.linux-aarch64.txt index 2454b79895..c330df157a 100644 --- a/ydb/core/tx/sequenceproxy/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/sequenceproxy/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceproxy/ut/CMakeLists.linux.txt b/ydb/core/tx/sequenceproxy/ut/CMakeLists.linux.txt index aa3e43c422..3912158a46 100644 --- a/ydb/core/tx/sequenceproxy/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/sequenceproxy/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceproxy/ut/CMakeLists.txt b/ydb/core/tx/sequenceproxy/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/sequenceproxy/ut/CMakeLists.txt +++ b/ydb/core/tx/sequenceproxy/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/CMakeLists.darwin.txt b/ydb/core/tx/sequenceshard/CMakeLists.darwin.txt index 77106a446b..fd516913ac 100644 --- a/ydb/core/tx/sequenceshard/CMakeLists.darwin.txt +++ b/ydb/core/tx/sequenceshard/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/CMakeLists.linux-aarch64.txt b/ydb/core/tx/sequenceshard/CMakeLists.linux-aarch64.txt index f8b59b4e8d..8452c94f2c 100644 --- a/ydb/core/tx/sequenceshard/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/sequenceshard/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/CMakeLists.linux.txt b/ydb/core/tx/sequenceshard/CMakeLists.linux.txt index f8b59b4e8d..8452c94f2c 100644 --- a/ydb/core/tx/sequenceshard/CMakeLists.linux.txt +++ b/ydb/core/tx/sequenceshard/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/CMakeLists.txt b/ydb/core/tx/sequenceshard/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/sequenceshard/CMakeLists.txt +++ b/ydb/core/tx/sequenceshard/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/public/CMakeLists.darwin.txt b/ydb/core/tx/sequenceshard/public/CMakeLists.darwin.txt index 575930e31d..b70b20404b 100644 --- a/ydb/core/tx/sequenceshard/public/CMakeLists.darwin.txt +++ b/ydb/core/tx/sequenceshard/public/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/public/CMakeLists.linux-aarch64.txt b/ydb/core/tx/sequenceshard/public/CMakeLists.linux-aarch64.txt index f7088fee42..b654db1b44 100644 --- a/ydb/core/tx/sequenceshard/public/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/sequenceshard/public/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/public/CMakeLists.linux.txt b/ydb/core/tx/sequenceshard/public/CMakeLists.linux.txt index f7088fee42..b654db1b44 100644 --- a/ydb/core/tx/sequenceshard/public/CMakeLists.linux.txt +++ b/ydb/core/tx/sequenceshard/public/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/public/CMakeLists.txt b/ydb/core/tx/sequenceshard/public/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/sequenceshard/public/CMakeLists.txt +++ b/ydb/core/tx/sequenceshard/public/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/public/ut/CMakeLists.darwin.txt b/ydb/core/tx/sequenceshard/public/ut/CMakeLists.darwin.txt index c15d9e8fbd..e47cae0ec1 100644 --- a/ydb/core/tx/sequenceshard/public/ut/CMakeLists.darwin.txt +++ b/ydb/core/tx/sequenceshard/public/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/public/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tx/sequenceshard/public/ut/CMakeLists.linux-aarch64.txt index 5500545817..42dd0ae3ea 100644 --- a/ydb/core/tx/sequenceshard/public/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/sequenceshard/public/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/public/ut/CMakeLists.linux.txt b/ydb/core/tx/sequenceshard/public/ut/CMakeLists.linux.txt index d7f6c09e51..37f51bf929 100644 --- a/ydb/core/tx/sequenceshard/public/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/sequenceshard/public/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/public/ut/CMakeLists.txt b/ydb/core/tx/sequenceshard/public/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/sequenceshard/public/ut/CMakeLists.txt +++ b/ydb/core/tx/sequenceshard/public/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/ut/CMakeLists.darwin.txt b/ydb/core/tx/sequenceshard/ut/CMakeLists.darwin.txt index be53bd6286..5606970821 100644 --- a/ydb/core/tx/sequenceshard/ut/CMakeLists.darwin.txt +++ b/ydb/core/tx/sequenceshard/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tx/sequenceshard/ut/CMakeLists.linux-aarch64.txt index 4c6154fd9e..b136db1fa2 100644 --- a/ydb/core/tx/sequenceshard/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/sequenceshard/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/ut/CMakeLists.linux.txt b/ydb/core/tx/sequenceshard/ut/CMakeLists.linux.txt index bfadc3243c..377b856058 100644 --- a/ydb/core/tx/sequenceshard/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/sequenceshard/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/sequenceshard/ut/CMakeLists.txt b/ydb/core/tx/sequenceshard/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/sequenceshard/ut/CMakeLists.txt +++ b/ydb/core/tx/sequenceshard/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/CMakeLists.darwin.txt b/ydb/core/tx/tiering/CMakeLists.darwin.txt index b9df41b2f3..4b08fc0283 100644 --- a/ydb/core/tx/tiering/CMakeLists.darwin.txt +++ b/ydb/core/tx/tiering/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/CMakeLists.linux-aarch64.txt b/ydb/core/tx/tiering/CMakeLists.linux-aarch64.txt index f5d3f1fb2c..f2ac5fd618 100644 --- a/ydb/core/tx/tiering/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/tiering/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/CMakeLists.linux.txt b/ydb/core/tx/tiering/CMakeLists.linux.txt index f5d3f1fb2c..f2ac5fd618 100644 --- a/ydb/core/tx/tiering/CMakeLists.linux.txt +++ b/ydb/core/tx/tiering/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/CMakeLists.txt b/ydb/core/tx/tiering/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/tiering/CMakeLists.txt +++ b/ydb/core/tx/tiering/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/rule/CMakeLists.darwin.txt b/ydb/core/tx/tiering/rule/CMakeLists.darwin.txt index 72a76159e5..9cf06ee67b 100644 --- a/ydb/core/tx/tiering/rule/CMakeLists.darwin.txt +++ b/ydb/core/tx/tiering/rule/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/rule/CMakeLists.linux-aarch64.txt b/ydb/core/tx/tiering/rule/CMakeLists.linux-aarch64.txt index 0e12355e99..38d5d642b6 100644 --- a/ydb/core/tx/tiering/rule/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/tiering/rule/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/rule/CMakeLists.linux.txt b/ydb/core/tx/tiering/rule/CMakeLists.linux.txt index 0e12355e99..38d5d642b6 100644 --- a/ydb/core/tx/tiering/rule/CMakeLists.linux.txt +++ b/ydb/core/tx/tiering/rule/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/rule/CMakeLists.txt b/ydb/core/tx/tiering/rule/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/tiering/rule/CMakeLists.txt +++ b/ydb/core/tx/tiering/rule/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/tier/CMakeLists.darwin.txt b/ydb/core/tx/tiering/tier/CMakeLists.darwin.txt index 8de15b42fc..d07ec52387 100644 --- a/ydb/core/tx/tiering/tier/CMakeLists.darwin.txt +++ b/ydb/core/tx/tiering/tier/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/tier/CMakeLists.linux-aarch64.txt b/ydb/core/tx/tiering/tier/CMakeLists.linux-aarch64.txt index 623c0aee8f..fe4dc07239 100644 --- a/ydb/core/tx/tiering/tier/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/tiering/tier/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/tier/CMakeLists.linux.txt b/ydb/core/tx/tiering/tier/CMakeLists.linux.txt index 623c0aee8f..fe4dc07239 100644 --- a/ydb/core/tx/tiering/tier/CMakeLists.linux.txt +++ b/ydb/core/tx/tiering/tier/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/tier/CMakeLists.txt b/ydb/core/tx/tiering/tier/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/tiering/tier/CMakeLists.txt +++ b/ydb/core/tx/tiering/tier/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/ut/CMakeLists.darwin.txt b/ydb/core/tx/tiering/ut/CMakeLists.darwin.txt index d89539e28f..d0ed520f2e 100644 --- a/ydb/core/tx/tiering/ut/CMakeLists.darwin.txt +++ b/ydb/core/tx/tiering/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tx/tiering/ut/CMakeLists.linux-aarch64.txt index 86d9699007..35c1ba6489 100644 --- a/ydb/core/tx/tiering/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/tiering/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/ut/CMakeLists.linux.txt b/ydb/core/tx/tiering/ut/CMakeLists.linux.txt index 3367d6bea2..34c071929a 100644 --- a/ydb/core/tx/tiering/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/tiering/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tiering/ut/CMakeLists.txt b/ydb/core/tx/tiering/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/tiering/ut/CMakeLists.txt +++ b/ydb/core/tx/tiering/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/time_cast/CMakeLists.darwin.txt b/ydb/core/tx/time_cast/CMakeLists.darwin.txt index a59d2b56bb..054f1eabe4 100644 --- a/ydb/core/tx/time_cast/CMakeLists.darwin.txt +++ b/ydb/core/tx/time_cast/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/time_cast/CMakeLists.linux-aarch64.txt b/ydb/core/tx/time_cast/CMakeLists.linux-aarch64.txt index 3aa6cbcab0..9e53bc8466 100644 --- a/ydb/core/tx/time_cast/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/time_cast/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/time_cast/CMakeLists.linux.txt b/ydb/core/tx/time_cast/CMakeLists.linux.txt index 3aa6cbcab0..9e53bc8466 100644 --- a/ydb/core/tx/time_cast/CMakeLists.linux.txt +++ b/ydb/core/tx/time_cast/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/time_cast/CMakeLists.txt b/ydb/core/tx/time_cast/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/time_cast/CMakeLists.txt +++ b/ydb/core/tx/time_cast/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/time_cast/ut/CMakeLists.darwin.txt b/ydb/core/tx/time_cast/ut/CMakeLists.darwin.txt index cffbcedb4d..22cc24195f 100644 --- a/ydb/core/tx/time_cast/ut/CMakeLists.darwin.txt +++ b/ydb/core/tx/time_cast/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/time_cast/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tx/time_cast/ut/CMakeLists.linux-aarch64.txt index d1dad77971..68c96fa278 100644 --- a/ydb/core/tx/time_cast/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/time_cast/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/time_cast/ut/CMakeLists.linux.txt b/ydb/core/tx/time_cast/ut/CMakeLists.linux.txt index ff9b10cb27..994476f807 100644 --- a/ydb/core/tx/time_cast/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/time_cast/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/time_cast/ut/CMakeLists.txt b/ydb/core/tx/time_cast/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/time_cast/ut/CMakeLists.txt +++ b/ydb/core/tx/time_cast/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator/CMakeLists.darwin.txt b/ydb/core/tx/tx_allocator/CMakeLists.darwin.txt index 40cc6362bb..df9580cfab 100644 --- a/ydb/core/tx/tx_allocator/CMakeLists.darwin.txt +++ b/ydb/core/tx/tx_allocator/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator/CMakeLists.linux-aarch64.txt b/ydb/core/tx/tx_allocator/CMakeLists.linux-aarch64.txt index 71373ecbe3..093b85ebe8 100644 --- a/ydb/core/tx/tx_allocator/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/tx_allocator/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator/CMakeLists.linux.txt b/ydb/core/tx/tx_allocator/CMakeLists.linux.txt index 71373ecbe3..093b85ebe8 100644 --- a/ydb/core/tx/tx_allocator/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_allocator/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator/CMakeLists.txt b/ydb/core/tx/tx_allocator/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/tx_allocator/CMakeLists.txt +++ b/ydb/core/tx/tx_allocator/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator/ut/CMakeLists.darwin.txt b/ydb/core/tx/tx_allocator/ut/CMakeLists.darwin.txt index ebfd6197df..c735477b09 100644 --- a/ydb/core/tx/tx_allocator/ut/CMakeLists.darwin.txt +++ b/ydb/core/tx/tx_allocator/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tx/tx_allocator/ut/CMakeLists.linux-aarch64.txt index adf7d286e7..14f201f727 100644 --- a/ydb/core/tx/tx_allocator/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/tx_allocator/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator/ut/CMakeLists.linux.txt b/ydb/core/tx/tx_allocator/ut/CMakeLists.linux.txt index 5449ff6a45..02883d4fe9 100644 --- a/ydb/core/tx/tx_allocator/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_allocator/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator/ut/CMakeLists.txt b/ydb/core/tx/tx_allocator/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/tx_allocator/ut/CMakeLists.txt +++ b/ydb/core/tx/tx_allocator/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator_client/CMakeLists.darwin.txt b/ydb/core/tx/tx_allocator_client/CMakeLists.darwin.txt index 4667ead48e..bc3c30c594 100644 --- a/ydb/core/tx/tx_allocator_client/CMakeLists.darwin.txt +++ b/ydb/core/tx/tx_allocator_client/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator_client/CMakeLists.linux-aarch64.txt b/ydb/core/tx/tx_allocator_client/CMakeLists.linux-aarch64.txt index 033e4cc9ff..49bc2805a8 100644 --- a/ydb/core/tx/tx_allocator_client/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/tx_allocator_client/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator_client/CMakeLists.linux.txt b/ydb/core/tx/tx_allocator_client/CMakeLists.linux.txt index 033e4cc9ff..49bc2805a8 100644 --- a/ydb/core/tx/tx_allocator_client/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_allocator_client/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator_client/CMakeLists.txt b/ydb/core/tx/tx_allocator_client/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/tx_allocator_client/CMakeLists.txt +++ b/ydb/core/tx/tx_allocator_client/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator_client/ut/CMakeLists.darwin.txt b/ydb/core/tx/tx_allocator_client/ut/CMakeLists.darwin.txt index 9e0023845f..9d6502bc97 100644 --- a/ydb/core/tx/tx_allocator_client/ut/CMakeLists.darwin.txt +++ b/ydb/core/tx/tx_allocator_client/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator_client/ut/CMakeLists.linux-aarch64.txt b/ydb/core/tx/tx_allocator_client/ut/CMakeLists.linux-aarch64.txt index f886dc3480..262c41235b 100644 --- a/ydb/core/tx/tx_allocator_client/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/tx_allocator_client/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator_client/ut/CMakeLists.linux.txt b/ydb/core/tx/tx_allocator_client/ut/CMakeLists.linux.txt index 663c890ff8..fd8c6dcb49 100644 --- a/ydb/core/tx/tx_allocator_client/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_allocator_client/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_allocator_client/ut/CMakeLists.txt b/ydb/core/tx/tx_allocator_client/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/tx_allocator_client/ut/CMakeLists.txt +++ b/ydb/core/tx/tx_allocator_client/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/CMakeLists.darwin.txt b/ydb/core/tx/tx_proxy/CMakeLists.darwin.txt index 2229fe2fd9..cc69a860cf 100644 --- a/ydb/core/tx/tx_proxy/CMakeLists.darwin.txt +++ b/ydb/core/tx/tx_proxy/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/CMakeLists.linux-aarch64.txt b/ydb/core/tx/tx_proxy/CMakeLists.linux-aarch64.txt index 91190a235f..17ca5598c1 100644 --- a/ydb/core/tx/tx_proxy/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/tx_proxy/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/CMakeLists.linux.txt b/ydb/core/tx/tx_proxy/CMakeLists.linux.txt index 91190a235f..17ca5598c1 100644 --- a/ydb/core/tx/tx_proxy/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_proxy/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/CMakeLists.txt b/ydb/core/tx/tx_proxy/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/tx_proxy/CMakeLists.txt +++ b/ydb/core/tx/tx_proxy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.darwin.txt b/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.darwin.txt index 353f60ea63..d37189a660 100644 --- a/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.darwin.txt +++ b/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.linux-aarch64.txt b/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.linux-aarch64.txt index 3349c18573..83ed74dd4d 100644 --- a/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.linux.txt b/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.linux.txt index 29339aadb4..a9ec3689f8 100644 --- a/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.txt b/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.txt +++ b/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.darwin.txt b/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.darwin.txt index 1a76230cb8..def467a34c 100644 --- a/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.darwin.txt +++ b/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.linux-aarch64.txt b/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.linux-aarch64.txt index eebece93fd..682c2f0485 100644 --- a/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.linux.txt b/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.linux.txt index 41b4d98ece..fac2abb28f 100644 --- a/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.txt b/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.txt +++ b/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.darwin.txt b/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.darwin.txt index 55adb49d8f..5d3c25e394 100644 --- a/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.darwin.txt +++ b/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.linux-aarch64.txt b/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.linux-aarch64.txt index a1562c3128..6cfe615a92 100644 --- a/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.linux.txt b/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.linux.txt index 377c8350ba..d4aa46eb01 100644 --- a/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.txt b/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.txt +++ b/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.darwin.txt b/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.darwin.txt index 413682b307..d026cf81ba 100644 --- a/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.darwin.txt +++ b/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.linux-aarch64.txt b/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.linux-aarch64.txt index 7d37950ade..852e58efc8 100644 --- a/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.linux.txt b/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.linux.txt index 296bf22a7b..fff6fe3d2e 100644 --- a/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.txt b/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.txt +++ b/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/util/CMakeLists.darwin.txt b/ydb/core/util/CMakeLists.darwin.txt index ba1c081f7d..231a6222ba 100644 --- a/ydb/core/util/CMakeLists.darwin.txt +++ b/ydb/core/util/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/util/CMakeLists.linux-aarch64.txt b/ydb/core/util/CMakeLists.linux-aarch64.txt index 68119b5dbd..8cf634be3a 100644 --- a/ydb/core/util/CMakeLists.linux-aarch64.txt +++ b/ydb/core/util/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/util/CMakeLists.linux.txt b/ydb/core/util/CMakeLists.linux.txt index 68119b5dbd..8cf634be3a 100644 --- a/ydb/core/util/CMakeLists.linux.txt +++ b/ydb/core/util/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/util/CMakeLists.txt b/ydb/core/util/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/util/CMakeLists.txt +++ b/ydb/core/util/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/util/btree_benchmark/CMakeLists.darwin.txt b/ydb/core/util/btree_benchmark/CMakeLists.darwin.txt index 73c809e53b..8bcc3d83cc 100644 --- a/ydb/core/util/btree_benchmark/CMakeLists.darwin.txt +++ b/ydb/core/util/btree_benchmark/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/util/btree_benchmark/CMakeLists.linux-aarch64.txt b/ydb/core/util/btree_benchmark/CMakeLists.linux-aarch64.txt index b2ca0033db..de907b8377 100644 --- a/ydb/core/util/btree_benchmark/CMakeLists.linux-aarch64.txt +++ b/ydb/core/util/btree_benchmark/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/util/btree_benchmark/CMakeLists.linux.txt b/ydb/core/util/btree_benchmark/CMakeLists.linux.txt index e7359e5482..95fda6e9ab 100644 --- a/ydb/core/util/btree_benchmark/CMakeLists.linux.txt +++ b/ydb/core/util/btree_benchmark/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/util/btree_benchmark/CMakeLists.txt b/ydb/core/util/btree_benchmark/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/util/btree_benchmark/CMakeLists.txt +++ b/ydb/core/util/btree_benchmark/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/util/ut/CMakeLists.darwin.txt b/ydb/core/util/ut/CMakeLists.darwin.txt index 84db9577ec..8ac3f0e0d3 100644 --- a/ydb/core/util/ut/CMakeLists.darwin.txt +++ b/ydb/core/util/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/util/ut/CMakeLists.linux-aarch64.txt b/ydb/core/util/ut/CMakeLists.linux-aarch64.txt index 23ae2df72a..7112c510e1 100644 --- a/ydb/core/util/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/util/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/util/ut/CMakeLists.linux.txt b/ydb/core/util/ut/CMakeLists.linux.txt index 36628befb0..d90769d921 100644 --- a/ydb/core/util/ut/CMakeLists.linux.txt +++ b/ydb/core/util/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/util/ut/CMakeLists.txt b/ydb/core/util/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/util/ut/CMakeLists.txt +++ b/ydb/core/util/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/CMakeLists.darwin.txt b/ydb/core/viewer/CMakeLists.darwin.txt index 8d64c4baf9..d08cebf12d 100644 --- a/ydb/core/viewer/CMakeLists.darwin.txt +++ b/ydb/core/viewer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/CMakeLists.linux-aarch64.txt b/ydb/core/viewer/CMakeLists.linux-aarch64.txt index 13435cc54a..2572c03e1c 100644 --- a/ydb/core/viewer/CMakeLists.linux-aarch64.txt +++ b/ydb/core/viewer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/CMakeLists.linux.txt b/ydb/core/viewer/CMakeLists.linux.txt index 13435cc54a..2572c03e1c 100644 --- a/ydb/core/viewer/CMakeLists.linux.txt +++ b/ydb/core/viewer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/CMakeLists.txt b/ydb/core/viewer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/viewer/CMakeLists.txt +++ b/ydb/core/viewer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/json/CMakeLists.darwin.txt b/ydb/core/viewer/json/CMakeLists.darwin.txt index 3117fe198e..6c8ae852b4 100644 --- a/ydb/core/viewer/json/CMakeLists.darwin.txt +++ b/ydb/core/viewer/json/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/json/CMakeLists.linux-aarch64.txt b/ydb/core/viewer/json/CMakeLists.linux-aarch64.txt index 2621ed5ede..d9c7f45359 100644 --- a/ydb/core/viewer/json/CMakeLists.linux-aarch64.txt +++ b/ydb/core/viewer/json/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/json/CMakeLists.linux.txt b/ydb/core/viewer/json/CMakeLists.linux.txt index 2621ed5ede..d9c7f45359 100644 --- a/ydb/core/viewer/json/CMakeLists.linux.txt +++ b/ydb/core/viewer/json/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/json/CMakeLists.txt b/ydb/core/viewer/json/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/viewer/json/CMakeLists.txt +++ b/ydb/core/viewer/json/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/protos/CMakeLists.darwin.txt b/ydb/core/viewer/protos/CMakeLists.darwin.txt index 9331c1366e..f0a824b736 100644 --- a/ydb/core/viewer/protos/CMakeLists.darwin.txt +++ b/ydb/core/viewer/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/protos/CMakeLists.linux-aarch64.txt b/ydb/core/viewer/protos/CMakeLists.linux-aarch64.txt index ab1d7015ba..cdd55baee7 100644 --- a/ydb/core/viewer/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/core/viewer/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/protos/CMakeLists.linux.txt b/ydb/core/viewer/protos/CMakeLists.linux.txt index ab1d7015ba..cdd55baee7 100644 --- a/ydb/core/viewer/protos/CMakeLists.linux.txt +++ b/ydb/core/viewer/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/protos/CMakeLists.txt b/ydb/core/viewer/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/viewer/protos/CMakeLists.txt +++ b/ydb/core/viewer/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/ut/CMakeLists.darwin.txt b/ydb/core/viewer/ut/CMakeLists.darwin.txt index ac32bbf09b..6503655923 100644 --- a/ydb/core/viewer/ut/CMakeLists.darwin.txt +++ b/ydb/core/viewer/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/ut/CMakeLists.linux-aarch64.txt b/ydb/core/viewer/ut/CMakeLists.linux-aarch64.txt index d3e6e98da7..de42652afb 100644 --- a/ydb/core/viewer/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/viewer/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/ut/CMakeLists.linux.txt b/ydb/core/viewer/ut/CMakeLists.linux.txt index 5df650da6d..de6d1f406a 100644 --- a/ydb/core/viewer/ut/CMakeLists.linux.txt +++ b/ydb/core/viewer/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/viewer/ut/CMakeLists.txt b/ydb/core/viewer/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/viewer/ut/CMakeLists.txt +++ b/ydb/core/viewer/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/CMakeLists.darwin.txt b/ydb/core/wrappers/CMakeLists.darwin.txt index fc4e3645b8..a6724661ab 100644 --- a/ydb/core/wrappers/CMakeLists.darwin.txt +++ b/ydb/core/wrappers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/CMakeLists.linux-aarch64.txt b/ydb/core/wrappers/CMakeLists.linux-aarch64.txt index f9125fd65c..de9be9b8a7 100644 --- a/ydb/core/wrappers/CMakeLists.linux-aarch64.txt +++ b/ydb/core/wrappers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/CMakeLists.linux.txt b/ydb/core/wrappers/CMakeLists.linux.txt index f9125fd65c..de9be9b8a7 100644 --- a/ydb/core/wrappers/CMakeLists.linux.txt +++ b/ydb/core/wrappers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/CMakeLists.txt b/ydb/core/wrappers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/wrappers/CMakeLists.txt +++ b/ydb/core/wrappers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/events/CMakeLists.darwin.txt b/ydb/core/wrappers/events/CMakeLists.darwin.txt index 5b7aa6402b..0caae2bb8b 100644 --- a/ydb/core/wrappers/events/CMakeLists.darwin.txt +++ b/ydb/core/wrappers/events/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/events/CMakeLists.linux-aarch64.txt b/ydb/core/wrappers/events/CMakeLists.linux-aarch64.txt index f64e2339cc..913a19d70d 100644 --- a/ydb/core/wrappers/events/CMakeLists.linux-aarch64.txt +++ b/ydb/core/wrappers/events/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/events/CMakeLists.linux.txt b/ydb/core/wrappers/events/CMakeLists.linux.txt index f64e2339cc..913a19d70d 100644 --- a/ydb/core/wrappers/events/CMakeLists.linux.txt +++ b/ydb/core/wrappers/events/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/events/CMakeLists.txt b/ydb/core/wrappers/events/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/wrappers/events/CMakeLists.txt +++ b/ydb/core/wrappers/events/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/ut/CMakeLists.darwin.txt b/ydb/core/wrappers/ut/CMakeLists.darwin.txt index 0272b23348..9b0ea08d73 100644 --- a/ydb/core/wrappers/ut/CMakeLists.darwin.txt +++ b/ydb/core/wrappers/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/ut/CMakeLists.linux-aarch64.txt b/ydb/core/wrappers/ut/CMakeLists.linux-aarch64.txt index dce6b217ce..bb45c2595b 100644 --- a/ydb/core/wrappers/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/wrappers/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/ut/CMakeLists.linux.txt b/ydb/core/wrappers/ut/CMakeLists.linux.txt index 7e893bea73..dcdc134382 100644 --- a/ydb/core/wrappers/ut/CMakeLists.linux.txt +++ b/ydb/core/wrappers/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/ut/CMakeLists.txt b/ydb/core/wrappers/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/wrappers/ut/CMakeLists.txt +++ b/ydb/core/wrappers/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/ut_helpers/CMakeLists.darwin.txt b/ydb/core/wrappers/ut_helpers/CMakeLists.darwin.txt index e56eaec48f..85d6760e33 100644 --- a/ydb/core/wrappers/ut_helpers/CMakeLists.darwin.txt +++ b/ydb/core/wrappers/ut_helpers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/ut_helpers/CMakeLists.linux-aarch64.txt b/ydb/core/wrappers/ut_helpers/CMakeLists.linux-aarch64.txt index baebc19f3b..4af0a226f3 100644 --- a/ydb/core/wrappers/ut_helpers/CMakeLists.linux-aarch64.txt +++ b/ydb/core/wrappers/ut_helpers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/ut_helpers/CMakeLists.linux.txt b/ydb/core/wrappers/ut_helpers/CMakeLists.linux.txt index baebc19f3b..4af0a226f3 100644 --- a/ydb/core/wrappers/ut_helpers/CMakeLists.linux.txt +++ b/ydb/core/wrappers/ut_helpers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/wrappers/ut_helpers/CMakeLists.txt b/ydb/core/wrappers/ut_helpers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/wrappers/ut_helpers/CMakeLists.txt +++ b/ydb/core/wrappers/ut_helpers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ydb_convert/CMakeLists.darwin.txt b/ydb/core/ydb_convert/CMakeLists.darwin.txt index 515d27635b..cb46f19a8e 100644 --- a/ydb/core/ydb_convert/CMakeLists.darwin.txt +++ b/ydb/core/ydb_convert/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ydb_convert/CMakeLists.linux-aarch64.txt b/ydb/core/ydb_convert/CMakeLists.linux-aarch64.txt index 47b658151f..64a21db00c 100644 --- a/ydb/core/ydb_convert/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ydb_convert/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ydb_convert/CMakeLists.linux.txt b/ydb/core/ydb_convert/CMakeLists.linux.txt index 47b658151f..64a21db00c 100644 --- a/ydb/core/ydb_convert/CMakeLists.linux.txt +++ b/ydb/core/ydb_convert/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ydb_convert/CMakeLists.txt b/ydb/core/ydb_convert/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ydb_convert/CMakeLists.txt +++ b/ydb/core/ydb_convert/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ydb_convert/ut/CMakeLists.darwin.txt b/ydb/core/ydb_convert/ut/CMakeLists.darwin.txt index 66fbb3e2ca..bca823c62b 100644 --- a/ydb/core/ydb_convert/ut/CMakeLists.darwin.txt +++ b/ydb/core/ydb_convert/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ydb_convert/ut/CMakeLists.linux-aarch64.txt b/ydb/core/ydb_convert/ut/CMakeLists.linux-aarch64.txt index e515ab94b6..f34c3241c8 100644 --- a/ydb/core/ydb_convert/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ydb_convert/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ydb_convert/ut/CMakeLists.linux.txt b/ydb/core/ydb_convert/ut/CMakeLists.linux.txt index 88bdd732e6..a19c3cce6a 100644 --- a/ydb/core/ydb_convert/ut/CMakeLists.linux.txt +++ b/ydb/core/ydb_convert/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ydb_convert/ut/CMakeLists.txt b/ydb/core/ydb_convert/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ydb_convert/ut/CMakeLists.txt +++ b/ydb/core/ydb_convert/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/CMakeLists.txt b/ydb/core/ymq/CMakeLists.txt index d553619c78..6e0a6548f5 100644 --- a/ydb/core/ymq/CMakeLists.txt +++ b/ydb/core/ymq/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/actor/CMakeLists.darwin.txt b/ydb/core/ymq/actor/CMakeLists.darwin.txt index ae365bfa4f..bc87cfe0ae 100644 --- a/ydb/core/ymq/actor/CMakeLists.darwin.txt +++ b/ydb/core/ymq/actor/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/actor/CMakeLists.linux-aarch64.txt b/ydb/core/ymq/actor/CMakeLists.linux-aarch64.txt index 9b41d7ec5c..f089699e34 100644 --- a/ydb/core/ymq/actor/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ymq/actor/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/actor/CMakeLists.linux.txt b/ydb/core/ymq/actor/CMakeLists.linux.txt index 9b41d7ec5c..f089699e34 100644 --- a/ydb/core/ymq/actor/CMakeLists.linux.txt +++ b/ydb/core/ymq/actor/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/actor/CMakeLists.txt b/ydb/core/ymq/actor/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ymq/actor/CMakeLists.txt +++ b/ydb/core/ymq/actor/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/actor/ut/CMakeLists.darwin.txt b/ydb/core/ymq/actor/ut/CMakeLists.darwin.txt index a761bd6907..fb96e76287 100644 --- a/ydb/core/ymq/actor/ut/CMakeLists.darwin.txt +++ b/ydb/core/ymq/actor/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/actor/ut/CMakeLists.linux-aarch64.txt b/ydb/core/ymq/actor/ut/CMakeLists.linux-aarch64.txt index 89811f99e5..ec9e415982 100644 --- a/ydb/core/ymq/actor/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ymq/actor/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/actor/ut/CMakeLists.linux.txt b/ydb/core/ymq/actor/ut/CMakeLists.linux.txt index 214019e6de..8b88f5c1a8 100644 --- a/ydb/core/ymq/actor/ut/CMakeLists.linux.txt +++ b/ydb/core/ymq/actor/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/actor/ut/CMakeLists.txt b/ydb/core/ymq/actor/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ymq/actor/ut/CMakeLists.txt +++ b/ydb/core/ymq/actor/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/actor/yc_search_ut/CMakeLists.darwin.txt b/ydb/core/ymq/actor/yc_search_ut/CMakeLists.darwin.txt index 22b87a34c8..d3063b637e 100644 --- a/ydb/core/ymq/actor/yc_search_ut/CMakeLists.darwin.txt +++ b/ydb/core/ymq/actor/yc_search_ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/actor/yc_search_ut/CMakeLists.linux-aarch64.txt b/ydb/core/ymq/actor/yc_search_ut/CMakeLists.linux-aarch64.txt index 4bb597b08c..12e69d576d 100644 --- a/ydb/core/ymq/actor/yc_search_ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ymq/actor/yc_search_ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/actor/yc_search_ut/CMakeLists.linux.txt b/ydb/core/ymq/actor/yc_search_ut/CMakeLists.linux.txt index 81a19c7a5a..de08d42cbb 100644 --- a/ydb/core/ymq/actor/yc_search_ut/CMakeLists.linux.txt +++ b/ydb/core/ymq/actor/yc_search_ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/actor/yc_search_ut/CMakeLists.txt b/ydb/core/ymq/actor/yc_search_ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ymq/actor/yc_search_ut/CMakeLists.txt +++ b/ydb/core/ymq/actor/yc_search_ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/base/CMakeLists.darwin.txt b/ydb/core/ymq/base/CMakeLists.darwin.txt index bf1fda0f31..c3bde7ce87 100644 --- a/ydb/core/ymq/base/CMakeLists.darwin.txt +++ b/ydb/core/ymq/base/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/base/CMakeLists.linux-aarch64.txt b/ydb/core/ymq/base/CMakeLists.linux-aarch64.txt index 3885fba961..2fa2b6fdcf 100644 --- a/ydb/core/ymq/base/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ymq/base/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/base/CMakeLists.linux.txt b/ydb/core/ymq/base/CMakeLists.linux.txt index 3885fba961..2fa2b6fdcf 100644 --- a/ydb/core/ymq/base/CMakeLists.linux.txt +++ b/ydb/core/ymq/base/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/base/CMakeLists.txt b/ydb/core/ymq/base/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ymq/base/CMakeLists.txt +++ b/ydb/core/ymq/base/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/base/ut/CMakeLists.darwin.txt b/ydb/core/ymq/base/ut/CMakeLists.darwin.txt index e90ab70740..f82aad0bbd 100644 --- a/ydb/core/ymq/base/ut/CMakeLists.darwin.txt +++ b/ydb/core/ymq/base/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/base/ut/CMakeLists.linux-aarch64.txt b/ydb/core/ymq/base/ut/CMakeLists.linux-aarch64.txt index 47574fe315..829d0fb744 100644 --- a/ydb/core/ymq/base/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ymq/base/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/base/ut/CMakeLists.linux.txt b/ydb/core/ymq/base/ut/CMakeLists.linux.txt index ec249985bd..8fa23c5c52 100644 --- a/ydb/core/ymq/base/ut/CMakeLists.linux.txt +++ b/ydb/core/ymq/base/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/base/ut/CMakeLists.txt b/ydb/core/ymq/base/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ymq/base/ut/CMakeLists.txt +++ b/ydb/core/ymq/base/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/client/CMakeLists.txt b/ydb/core/ymq/client/CMakeLists.txt index c4c2a2a4cc..37500afee6 100644 --- a/ydb/core/ymq/client/CMakeLists.txt +++ b/ydb/core/ymq/client/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/client/bin/CMakeLists.darwin.txt b/ydb/core/ymq/client/bin/CMakeLists.darwin.txt index 83e547ed79..cac575908a 100644 --- a/ydb/core/ymq/client/bin/CMakeLists.darwin.txt +++ b/ydb/core/ymq/client/bin/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/client/bin/CMakeLists.linux-aarch64.txt b/ydb/core/ymq/client/bin/CMakeLists.linux-aarch64.txt index f9e4a88395..03ab286d6d 100644 --- a/ydb/core/ymq/client/bin/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ymq/client/bin/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/client/bin/CMakeLists.linux.txt b/ydb/core/ymq/client/bin/CMakeLists.linux.txt index fc6a7f8321..33245d1cde 100644 --- a/ydb/core/ymq/client/bin/CMakeLists.linux.txt +++ b/ydb/core/ymq/client/bin/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/client/bin/CMakeLists.txt b/ydb/core/ymq/client/bin/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ymq/client/bin/CMakeLists.txt +++ b/ydb/core/ymq/client/bin/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/client/cpp/CMakeLists.darwin.txt b/ydb/core/ymq/client/cpp/CMakeLists.darwin.txt index e7a268ee25..ddaaf42002 100644 --- a/ydb/core/ymq/client/cpp/CMakeLists.darwin.txt +++ b/ydb/core/ymq/client/cpp/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/client/cpp/CMakeLists.linux-aarch64.txt b/ydb/core/ymq/client/cpp/CMakeLists.linux-aarch64.txt index 64bb8ec242..4acc1d5e5e 100644 --- a/ydb/core/ymq/client/cpp/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ymq/client/cpp/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/client/cpp/CMakeLists.linux.txt b/ydb/core/ymq/client/cpp/CMakeLists.linux.txt index 64bb8ec242..4acc1d5e5e 100644 --- a/ydb/core/ymq/client/cpp/CMakeLists.linux.txt +++ b/ydb/core/ymq/client/cpp/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/client/cpp/CMakeLists.txt b/ydb/core/ymq/client/cpp/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ymq/client/cpp/CMakeLists.txt +++ b/ydb/core/ymq/client/cpp/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/http/CMakeLists.darwin.txt b/ydb/core/ymq/http/CMakeLists.darwin.txt index 5c029dcba2..7b63f5201e 100644 --- a/ydb/core/ymq/http/CMakeLists.darwin.txt +++ b/ydb/core/ymq/http/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/http/CMakeLists.linux-aarch64.txt b/ydb/core/ymq/http/CMakeLists.linux-aarch64.txt index 69044963c2..6b9d4a0b9a 100644 --- a/ydb/core/ymq/http/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ymq/http/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/http/CMakeLists.linux.txt b/ydb/core/ymq/http/CMakeLists.linux.txt index 69044963c2..6b9d4a0b9a 100644 --- a/ydb/core/ymq/http/CMakeLists.linux.txt +++ b/ydb/core/ymq/http/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/http/CMakeLists.txt b/ydb/core/ymq/http/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ymq/http/CMakeLists.txt +++ b/ydb/core/ymq/http/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/http/ut/CMakeLists.darwin.txt b/ydb/core/ymq/http/ut/CMakeLists.darwin.txt index bba11d123b..9662bf7e3a 100644 --- a/ydb/core/ymq/http/ut/CMakeLists.darwin.txt +++ b/ydb/core/ymq/http/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/http/ut/CMakeLists.linux-aarch64.txt b/ydb/core/ymq/http/ut/CMakeLists.linux-aarch64.txt index 020f2f2c44..9ab1c270c4 100644 --- a/ydb/core/ymq/http/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ymq/http/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/http/ut/CMakeLists.linux.txt b/ydb/core/ymq/http/ut/CMakeLists.linux.txt index c4a2da56ef..a98db9e04e 100644 --- a/ydb/core/ymq/http/ut/CMakeLists.linux.txt +++ b/ydb/core/ymq/http/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/http/ut/CMakeLists.txt b/ydb/core/ymq/http/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ymq/http/ut/CMakeLists.txt +++ b/ydb/core/ymq/http/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/proto/CMakeLists.darwin.txt b/ydb/core/ymq/proto/CMakeLists.darwin.txt index 48a8f8b907..69f17f9f85 100644 --- a/ydb/core/ymq/proto/CMakeLists.darwin.txt +++ b/ydb/core/ymq/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/proto/CMakeLists.linux-aarch64.txt b/ydb/core/ymq/proto/CMakeLists.linux-aarch64.txt index ca0ec4b590..a2eba26417 100644 --- a/ydb/core/ymq/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ymq/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/proto/CMakeLists.linux.txt b/ydb/core/ymq/proto/CMakeLists.linux.txt index ca0ec4b590..a2eba26417 100644 --- a/ydb/core/ymq/proto/CMakeLists.linux.txt +++ b/ydb/core/ymq/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/proto/CMakeLists.txt b/ydb/core/ymq/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ymq/proto/CMakeLists.txt +++ b/ydb/core/ymq/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/queues/CMakeLists.txt b/ydb/core/ymq/queues/CMakeLists.txt index 5f37ade1b1..cf06c90306 100644 --- a/ydb/core/ymq/queues/CMakeLists.txt +++ b/ydb/core/ymq/queues/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/queues/common/CMakeLists.darwin.txt b/ydb/core/ymq/queues/common/CMakeLists.darwin.txt index 99abe60d02..4f2873013c 100644 --- a/ydb/core/ymq/queues/common/CMakeLists.darwin.txt +++ b/ydb/core/ymq/queues/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/queues/common/CMakeLists.linux-aarch64.txt b/ydb/core/ymq/queues/common/CMakeLists.linux-aarch64.txt index c8c779e3e9..aee95c3fc0 100644 --- a/ydb/core/ymq/queues/common/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ymq/queues/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/queues/common/CMakeLists.linux.txt b/ydb/core/ymq/queues/common/CMakeLists.linux.txt index c8c779e3e9..aee95c3fc0 100644 --- a/ydb/core/ymq/queues/common/CMakeLists.linux.txt +++ b/ydb/core/ymq/queues/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/queues/common/CMakeLists.txt b/ydb/core/ymq/queues/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ymq/queues/common/CMakeLists.txt +++ b/ydb/core/ymq/queues/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/queues/fifo/CMakeLists.darwin.txt b/ydb/core/ymq/queues/fifo/CMakeLists.darwin.txt index 74a8285672..d2c77f1882 100644 --- a/ydb/core/ymq/queues/fifo/CMakeLists.darwin.txt +++ b/ydb/core/ymq/queues/fifo/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/queues/fifo/CMakeLists.linux-aarch64.txt b/ydb/core/ymq/queues/fifo/CMakeLists.linux-aarch64.txt index 3c7171a438..8cc82f3fe6 100644 --- a/ydb/core/ymq/queues/fifo/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ymq/queues/fifo/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/queues/fifo/CMakeLists.linux.txt b/ydb/core/ymq/queues/fifo/CMakeLists.linux.txt index 3c7171a438..8cc82f3fe6 100644 --- a/ydb/core/ymq/queues/fifo/CMakeLists.linux.txt +++ b/ydb/core/ymq/queues/fifo/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/queues/fifo/CMakeLists.txt b/ydb/core/ymq/queues/fifo/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ymq/queues/fifo/CMakeLists.txt +++ b/ydb/core/ymq/queues/fifo/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/queues/std/CMakeLists.darwin.txt b/ydb/core/ymq/queues/std/CMakeLists.darwin.txt index 1749874837..4254e9dfc2 100644 --- a/ydb/core/ymq/queues/std/CMakeLists.darwin.txt +++ b/ydb/core/ymq/queues/std/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/queues/std/CMakeLists.linux-aarch64.txt b/ydb/core/ymq/queues/std/CMakeLists.linux-aarch64.txt index 9ccb43395e..3a96172efe 100644 --- a/ydb/core/ymq/queues/std/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ymq/queues/std/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/queues/std/CMakeLists.linux.txt b/ydb/core/ymq/queues/std/CMakeLists.linux.txt index 9ccb43395e..3a96172efe 100644 --- a/ydb/core/ymq/queues/std/CMakeLists.linux.txt +++ b/ydb/core/ymq/queues/std/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/queues/std/CMakeLists.txt b/ydb/core/ymq/queues/std/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ymq/queues/std/CMakeLists.txt +++ b/ydb/core/ymq/queues/std/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/ut/CMakeLists.darwin.txt b/ydb/core/ymq/ut/CMakeLists.darwin.txt index b4b222fd57..b20e32d25f 100644 --- a/ydb/core/ymq/ut/CMakeLists.darwin.txt +++ b/ydb/core/ymq/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/ut/CMakeLists.linux-aarch64.txt b/ydb/core/ymq/ut/CMakeLists.linux-aarch64.txt index 2b1aa2f5a3..bee01bc494 100644 --- a/ydb/core/ymq/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/ymq/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/ut/CMakeLists.linux.txt b/ydb/core/ymq/ut/CMakeLists.linux.txt index 657158ae3a..59b782bb43 100644 --- a/ydb/core/ymq/ut/CMakeLists.linux.txt +++ b/ydb/core/ymq/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/ymq/ut/CMakeLists.txt b/ydb/core/ymq/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/ymq/ut/CMakeLists.txt +++ b/ydb/core/ymq/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/CMakeLists.txt b/ydb/core/yq/CMakeLists.txt index 28eb184166..c0ba027634 100644 --- a/ydb/core/yq/CMakeLists.txt +++ b/ydb/core/yq/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/CMakeLists.txt b/ydb/core/yq/libs/CMakeLists.txt index 15ccfbffe4..a0657f4bea 100644 --- a/ydb/core/yq/libs/CMakeLists.txt +++ b/ydb/core/yq/libs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/actors/CMakeLists.darwin.txt b/ydb/core/yq/libs/actors/CMakeLists.darwin.txt index 43c7bc641a..c8b64cb56a 100644 --- a/ydb/core/yq/libs/actors/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/actors/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/actors/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/actors/CMakeLists.linux-aarch64.txt index 48b6ab4b1a..d729eb3d12 100644 --- a/ydb/core/yq/libs/actors/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/actors/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/actors/CMakeLists.linux.txt b/ydb/core/yq/libs/actors/CMakeLists.linux.txt index 48b6ab4b1a..d729eb3d12 100644 --- a/ydb/core/yq/libs/actors/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/actors/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/actors/CMakeLists.txt b/ydb/core/yq/libs/actors/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/actors/CMakeLists.txt +++ b/ydb/core/yq/libs/actors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/actors/logging/CMakeLists.darwin.txt b/ydb/core/yq/libs/actors/logging/CMakeLists.darwin.txt index 36cee0bce6..dbf7721d31 100644 --- a/ydb/core/yq/libs/actors/logging/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/actors/logging/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/actors/logging/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/actors/logging/CMakeLists.linux-aarch64.txt index d38dee5892..acf36fb18d 100644 --- a/ydb/core/yq/libs/actors/logging/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/actors/logging/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/actors/logging/CMakeLists.linux.txt b/ydb/core/yq/libs/actors/logging/CMakeLists.linux.txt index d38dee5892..acf36fb18d 100644 --- a/ydb/core/yq/libs/actors/logging/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/actors/logging/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/actors/logging/CMakeLists.txt b/ydb/core/yq/libs/actors/logging/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/actors/logging/CMakeLists.txt +++ b/ydb/core/yq/libs/actors/logging/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/audit/CMakeLists.darwin.txt b/ydb/core/yq/libs/audit/CMakeLists.darwin.txt index 33cb265667..fb2d3e9e4f 100644 --- a/ydb/core/yq/libs/audit/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/audit/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/audit/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/audit/CMakeLists.linux-aarch64.txt index 80c5cd020c..eb8597ad03 100644 --- a/ydb/core/yq/libs/audit/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/audit/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/audit/CMakeLists.linux.txt b/ydb/core/yq/libs/audit/CMakeLists.linux.txt index 80c5cd020c..eb8597ad03 100644 --- a/ydb/core/yq/libs/audit/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/audit/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/audit/CMakeLists.txt b/ydb/core/yq/libs/audit/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/audit/CMakeLists.txt +++ b/ydb/core/yq/libs/audit/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/audit/events/CMakeLists.darwin.txt b/ydb/core/yq/libs/audit/events/CMakeLists.darwin.txt index a46295b751..be300eb773 100644 --- a/ydb/core/yq/libs/audit/events/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/audit/events/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/audit/events/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/audit/events/CMakeLists.linux-aarch64.txt index fb0ab04b43..4465d0df85 100644 --- a/ydb/core/yq/libs/audit/events/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/audit/events/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/audit/events/CMakeLists.linux.txt b/ydb/core/yq/libs/audit/events/CMakeLists.linux.txt index fb0ab04b43..4465d0df85 100644 --- a/ydb/core/yq/libs/audit/events/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/audit/events/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/audit/events/CMakeLists.txt b/ydb/core/yq/libs/audit/events/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/audit/events/CMakeLists.txt +++ b/ydb/core/yq/libs/audit/events/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/audit/mock/CMakeLists.darwin.txt b/ydb/core/yq/libs/audit/mock/CMakeLists.darwin.txt index f214de3147..541d9ba2fb 100644 --- a/ydb/core/yq/libs/audit/mock/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/audit/mock/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/audit/mock/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/audit/mock/CMakeLists.linux-aarch64.txt index 079b268580..049a08c774 100644 --- a/ydb/core/yq/libs/audit/mock/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/audit/mock/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/audit/mock/CMakeLists.linux.txt b/ydb/core/yq/libs/audit/mock/CMakeLists.linux.txt index 079b268580..049a08c774 100644 --- a/ydb/core/yq/libs/audit/mock/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/audit/mock/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/audit/mock/CMakeLists.txt b/ydb/core/yq/libs/audit/mock/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/audit/mock/CMakeLists.txt +++ b/ydb/core/yq/libs/audit/mock/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpoint_storage/CMakeLists.darwin.txt b/ydb/core/yq/libs/checkpoint_storage/CMakeLists.darwin.txt index e3ac388861..dbe5e40a62 100644 --- a/ydb/core/yq/libs/checkpoint_storage/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/checkpoint_storage/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpoint_storage/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/checkpoint_storage/CMakeLists.linux-aarch64.txt index efa73aa1a3..258716a28e 100644 --- a/ydb/core/yq/libs/checkpoint_storage/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/checkpoint_storage/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpoint_storage/CMakeLists.linux.txt b/ydb/core/yq/libs/checkpoint_storage/CMakeLists.linux.txt index efa73aa1a3..258716a28e 100644 --- a/ydb/core/yq/libs/checkpoint_storage/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/checkpoint_storage/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpoint_storage/CMakeLists.txt b/ydb/core/yq/libs/checkpoint_storage/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/checkpoint_storage/CMakeLists.txt +++ b/ydb/core/yq/libs/checkpoint_storage/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.darwin.txt b/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.darwin.txt index ef4ba18a68..06644053cb 100644 --- a/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.linux-aarch64.txt index 704af8c7a5..be0f67f9af 100644 --- a/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.linux.txt b/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.linux.txt index 704af8c7a5..be0f67f9af 100644 --- a/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.txt b/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.txt +++ b/ydb/core/yq/libs/checkpoint_storage/events/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.darwin.txt b/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.darwin.txt index 1fe9379115..2be8b4246c 100644 --- a/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.linux-aarch64.txt index 1636f57879..a8651b245f 100644 --- a/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.linux.txt b/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.linux.txt index 1636f57879..a8651b245f 100644 --- a/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.txt b/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.txt +++ b/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing/CMakeLists.darwin.txt b/ydb/core/yq/libs/checkpointing/CMakeLists.darwin.txt index 1bb27f344c..5c3b002469 100644 --- a/ydb/core/yq/libs/checkpointing/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/checkpointing/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/checkpointing/CMakeLists.linux-aarch64.txt index 0b3776ce31..c7e952c5e9 100644 --- a/ydb/core/yq/libs/checkpointing/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/checkpointing/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing/CMakeLists.linux.txt b/ydb/core/yq/libs/checkpointing/CMakeLists.linux.txt index 0b3776ce31..c7e952c5e9 100644 --- a/ydb/core/yq/libs/checkpointing/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/checkpointing/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing/CMakeLists.txt b/ydb/core/yq/libs/checkpointing/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/checkpointing/CMakeLists.txt +++ b/ydb/core/yq/libs/checkpointing/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing/events/CMakeLists.darwin.txt b/ydb/core/yq/libs/checkpointing/events/CMakeLists.darwin.txt index 06dfc514ce..1460969835 100644 --- a/ydb/core/yq/libs/checkpointing/events/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/checkpointing/events/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing/events/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/checkpointing/events/CMakeLists.linux-aarch64.txt index b783961b4b..33ddf79d6a 100644 --- a/ydb/core/yq/libs/checkpointing/events/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/checkpointing/events/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing/events/CMakeLists.linux.txt b/ydb/core/yq/libs/checkpointing/events/CMakeLists.linux.txt index b783961b4b..33ddf79d6a 100644 --- a/ydb/core/yq/libs/checkpointing/events/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/checkpointing/events/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing/events/CMakeLists.txt b/ydb/core/yq/libs/checkpointing/events/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/checkpointing/events/CMakeLists.txt +++ b/ydb/core/yq/libs/checkpointing/events/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing/ut/CMakeLists.darwin.txt b/ydb/core/yq/libs/checkpointing/ut/CMakeLists.darwin.txt index 2531d97877..ed51fb4229 100644 --- a/ydb/core/yq/libs/checkpointing/ut/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/checkpointing/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing/ut/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/checkpointing/ut/CMakeLists.linux-aarch64.txt index 34389926fb..1fa066fdda 100644 --- a/ydb/core/yq/libs/checkpointing/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/checkpointing/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing/ut/CMakeLists.linux.txt b/ydb/core/yq/libs/checkpointing/ut/CMakeLists.linux.txt index 9e932be902..c4fc94186a 100644 --- a/ydb/core/yq/libs/checkpointing/ut/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/checkpointing/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing/ut/CMakeLists.txt b/ydb/core/yq/libs/checkpointing/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/checkpointing/ut/CMakeLists.txt +++ b/ydb/core/yq/libs/checkpointing/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing_common/CMakeLists.darwin.txt b/ydb/core/yq/libs/checkpointing_common/CMakeLists.darwin.txt index 3dc5fcc212..f62840a0b8 100644 --- a/ydb/core/yq/libs/checkpointing_common/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/checkpointing_common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing_common/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/checkpointing_common/CMakeLists.linux-aarch64.txt index a909a39bdf..a811a5d16e 100644 --- a/ydb/core/yq/libs/checkpointing_common/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/checkpointing_common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing_common/CMakeLists.linux.txt b/ydb/core/yq/libs/checkpointing_common/CMakeLists.linux.txt index a909a39bdf..a811a5d16e 100644 --- a/ydb/core/yq/libs/checkpointing_common/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/checkpointing_common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/checkpointing_common/CMakeLists.txt b/ydb/core/yq/libs/checkpointing_common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/checkpointing_common/CMakeLists.txt +++ b/ydb/core/yq/libs/checkpointing_common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/common/CMakeLists.darwin.txt b/ydb/core/yq/libs/common/CMakeLists.darwin.txt index 5d8bebdaa8..5c5eea9845 100644 --- a/ydb/core/yq/libs/common/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/common/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/common/CMakeLists.linux-aarch64.txt index 153e8e3526..c797b7c622 100644 --- a/ydb/core/yq/libs/common/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/common/CMakeLists.linux.txt b/ydb/core/yq/libs/common/CMakeLists.linux.txt index 153e8e3526..c797b7c622 100644 --- a/ydb/core/yq/libs/common/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/common/CMakeLists.txt b/ydb/core/yq/libs/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/common/CMakeLists.txt +++ b/ydb/core/yq/libs/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/common/ut/CMakeLists.darwin.txt b/ydb/core/yq/libs/common/ut/CMakeLists.darwin.txt index f309d0168e..8d8f92977d 100644 --- a/ydb/core/yq/libs/common/ut/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/common/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/common/ut/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/common/ut/CMakeLists.linux-aarch64.txt index 85ea23e6c0..9c7fd50f8e 100644 --- a/ydb/core/yq/libs/common/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/common/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/common/ut/CMakeLists.linux.txt b/ydb/core/yq/libs/common/ut/CMakeLists.linux.txt index 4b4fb0fec0..beb9028c2b 100644 --- a/ydb/core/yq/libs/common/ut/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/common/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/common/ut/CMakeLists.txt b/ydb/core/yq/libs/common/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/common/ut/CMakeLists.txt +++ b/ydb/core/yq/libs/common/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/config/CMakeLists.darwin.txt b/ydb/core/yq/libs/config/CMakeLists.darwin.txt index e0664e782c..e6994fdc3d 100644 --- a/ydb/core/yq/libs/config/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/config/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/config/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/config/CMakeLists.linux-aarch64.txt index 0fe0c2b4b8..8089092291 100644 --- a/ydb/core/yq/libs/config/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/config/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/config/CMakeLists.linux.txt b/ydb/core/yq/libs/config/CMakeLists.linux.txt index 0fe0c2b4b8..8089092291 100644 --- a/ydb/core/yq/libs/config/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/config/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/config/CMakeLists.txt b/ydb/core/yq/libs/config/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/config/CMakeLists.txt +++ b/ydb/core/yq/libs/config/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/config/protos/CMakeLists.darwin.txt b/ydb/core/yq/libs/config/protos/CMakeLists.darwin.txt index cf54066ffd..ce01468a2f 100644 --- a/ydb/core/yq/libs/config/protos/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/config/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/config/protos/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/config/protos/CMakeLists.linux-aarch64.txt index 21577358ec..dd37a90173 100644 --- a/ydb/core/yq/libs/config/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/config/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/config/protos/CMakeLists.linux.txt b/ydb/core/yq/libs/config/protos/CMakeLists.linux.txt index 21577358ec..dd37a90173 100644 --- a/ydb/core/yq/libs/config/protos/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/config/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/config/protos/CMakeLists.txt b/ydb/core/yq/libs/config/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/config/protos/CMakeLists.txt +++ b/ydb/core/yq/libs/config/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_config/CMakeLists.darwin.txt b/ydb/core/yq/libs/control_plane_config/CMakeLists.darwin.txt index f36c4d681b..7e5ec2771d 100644 --- a/ydb/core/yq/libs/control_plane_config/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/control_plane_config/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_config/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/control_plane_config/CMakeLists.linux-aarch64.txt index 813b5aa077..1567299bf4 100644 --- a/ydb/core/yq/libs/control_plane_config/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/control_plane_config/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_config/CMakeLists.linux.txt b/ydb/core/yq/libs/control_plane_config/CMakeLists.linux.txt index 813b5aa077..1567299bf4 100644 --- a/ydb/core/yq/libs/control_plane_config/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/control_plane_config/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_config/CMakeLists.txt b/ydb/core/yq/libs/control_plane_config/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/control_plane_config/CMakeLists.txt +++ b/ydb/core/yq/libs/control_plane_config/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_config/events/CMakeLists.darwin.txt b/ydb/core/yq/libs/control_plane_config/events/CMakeLists.darwin.txt index b33491aad2..cde3f254d6 100644 --- a/ydb/core/yq/libs/control_plane_config/events/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/control_plane_config/events/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_config/events/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/control_plane_config/events/CMakeLists.linux-aarch64.txt index 5939f6d8f4..bd9cfc5092 100644 --- a/ydb/core/yq/libs/control_plane_config/events/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/control_plane_config/events/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_config/events/CMakeLists.linux.txt b/ydb/core/yq/libs/control_plane_config/events/CMakeLists.linux.txt index 5939f6d8f4..bd9cfc5092 100644 --- a/ydb/core/yq/libs/control_plane_config/events/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/control_plane_config/events/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_config/events/CMakeLists.txt b/ydb/core/yq/libs/control_plane_config/events/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/control_plane_config/events/CMakeLists.txt +++ b/ydb/core/yq/libs/control_plane_config/events/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_proxy/CMakeLists.darwin.txt b/ydb/core/yq/libs/control_plane_proxy/CMakeLists.darwin.txt index 8f448bdd7f..d150a97277 100644 --- a/ydb/core/yq/libs/control_plane_proxy/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/control_plane_proxy/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_proxy/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/control_plane_proxy/CMakeLists.linux-aarch64.txt index e371aae26b..b0bce7c0b1 100644 --- a/ydb/core/yq/libs/control_plane_proxy/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/control_plane_proxy/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_proxy/CMakeLists.linux.txt b/ydb/core/yq/libs/control_plane_proxy/CMakeLists.linux.txt index e371aae26b..b0bce7c0b1 100644 --- a/ydb/core/yq/libs/control_plane_proxy/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/control_plane_proxy/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_proxy/CMakeLists.txt b/ydb/core/yq/libs/control_plane_proxy/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/control_plane_proxy/CMakeLists.txt +++ b/ydb/core/yq/libs/control_plane_proxy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.darwin.txt b/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.darwin.txt index 73799d8c5b..f17c977e58 100644 --- a/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.linux-aarch64.txt index 48edf14081..20922df5d1 100644 --- a/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.linux.txt b/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.linux.txt index 48edf14081..20922df5d1 100644 --- a/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.txt b/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.txt +++ b/ydb/core/yq/libs/control_plane_proxy/events/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.darwin.txt b/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.darwin.txt index 8aacd1937e..198650a283 100644 --- a/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.linux-aarch64.txt index 9af34769ec..e1e36f50ae 100644 --- a/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.linux.txt b/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.linux.txt index 2eccd09941..0dd028601f 100644 --- a/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.txt b/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.txt +++ b/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/CMakeLists.darwin.txt b/ydb/core/yq/libs/control_plane_storage/CMakeLists.darwin.txt index 43ce080fa8..f0d2fb8e50 100644 --- a/ydb/core/yq/libs/control_plane_storage/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/control_plane_storage/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/control_plane_storage/CMakeLists.linux-aarch64.txt index 7c0a64eb7f..23811f1727 100644 --- a/ydb/core/yq/libs/control_plane_storage/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/control_plane_storage/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/CMakeLists.linux.txt b/ydb/core/yq/libs/control_plane_storage/CMakeLists.linux.txt index 7c0a64eb7f..23811f1727 100644 --- a/ydb/core/yq/libs/control_plane_storage/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/control_plane_storage/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/CMakeLists.txt b/ydb/core/yq/libs/control_plane_storage/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/control_plane_storage/CMakeLists.txt +++ b/ydb/core/yq/libs/control_plane_storage/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.darwin.txt b/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.darwin.txt index 1a8f1b3fb0..ac3e5213cc 100644 --- a/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.linux-aarch64.txt index 0c2e602699..6473a843b3 100644 --- a/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.linux.txt b/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.linux.txt index 0c2e602699..6473a843b3 100644 --- a/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.txt b/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.txt +++ b/ydb/core/yq/libs/control_plane_storage/events/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.darwin.txt b/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.darwin.txt index ee878055f6..1cacc2fca5 100644 --- a/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.linux-aarch64.txt index e292d406fc..c3b21889cf 100644 --- a/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.linux.txt b/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.linux.txt index e292d406fc..c3b21889cf 100644 --- a/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.txt b/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.txt +++ b/ydb/core/yq/libs/control_plane_storage/internal/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.darwin.txt b/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.darwin.txt index c9569345d5..12a0db0820 100644 --- a/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.linux-aarch64.txt index b3b7de3b6b..48308cfcd6 100644 --- a/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.linux.txt b/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.linux.txt index b3b7de3b6b..48308cfcd6 100644 --- a/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.txt b/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.txt +++ b/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.darwin.txt b/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.darwin.txt index 2449cf6276..c6a5eead08 100644 --- a/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.linux-aarch64.txt index d849ca6756..e0b9264f90 100644 --- a/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.linux.txt b/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.linux.txt index d849ca6756..e0b9264f90 100644 --- a/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.txt b/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.txt +++ b/ydb/core/yq/libs/db_id_async_resolver_impl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/db_schema/CMakeLists.darwin.txt b/ydb/core/yq/libs/db_schema/CMakeLists.darwin.txt index 546b1bae9a..2243665db1 100644 --- a/ydb/core/yq/libs/db_schema/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/db_schema/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/db_schema/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/db_schema/CMakeLists.linux-aarch64.txt index d7e825236b..56605eb5b0 100644 --- a/ydb/core/yq/libs/db_schema/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/db_schema/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/db_schema/CMakeLists.linux.txt b/ydb/core/yq/libs/db_schema/CMakeLists.linux.txt index d7e825236b..56605eb5b0 100644 --- a/ydb/core/yq/libs/db_schema/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/db_schema/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/db_schema/CMakeLists.txt b/ydb/core/yq/libs/db_schema/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/db_schema/CMakeLists.txt +++ b/ydb/core/yq/libs/db_schema/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/events/CMakeLists.darwin.txt b/ydb/core/yq/libs/events/CMakeLists.darwin.txt index 5edcd4e86b..ee4496c22e 100644 --- a/ydb/core/yq/libs/events/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/events/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/events/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/events/CMakeLists.linux-aarch64.txt index f625c91e61..762d4b58fa 100644 --- a/ydb/core/yq/libs/events/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/events/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/events/CMakeLists.linux.txt b/ydb/core/yq/libs/events/CMakeLists.linux.txt index f625c91e61..762d4b58fa 100644 --- a/ydb/core/yq/libs/events/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/events/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/events/CMakeLists.txt b/ydb/core/yq/libs/events/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/events/CMakeLists.txt +++ b/ydb/core/yq/libs/events/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/gateway/CMakeLists.darwin.txt b/ydb/core/yq/libs/gateway/CMakeLists.darwin.txt index ec7adb2569..69e4975322 100644 --- a/ydb/core/yq/libs/gateway/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/gateway/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/gateway/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/gateway/CMakeLists.linux-aarch64.txt index 9a236a9dc6..cb0c00744d 100644 --- a/ydb/core/yq/libs/gateway/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/gateway/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/gateway/CMakeLists.linux.txt b/ydb/core/yq/libs/gateway/CMakeLists.linux.txt index 9a236a9dc6..cb0c00744d 100644 --- a/ydb/core/yq/libs/gateway/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/gateway/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/gateway/CMakeLists.txt b/ydb/core/yq/libs/gateway/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/gateway/CMakeLists.txt +++ b/ydb/core/yq/libs/gateway/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/graph_params/CMakeLists.txt b/ydb/core/yq/libs/graph_params/CMakeLists.txt index 0111ac5e16..499930c4b0 100644 --- a/ydb/core/yq/libs/graph_params/CMakeLists.txt +++ b/ydb/core/yq/libs/graph_params/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/graph_params/proto/CMakeLists.darwin.txt b/ydb/core/yq/libs/graph_params/proto/CMakeLists.darwin.txt index 93a709bd86..e2869d6b3c 100644 --- a/ydb/core/yq/libs/graph_params/proto/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/graph_params/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/graph_params/proto/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/graph_params/proto/CMakeLists.linux-aarch64.txt index 7a3f89bd74..86c3b623fe 100644 --- a/ydb/core/yq/libs/graph_params/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/graph_params/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/graph_params/proto/CMakeLists.linux.txt b/ydb/core/yq/libs/graph_params/proto/CMakeLists.linux.txt index 7a3f89bd74..86c3b623fe 100644 --- a/ydb/core/yq/libs/graph_params/proto/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/graph_params/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/graph_params/proto/CMakeLists.txt b/ydb/core/yq/libs/graph_params/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/graph_params/proto/CMakeLists.txt +++ b/ydb/core/yq/libs/graph_params/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/grpc/CMakeLists.darwin.txt b/ydb/core/yq/libs/grpc/CMakeLists.darwin.txt index 4520e2c511..4d455d5f20 100644 --- a/ydb/core/yq/libs/grpc/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/grpc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/grpc/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/grpc/CMakeLists.linux-aarch64.txt index 9dc330bcc7..417cb8e8e8 100644 --- a/ydb/core/yq/libs/grpc/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/grpc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/grpc/CMakeLists.linux.txt b/ydb/core/yq/libs/grpc/CMakeLists.linux.txt index 9dc330bcc7..417cb8e8e8 100644 --- a/ydb/core/yq/libs/grpc/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/grpc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/grpc/CMakeLists.txt b/ydb/core/yq/libs/grpc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/grpc/CMakeLists.txt +++ b/ydb/core/yq/libs/grpc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/health/CMakeLists.darwin.txt b/ydb/core/yq/libs/health/CMakeLists.darwin.txt index bfe985b854..139168c1d9 100644 --- a/ydb/core/yq/libs/health/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/health/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/health/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/health/CMakeLists.linux-aarch64.txt index 59543d5f63..c05242a04c 100644 --- a/ydb/core/yq/libs/health/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/health/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/health/CMakeLists.linux.txt b/ydb/core/yq/libs/health/CMakeLists.linux.txt index 59543d5f63..c05242a04c 100644 --- a/ydb/core/yq/libs/health/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/health/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/health/CMakeLists.txt b/ydb/core/yq/libs/health/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/health/CMakeLists.txt +++ b/ydb/core/yq/libs/health/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/hmac/CMakeLists.darwin.txt b/ydb/core/yq/libs/hmac/CMakeLists.darwin.txt index 341411884a..e03a23eecb 100644 --- a/ydb/core/yq/libs/hmac/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/hmac/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/hmac/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/hmac/CMakeLists.linux-aarch64.txt index 6eda716331..0d3ba30fb4 100644 --- a/ydb/core/yq/libs/hmac/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/hmac/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/hmac/CMakeLists.linux.txt b/ydb/core/yq/libs/hmac/CMakeLists.linux.txt index 6eda716331..0d3ba30fb4 100644 --- a/ydb/core/yq/libs/hmac/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/hmac/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/hmac/CMakeLists.txt b/ydb/core/yq/libs/hmac/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/hmac/CMakeLists.txt +++ b/ydb/core/yq/libs/hmac/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/hmac/ut/CMakeLists.darwin.txt b/ydb/core/yq/libs/hmac/ut/CMakeLists.darwin.txt index a999cb1a90..a7c597899e 100644 --- a/ydb/core/yq/libs/hmac/ut/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/hmac/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/hmac/ut/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/hmac/ut/CMakeLists.linux-aarch64.txt index cf01dabc1d..0692726906 100644 --- a/ydb/core/yq/libs/hmac/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/hmac/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/hmac/ut/CMakeLists.linux.txt b/ydb/core/yq/libs/hmac/ut/CMakeLists.linux.txt index d18e3c9202..9e99e41ac3 100644 --- a/ydb/core/yq/libs/hmac/ut/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/hmac/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/hmac/ut/CMakeLists.txt b/ydb/core/yq/libs/hmac/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/hmac/ut/CMakeLists.txt +++ b/ydb/core/yq/libs/hmac/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/init/CMakeLists.darwin.txt b/ydb/core/yq/libs/init/CMakeLists.darwin.txt index 11142bedfd..98b90bf8f5 100644 --- a/ydb/core/yq/libs/init/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/init/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/init/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/init/CMakeLists.linux-aarch64.txt index cae535a4d0..7643f09b90 100644 --- a/ydb/core/yq/libs/init/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/init/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/init/CMakeLists.linux.txt b/ydb/core/yq/libs/init/CMakeLists.linux.txt index cae535a4d0..7643f09b90 100644 --- a/ydb/core/yq/libs/init/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/init/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/init/CMakeLists.txt b/ydb/core/yq/libs/init/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/init/CMakeLists.txt +++ b/ydb/core/yq/libs/init/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/logs/CMakeLists.darwin.txt b/ydb/core/yq/libs/logs/CMakeLists.darwin.txt index 1e3235cbbd..ca07f5769c 100644 --- a/ydb/core/yq/libs/logs/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/logs/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/logs/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/logs/CMakeLists.linux-aarch64.txt index 73e0329cbb..64553751b6 100644 --- a/ydb/core/yq/libs/logs/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/logs/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/logs/CMakeLists.linux.txt b/ydb/core/yq/libs/logs/CMakeLists.linux.txt index 73e0329cbb..64553751b6 100644 --- a/ydb/core/yq/libs/logs/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/logs/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/logs/CMakeLists.txt b/ydb/core/yq/libs/logs/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/logs/CMakeLists.txt +++ b/ydb/core/yq/libs/logs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/mock/CMakeLists.darwin.txt b/ydb/core/yq/libs/mock/CMakeLists.darwin.txt index 35f1693a0d..fb68041154 100644 --- a/ydb/core/yq/libs/mock/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/mock/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/mock/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/mock/CMakeLists.linux-aarch64.txt index abaff54a88..a15a4dd1a2 100644 --- a/ydb/core/yq/libs/mock/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/mock/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/mock/CMakeLists.linux.txt b/ydb/core/yq/libs/mock/CMakeLists.linux.txt index abaff54a88..a15a4dd1a2 100644 --- a/ydb/core/yq/libs/mock/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/mock/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/mock/CMakeLists.txt b/ydb/core/yq/libs/mock/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/mock/CMakeLists.txt +++ b/ydb/core/yq/libs/mock/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/pretty_printers/CMakeLists.darwin.txt b/ydb/core/yq/libs/pretty_printers/CMakeLists.darwin.txt index c8db531b1e..4922a82812 100644 --- a/ydb/core/yq/libs/pretty_printers/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/pretty_printers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/pretty_printers/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/pretty_printers/CMakeLists.linux-aarch64.txt index ad93a22a80..ed89dbf66f 100644 --- a/ydb/core/yq/libs/pretty_printers/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/pretty_printers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/pretty_printers/CMakeLists.linux.txt b/ydb/core/yq/libs/pretty_printers/CMakeLists.linux.txt index ad93a22a80..ed89dbf66f 100644 --- a/ydb/core/yq/libs/pretty_printers/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/pretty_printers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/pretty_printers/CMakeLists.txt b/ydb/core/yq/libs/pretty_printers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/pretty_printers/CMakeLists.txt +++ b/ydb/core/yq/libs/pretty_printers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/private_client/CMakeLists.darwin.txt b/ydb/core/yq/libs/private_client/CMakeLists.darwin.txt index 003da4e746..49d1348098 100644 --- a/ydb/core/yq/libs/private_client/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/private_client/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/private_client/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/private_client/CMakeLists.linux-aarch64.txt index ac314b815d..56b5c7eccd 100644 --- a/ydb/core/yq/libs/private_client/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/private_client/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/private_client/CMakeLists.linux.txt b/ydb/core/yq/libs/private_client/CMakeLists.linux.txt index ac314b815d..56b5c7eccd 100644 --- a/ydb/core/yq/libs/private_client/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/private_client/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/private_client/CMakeLists.txt b/ydb/core/yq/libs/private_client/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/private_client/CMakeLists.txt +++ b/ydb/core/yq/libs/private_client/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/protos/CMakeLists.darwin.txt b/ydb/core/yq/libs/protos/CMakeLists.darwin.txt index 7ad41618c7..e911d79905 100644 --- a/ydb/core/yq/libs/protos/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/protos/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/protos/CMakeLists.linux-aarch64.txt index d0f358d3c2..e20e84ecdb 100644 --- a/ydb/core/yq/libs/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/protos/CMakeLists.linux.txt b/ydb/core/yq/libs/protos/CMakeLists.linux.txt index d0f358d3c2..e20e84ecdb 100644 --- a/ydb/core/yq/libs/protos/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/protos/CMakeLists.txt b/ydb/core/yq/libs/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/protos/CMakeLists.txt +++ b/ydb/core/yq/libs/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/CMakeLists.darwin.txt b/ydb/core/yq/libs/quota_manager/CMakeLists.darwin.txt index 6cd34fe287..e1b5ab26c6 100644 --- a/ydb/core/yq/libs/quota_manager/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/quota_manager/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/quota_manager/CMakeLists.linux-aarch64.txt index 546ad372a0..bb13308f8f 100644 --- a/ydb/core/yq/libs/quota_manager/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/quota_manager/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/CMakeLists.linux.txt b/ydb/core/yq/libs/quota_manager/CMakeLists.linux.txt index 546ad372a0..bb13308f8f 100644 --- a/ydb/core/yq/libs/quota_manager/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/quota_manager/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/CMakeLists.txt b/ydb/core/yq/libs/quota_manager/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/quota_manager/CMakeLists.txt +++ b/ydb/core/yq/libs/quota_manager/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/events/CMakeLists.darwin.txt b/ydb/core/yq/libs/quota_manager/events/CMakeLists.darwin.txt index 2ef3752564..ea0e549fb1 100644 --- a/ydb/core/yq/libs/quota_manager/events/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/quota_manager/events/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/events/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/quota_manager/events/CMakeLists.linux-aarch64.txt index 6eeac10db1..b3c558259d 100644 --- a/ydb/core/yq/libs/quota_manager/events/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/quota_manager/events/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/events/CMakeLists.linux.txt b/ydb/core/yq/libs/quota_manager/events/CMakeLists.linux.txt index 6eeac10db1..b3c558259d 100644 --- a/ydb/core/yq/libs/quota_manager/events/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/quota_manager/events/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/events/CMakeLists.txt b/ydb/core/yq/libs/quota_manager/events/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/quota_manager/events/CMakeLists.txt +++ b/ydb/core/yq/libs/quota_manager/events/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/proto/CMakeLists.darwin.txt b/ydb/core/yq/libs/quota_manager/proto/CMakeLists.darwin.txt index 6e92863aed..9255ab24e8 100644 --- a/ydb/core/yq/libs/quota_manager/proto/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/quota_manager/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/proto/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/quota_manager/proto/CMakeLists.linux-aarch64.txt index c4582dfb22..aeb95e4a2b 100644 --- a/ydb/core/yq/libs/quota_manager/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/quota_manager/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/proto/CMakeLists.linux.txt b/ydb/core/yq/libs/quota_manager/proto/CMakeLists.linux.txt index c4582dfb22..aeb95e4a2b 100644 --- a/ydb/core/yq/libs/quota_manager/proto/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/quota_manager/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/proto/CMakeLists.txt b/ydb/core/yq/libs/quota_manager/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/quota_manager/proto/CMakeLists.txt +++ b/ydb/core/yq/libs/quota_manager/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.darwin.txt b/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.darwin.txt index 3d6ea7822e..1626b4cb8f 100644 --- a/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.linux-aarch64.txt index 519f8ebc4f..67154f4f01 100644 --- a/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.linux.txt b/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.linux.txt index 519f8ebc4f..67154f4f01 100644 --- a/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.txt b/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.txt +++ b/ydb/core/yq/libs/quota_manager/ut_helpers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/CMakeLists.txt b/ydb/core/yq/libs/rate_limiter/CMakeLists.txt index 5a1f3bdda6..1e8fa3f396 100644 --- a/ydb/core/yq/libs/rate_limiter/CMakeLists.txt +++ b/ydb/core/yq/libs/rate_limiter/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.darwin.txt b/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.darwin.txt index 227adce3a4..5ef82db9e3 100644 --- a/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.linux-aarch64.txt index 3a7458ed6a..a1ccc3177e 100644 --- a/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.linux.txt b/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.linux.txt index 3a7458ed6a..a1ccc3177e 100644 --- a/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.txt b/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.txt +++ b/ydb/core/yq/libs/rate_limiter/control_plane_service/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/events/CMakeLists.darwin.txt b/ydb/core/yq/libs/rate_limiter/events/CMakeLists.darwin.txt index c25cce8b2e..cdda2b3ff3 100644 --- a/ydb/core/yq/libs/rate_limiter/events/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/rate_limiter/events/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/events/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/rate_limiter/events/CMakeLists.linux-aarch64.txt index db49fc3f3c..5f3e23f6f0 100644 --- a/ydb/core/yq/libs/rate_limiter/events/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/rate_limiter/events/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/events/CMakeLists.linux.txt b/ydb/core/yq/libs/rate_limiter/events/CMakeLists.linux.txt index db49fc3f3c..5f3e23f6f0 100644 --- a/ydb/core/yq/libs/rate_limiter/events/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/rate_limiter/events/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/events/CMakeLists.txt b/ydb/core/yq/libs/rate_limiter/events/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/rate_limiter/events/CMakeLists.txt +++ b/ydb/core/yq/libs/rate_limiter/events/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.darwin.txt b/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.darwin.txt index f9b174455d..386b8b3251 100644 --- a/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.linux-aarch64.txt index 9ac1a040d0..6d9e3c1420 100644 --- a/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.linux.txt b/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.linux.txt index 9ac1a040d0..6d9e3c1420 100644 --- a/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.txt b/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.txt +++ b/ydb/core/yq/libs/rate_limiter/quoter_service/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.darwin.txt b/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.darwin.txt index c72bed69fb..0ca322f3c2 100644 --- a/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.linux-aarch64.txt index 72cbc539d3..c99c5935b3 100644 --- a/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.linux.txt b/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.linux.txt index 72cbc539d3..c99c5935b3 100644 --- a/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.txt b/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.txt +++ b/ydb/core/yq/libs/rate_limiter/utils/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/read_rule/CMakeLists.darwin.txt b/ydb/core/yq/libs/read_rule/CMakeLists.darwin.txt index 18c3c5e28b..1bc21f5a2d 100644 --- a/ydb/core/yq/libs/read_rule/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/read_rule/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/read_rule/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/read_rule/CMakeLists.linux-aarch64.txt index c47f68409f..6f204524e0 100644 --- a/ydb/core/yq/libs/read_rule/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/read_rule/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/read_rule/CMakeLists.linux.txt b/ydb/core/yq/libs/read_rule/CMakeLists.linux.txt index c47f68409f..6f204524e0 100644 --- a/ydb/core/yq/libs/read_rule/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/read_rule/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/read_rule/CMakeLists.txt b/ydb/core/yq/libs/read_rule/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/read_rule/CMakeLists.txt +++ b/ydb/core/yq/libs/read_rule/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/result_formatter/CMakeLists.darwin.txt b/ydb/core/yq/libs/result_formatter/CMakeLists.darwin.txt index c0814c9512..2954dbc509 100644 --- a/ydb/core/yq/libs/result_formatter/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/result_formatter/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/result_formatter/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/result_formatter/CMakeLists.linux-aarch64.txt index 78010acce1..c6f97efc7c 100644 --- a/ydb/core/yq/libs/result_formatter/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/result_formatter/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/result_formatter/CMakeLists.linux.txt b/ydb/core/yq/libs/result_formatter/CMakeLists.linux.txt index 78010acce1..c6f97efc7c 100644 --- a/ydb/core/yq/libs/result_formatter/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/result_formatter/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/result_formatter/CMakeLists.txt b/ydb/core/yq/libs/result_formatter/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/result_formatter/CMakeLists.txt +++ b/ydb/core/yq/libs/result_formatter/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/result_formatter/ut/CMakeLists.darwin.txt b/ydb/core/yq/libs/result_formatter/ut/CMakeLists.darwin.txt index 838671a904..6fe1fce7a3 100644 --- a/ydb/core/yq/libs/result_formatter/ut/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/result_formatter/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/result_formatter/ut/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/result_formatter/ut/CMakeLists.linux-aarch64.txt index 457852336c..36ea57e137 100644 --- a/ydb/core/yq/libs/result_formatter/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/result_formatter/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/result_formatter/ut/CMakeLists.linux.txt b/ydb/core/yq/libs/result_formatter/ut/CMakeLists.linux.txt index 58a3e6ed6a..18c6be1a8f 100644 --- a/ydb/core/yq/libs/result_formatter/ut/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/result_formatter/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/result_formatter/ut/CMakeLists.txt b/ydb/core/yq/libs/result_formatter/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/result_formatter/ut/CMakeLists.txt +++ b/ydb/core/yq/libs/result_formatter/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/shared_resources/CMakeLists.darwin.txt b/ydb/core/yq/libs/shared_resources/CMakeLists.darwin.txt index 3a2c062a8b..41976b3936 100644 --- a/ydb/core/yq/libs/shared_resources/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/shared_resources/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/shared_resources/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/shared_resources/CMakeLists.linux-aarch64.txt index 9659758fe0..16a28c1e87 100644 --- a/ydb/core/yq/libs/shared_resources/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/shared_resources/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/shared_resources/CMakeLists.linux.txt b/ydb/core/yq/libs/shared_resources/CMakeLists.linux.txt index 9659758fe0..16a28c1e87 100644 --- a/ydb/core/yq/libs/shared_resources/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/shared_resources/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/shared_resources/CMakeLists.txt b/ydb/core/yq/libs/shared_resources/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/shared_resources/CMakeLists.txt +++ b/ydb/core/yq/libs/shared_resources/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/shared_resources/interface/CMakeLists.darwin.txt b/ydb/core/yq/libs/shared_resources/interface/CMakeLists.darwin.txt index 207512304a..60ba7bb876 100644 --- a/ydb/core/yq/libs/shared_resources/interface/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/shared_resources/interface/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/shared_resources/interface/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/shared_resources/interface/CMakeLists.linux-aarch64.txt index 2ec56378b5..cf38906da1 100644 --- a/ydb/core/yq/libs/shared_resources/interface/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/shared_resources/interface/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/shared_resources/interface/CMakeLists.linux.txt b/ydb/core/yq/libs/shared_resources/interface/CMakeLists.linux.txt index 2ec56378b5..cf38906da1 100644 --- a/ydb/core/yq/libs/shared_resources/interface/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/shared_resources/interface/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/shared_resources/interface/CMakeLists.txt b/ydb/core/yq/libs/shared_resources/interface/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/shared_resources/interface/CMakeLists.txt +++ b/ydb/core/yq/libs/shared_resources/interface/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/signer/CMakeLists.darwin.txt b/ydb/core/yq/libs/signer/CMakeLists.darwin.txt index e3cbf7b435..7d2b183979 100644 --- a/ydb/core/yq/libs/signer/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/signer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/signer/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/signer/CMakeLists.linux-aarch64.txt index ba14544a75..3192cd8d4c 100644 --- a/ydb/core/yq/libs/signer/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/signer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/signer/CMakeLists.linux.txt b/ydb/core/yq/libs/signer/CMakeLists.linux.txt index ba14544a75..3192cd8d4c 100644 --- a/ydb/core/yq/libs/signer/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/signer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/signer/CMakeLists.txt b/ydb/core/yq/libs/signer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/signer/CMakeLists.txt +++ b/ydb/core/yq/libs/signer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/signer/ut/CMakeLists.darwin.txt b/ydb/core/yq/libs/signer/ut/CMakeLists.darwin.txt index 9a1ad9da70..30c80662d0 100644 --- a/ydb/core/yq/libs/signer/ut/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/signer/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/signer/ut/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/signer/ut/CMakeLists.linux-aarch64.txt index 4b2a897732..d226f4392b 100644 --- a/ydb/core/yq/libs/signer/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/signer/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/signer/ut/CMakeLists.linux.txt b/ydb/core/yq/libs/signer/ut/CMakeLists.linux.txt index 16c8166c8b..5d3219eb10 100644 --- a/ydb/core/yq/libs/signer/ut/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/signer/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/signer/ut/CMakeLists.txt b/ydb/core/yq/libs/signer/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/signer/ut/CMakeLists.txt +++ b/ydb/core/yq/libs/signer/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/tasks_packer/CMakeLists.darwin.txt b/ydb/core/yq/libs/tasks_packer/CMakeLists.darwin.txt index c8b40d827e..c1d1a3c30a 100644 --- a/ydb/core/yq/libs/tasks_packer/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/tasks_packer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/tasks_packer/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/tasks_packer/CMakeLists.linux-aarch64.txt index 47db356e75..d795eea3ab 100644 --- a/ydb/core/yq/libs/tasks_packer/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/tasks_packer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/tasks_packer/CMakeLists.linux.txt b/ydb/core/yq/libs/tasks_packer/CMakeLists.linux.txt index 47db356e75..d795eea3ab 100644 --- a/ydb/core/yq/libs/tasks_packer/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/tasks_packer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/tasks_packer/CMakeLists.txt b/ydb/core/yq/libs/tasks_packer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/tasks_packer/CMakeLists.txt +++ b/ydb/core/yq/libs/tasks_packer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/test_connection/CMakeLists.darwin.txt b/ydb/core/yq/libs/test_connection/CMakeLists.darwin.txt index 4a906fc356..75ea783ac8 100644 --- a/ydb/core/yq/libs/test_connection/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/test_connection/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/test_connection/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/test_connection/CMakeLists.linux-aarch64.txt index ccb6da8673..552e015705 100644 --- a/ydb/core/yq/libs/test_connection/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/test_connection/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/test_connection/CMakeLists.linux.txt b/ydb/core/yq/libs/test_connection/CMakeLists.linux.txt index ccb6da8673..552e015705 100644 --- a/ydb/core/yq/libs/test_connection/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/test_connection/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/test_connection/CMakeLists.txt b/ydb/core/yq/libs/test_connection/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/test_connection/CMakeLists.txt +++ b/ydb/core/yq/libs/test_connection/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/test_connection/events/CMakeLists.darwin.txt b/ydb/core/yq/libs/test_connection/events/CMakeLists.darwin.txt index 31f6959f5a..014ee1370f 100644 --- a/ydb/core/yq/libs/test_connection/events/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/test_connection/events/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/test_connection/events/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/test_connection/events/CMakeLists.linux-aarch64.txt index 60a94a7795..55f5c5f3f8 100644 --- a/ydb/core/yq/libs/test_connection/events/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/test_connection/events/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/test_connection/events/CMakeLists.linux.txt b/ydb/core/yq/libs/test_connection/events/CMakeLists.linux.txt index 60a94a7795..55f5c5f3f8 100644 --- a/ydb/core/yq/libs/test_connection/events/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/test_connection/events/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/test_connection/events/CMakeLists.txt b/ydb/core/yq/libs/test_connection/events/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/test_connection/events/CMakeLists.txt +++ b/ydb/core/yq/libs/test_connection/events/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/test_connection/ut/CMakeLists.darwin.txt b/ydb/core/yq/libs/test_connection/ut/CMakeLists.darwin.txt index 9ceb7c407b..890e16f74f 100644 --- a/ydb/core/yq/libs/test_connection/ut/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/test_connection/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/test_connection/ut/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/test_connection/ut/CMakeLists.linux-aarch64.txt index bd924e129f..d3ceebb4be 100644 --- a/ydb/core/yq/libs/test_connection/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/test_connection/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/test_connection/ut/CMakeLists.linux.txt b/ydb/core/yq/libs/test_connection/ut/CMakeLists.linux.txt index 3e3f314c6c..0711a29a70 100644 --- a/ydb/core/yq/libs/test_connection/ut/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/test_connection/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/test_connection/ut/CMakeLists.txt b/ydb/core/yq/libs/test_connection/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/test_connection/ut/CMakeLists.txt +++ b/ydb/core/yq/libs/test_connection/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/ydb/CMakeLists.darwin.txt b/ydb/core/yq/libs/ydb/CMakeLists.darwin.txt index 700512a42f..e3c9a90a38 100644 --- a/ydb/core/yq/libs/ydb/CMakeLists.darwin.txt +++ b/ydb/core/yq/libs/ydb/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/ydb/CMakeLists.linux-aarch64.txt b/ydb/core/yq/libs/ydb/CMakeLists.linux-aarch64.txt index 3d8895409c..6431637ad4 100644 --- a/ydb/core/yq/libs/ydb/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yq/libs/ydb/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/ydb/CMakeLists.linux.txt b/ydb/core/yq/libs/ydb/CMakeLists.linux.txt index 3d8895409c..6431637ad4 100644 --- a/ydb/core/yq/libs/ydb/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/ydb/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yq/libs/ydb/CMakeLists.txt b/ydb/core/yq/libs/ydb/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yq/libs/ydb/CMakeLists.txt +++ b/ydb/core/yq/libs/ydb/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yql_testlib/CMakeLists.darwin.txt b/ydb/core/yql_testlib/CMakeLists.darwin.txt index 4a617c586e..71322b69cc 100644 --- a/ydb/core/yql_testlib/CMakeLists.darwin.txt +++ b/ydb/core/yql_testlib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yql_testlib/CMakeLists.linux-aarch64.txt b/ydb/core/yql_testlib/CMakeLists.linux-aarch64.txt index 8f4edabd94..1eb240fd7b 100644 --- a/ydb/core/yql_testlib/CMakeLists.linux-aarch64.txt +++ b/ydb/core/yql_testlib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yql_testlib/CMakeLists.linux.txt b/ydb/core/yql_testlib/CMakeLists.linux.txt index 8f4edabd94..1eb240fd7b 100644 --- a/ydb/core/yql_testlib/CMakeLists.linux.txt +++ b/ydb/core/yql_testlib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/core/yql_testlib/CMakeLists.txt b/ydb/core/yql_testlib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/core/yql_testlib/CMakeLists.txt +++ b/ydb/core/yql_testlib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/CMakeLists.txt b/ydb/library/CMakeLists.txt index 0c98beb11f..90ce1c49cd 100644 --- a/ydb/library/CMakeLists.txt +++ b/ydb/library/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/accessor/CMakeLists.darwin.txt b/ydb/library/accessor/CMakeLists.darwin.txt index f7402105d2..c2a284076f 100644 --- a/ydb/library/accessor/CMakeLists.darwin.txt +++ b/ydb/library/accessor/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/accessor/CMakeLists.linux-aarch64.txt b/ydb/library/accessor/CMakeLists.linux-aarch64.txt index 58040ca2a0..d233360f6a 100644 --- a/ydb/library/accessor/CMakeLists.linux-aarch64.txt +++ b/ydb/library/accessor/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/accessor/CMakeLists.linux.txt b/ydb/library/accessor/CMakeLists.linux.txt index 58040ca2a0..d233360f6a 100644 --- a/ydb/library/accessor/CMakeLists.linux.txt +++ b/ydb/library/accessor/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/accessor/CMakeLists.txt b/ydb/library/accessor/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/accessor/CMakeLists.txt +++ b/ydb/library/accessor/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/aclib/CMakeLists.darwin.txt b/ydb/library/aclib/CMakeLists.darwin.txt index 2c32c7d7fa..336127fc26 100644 --- a/ydb/library/aclib/CMakeLists.darwin.txt +++ b/ydb/library/aclib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/aclib/CMakeLists.linux-aarch64.txt b/ydb/library/aclib/CMakeLists.linux-aarch64.txt index 5df9c29c14..148291a94b 100644 --- a/ydb/library/aclib/CMakeLists.linux-aarch64.txt +++ b/ydb/library/aclib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/aclib/CMakeLists.linux.txt b/ydb/library/aclib/CMakeLists.linux.txt index 5df9c29c14..148291a94b 100644 --- a/ydb/library/aclib/CMakeLists.linux.txt +++ b/ydb/library/aclib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/aclib/CMakeLists.txt b/ydb/library/aclib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/aclib/CMakeLists.txt +++ b/ydb/library/aclib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/aclib/protos/CMakeLists.darwin.txt b/ydb/library/aclib/protos/CMakeLists.darwin.txt index f8984951e0..67d19168a8 100644 --- a/ydb/library/aclib/protos/CMakeLists.darwin.txt +++ b/ydb/library/aclib/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/aclib/protos/CMakeLists.linux-aarch64.txt b/ydb/library/aclib/protos/CMakeLists.linux-aarch64.txt index b56e0a197a..8e42e11593 100644 --- a/ydb/library/aclib/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/library/aclib/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/aclib/protos/CMakeLists.linux.txt b/ydb/library/aclib/protos/CMakeLists.linux.txt index b56e0a197a..8e42e11593 100644 --- a/ydb/library/aclib/protos/CMakeLists.linux.txt +++ b/ydb/library/aclib/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/aclib/protos/CMakeLists.txt b/ydb/library/aclib/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/aclib/protos/CMakeLists.txt +++ b/ydb/library/aclib/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/aclib/ut/CMakeLists.darwin.txt b/ydb/library/aclib/ut/CMakeLists.darwin.txt index bb5e85c5fc..a661881ad6 100644 --- a/ydb/library/aclib/ut/CMakeLists.darwin.txt +++ b/ydb/library/aclib/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/aclib/ut/CMakeLists.linux-aarch64.txt b/ydb/library/aclib/ut/CMakeLists.linux-aarch64.txt index 3b2f265ff9..1653d017be 100644 --- a/ydb/library/aclib/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/aclib/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/aclib/ut/CMakeLists.linux.txt b/ydb/library/aclib/ut/CMakeLists.linux.txt index c5176d99a5..35b9d40463 100644 --- a/ydb/library/aclib/ut/CMakeLists.linux.txt +++ b/ydb/library/aclib/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/aclib/ut/CMakeLists.txt b/ydb/library/aclib/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/aclib/ut/CMakeLists.txt +++ b/ydb/library/aclib/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/CMakeLists.darwin.txt b/ydb/library/arrow_clickhouse/CMakeLists.darwin.txt index cc63a41ede..ad256049c8 100644 --- a/ydb/library/arrow_clickhouse/CMakeLists.darwin.txt +++ b/ydb/library/arrow_clickhouse/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/CMakeLists.linux-aarch64.txt b/ydb/library/arrow_clickhouse/CMakeLists.linux-aarch64.txt index d5e973a491..7da75a07c3 100644 --- a/ydb/library/arrow_clickhouse/CMakeLists.linux-aarch64.txt +++ b/ydb/library/arrow_clickhouse/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/CMakeLists.linux.txt b/ydb/library/arrow_clickhouse/CMakeLists.linux.txt index d5e973a491..7da75a07c3 100644 --- a/ydb/library/arrow_clickhouse/CMakeLists.linux.txt +++ b/ydb/library/arrow_clickhouse/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/CMakeLists.txt b/ydb/library/arrow_clickhouse/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/arrow_clickhouse/CMakeLists.txt +++ b/ydb/library/arrow_clickhouse/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/Columns/CMakeLists.darwin.txt b/ydb/library/arrow_clickhouse/Columns/CMakeLists.darwin.txt index 7fb88cc9cc..e8a9737df7 100644 --- a/ydb/library/arrow_clickhouse/Columns/CMakeLists.darwin.txt +++ b/ydb/library/arrow_clickhouse/Columns/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/Columns/CMakeLists.linux-aarch64.txt b/ydb/library/arrow_clickhouse/Columns/CMakeLists.linux-aarch64.txt index 06de01b608..a4ca991d19 100644 --- a/ydb/library/arrow_clickhouse/Columns/CMakeLists.linux-aarch64.txt +++ b/ydb/library/arrow_clickhouse/Columns/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/Columns/CMakeLists.linux.txt b/ydb/library/arrow_clickhouse/Columns/CMakeLists.linux.txt index 06de01b608..a4ca991d19 100644 --- a/ydb/library/arrow_clickhouse/Columns/CMakeLists.linux.txt +++ b/ydb/library/arrow_clickhouse/Columns/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/Columns/CMakeLists.txt b/ydb/library/arrow_clickhouse/Columns/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/arrow_clickhouse/Columns/CMakeLists.txt +++ b/ydb/library/arrow_clickhouse/Columns/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/Common/CMakeLists.darwin.txt b/ydb/library/arrow_clickhouse/Common/CMakeLists.darwin.txt index d792835d45..6b5b8c46f1 100644 --- a/ydb/library/arrow_clickhouse/Common/CMakeLists.darwin.txt +++ b/ydb/library/arrow_clickhouse/Common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/Common/CMakeLists.linux-aarch64.txt b/ydb/library/arrow_clickhouse/Common/CMakeLists.linux-aarch64.txt index 996b31013a..4d1b5eb382 100644 --- a/ydb/library/arrow_clickhouse/Common/CMakeLists.linux-aarch64.txt +++ b/ydb/library/arrow_clickhouse/Common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/Common/CMakeLists.linux.txt b/ydb/library/arrow_clickhouse/Common/CMakeLists.linux.txt index 996b31013a..4d1b5eb382 100644 --- a/ydb/library/arrow_clickhouse/Common/CMakeLists.linux.txt +++ b/ydb/library/arrow_clickhouse/Common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/Common/CMakeLists.txt b/ydb/library/arrow_clickhouse/Common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/arrow_clickhouse/Common/CMakeLists.txt +++ b/ydb/library/arrow_clickhouse/Common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.darwin.txt b/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.darwin.txt index e4db05eb18..503612c355 100644 --- a/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.darwin.txt +++ b/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.linux-aarch64.txt b/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.linux-aarch64.txt index 2ea91bc4d7..8198399840 100644 --- a/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.linux-aarch64.txt +++ b/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.linux.txt b/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.linux.txt index 2ea91bc4d7..8198399840 100644 --- a/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.linux.txt +++ b/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.txt b/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.txt +++ b/ydb/library/arrow_clickhouse/DataStreams/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/ut/CMakeLists.darwin.txt b/ydb/library/arrow_clickhouse/ut/CMakeLists.darwin.txt index 1a9a9c7126..6f34275c32 100644 --- a/ydb/library/arrow_clickhouse/ut/CMakeLists.darwin.txt +++ b/ydb/library/arrow_clickhouse/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/ut/CMakeLists.linux-aarch64.txt b/ydb/library/arrow_clickhouse/ut/CMakeLists.linux-aarch64.txt index feb97a367f..9d746f7b40 100644 --- a/ydb/library/arrow_clickhouse/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/arrow_clickhouse/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/ut/CMakeLists.linux.txt b/ydb/library/arrow_clickhouse/ut/CMakeLists.linux.txt index 2c8d1604ba..03a24e4190 100644 --- a/ydb/library/arrow_clickhouse/ut/CMakeLists.linux.txt +++ b/ydb/library/arrow_clickhouse/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_clickhouse/ut/CMakeLists.txt b/ydb/library/arrow_clickhouse/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/arrow_clickhouse/ut/CMakeLists.txt +++ b/ydb/library/arrow_clickhouse/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_kernels/CMakeLists.darwin.txt b/ydb/library/arrow_kernels/CMakeLists.darwin.txt index ac3feb6492..a6a7cff53e 100644 --- a/ydb/library/arrow_kernels/CMakeLists.darwin.txt +++ b/ydb/library/arrow_kernels/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_kernels/CMakeLists.linux-aarch64.txt b/ydb/library/arrow_kernels/CMakeLists.linux-aarch64.txt index f590b932ea..a6f80d3e71 100644 --- a/ydb/library/arrow_kernels/CMakeLists.linux-aarch64.txt +++ b/ydb/library/arrow_kernels/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_kernels/CMakeLists.linux.txt b/ydb/library/arrow_kernels/CMakeLists.linux.txt index f590b932ea..a6f80d3e71 100644 --- a/ydb/library/arrow_kernels/CMakeLists.linux.txt +++ b/ydb/library/arrow_kernels/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_kernels/CMakeLists.txt b/ydb/library/arrow_kernels/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/arrow_kernels/CMakeLists.txt +++ b/ydb/library/arrow_kernels/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_kernels/ut/CMakeLists.darwin.txt b/ydb/library/arrow_kernels/ut/CMakeLists.darwin.txt index e57be38692..709ad9f2c1 100644 --- a/ydb/library/arrow_kernels/ut/CMakeLists.darwin.txt +++ b/ydb/library/arrow_kernels/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_kernels/ut/CMakeLists.linux-aarch64.txt b/ydb/library/arrow_kernels/ut/CMakeLists.linux-aarch64.txt index e4de1f59fd..16c2e01111 100644 --- a/ydb/library/arrow_kernels/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/arrow_kernels/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_kernels/ut/CMakeLists.linux.txt b/ydb/library/arrow_kernels/ut/CMakeLists.linux.txt index 4ccc2cefe7..c4500d5183 100644 --- a/ydb/library/arrow_kernels/ut/CMakeLists.linux.txt +++ b/ydb/library/arrow_kernels/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/arrow_kernels/ut/CMakeLists.txt b/ydb/library/arrow_kernels/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/arrow_kernels/ut/CMakeLists.txt +++ b/ydb/library/arrow_kernels/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/backup/CMakeLists.darwin.txt b/ydb/library/backup/CMakeLists.darwin.txt index f10492155d..ae4818eedf 100644 --- a/ydb/library/backup/CMakeLists.darwin.txt +++ b/ydb/library/backup/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/backup/CMakeLists.linux-aarch64.txt b/ydb/library/backup/CMakeLists.linux-aarch64.txt index 28c1334329..4e61736477 100644 --- a/ydb/library/backup/CMakeLists.linux-aarch64.txt +++ b/ydb/library/backup/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/backup/CMakeLists.linux.txt b/ydb/library/backup/CMakeLists.linux.txt index 28c1334329..4e61736477 100644 --- a/ydb/library/backup/CMakeLists.linux.txt +++ b/ydb/library/backup/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/backup/CMakeLists.txt b/ydb/library/backup/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/backup/CMakeLists.txt +++ b/ydb/library/backup/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/backup/ut/CMakeLists.darwin.txt b/ydb/library/backup/ut/CMakeLists.darwin.txt index 8c7b0a3139..023dd6181e 100644 --- a/ydb/library/backup/ut/CMakeLists.darwin.txt +++ b/ydb/library/backup/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/backup/ut/CMakeLists.linux-aarch64.txt b/ydb/library/backup/ut/CMakeLists.linux-aarch64.txt index 86f48e2290..fbe1e7ee54 100644 --- a/ydb/library/backup/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/backup/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/backup/ut/CMakeLists.linux.txt b/ydb/library/backup/ut/CMakeLists.linux.txt index 859e92a469..693c0f15b0 100644 --- a/ydb/library/backup/ut/CMakeLists.linux.txt +++ b/ydb/library/backup/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/backup/ut/CMakeLists.txt b/ydb/library/backup/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/backup/ut/CMakeLists.txt +++ b/ydb/library/backup/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/binary_json/CMakeLists.darwin.txt b/ydb/library/binary_json/CMakeLists.darwin.txt index 32606d35f1..c40b1fa6a1 100644 --- a/ydb/library/binary_json/CMakeLists.darwin.txt +++ b/ydb/library/binary_json/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/binary_json/CMakeLists.linux-aarch64.txt b/ydb/library/binary_json/CMakeLists.linux-aarch64.txt index 21d578eb20..a8fa52ce7b 100644 --- a/ydb/library/binary_json/CMakeLists.linux-aarch64.txt +++ b/ydb/library/binary_json/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/binary_json/CMakeLists.linux.txt b/ydb/library/binary_json/CMakeLists.linux.txt index 21d578eb20..a8fa52ce7b 100644 --- a/ydb/library/binary_json/CMakeLists.linux.txt +++ b/ydb/library/binary_json/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/binary_json/CMakeLists.txt b/ydb/library/binary_json/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/binary_json/CMakeLists.txt +++ b/ydb/library/binary_json/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/binary_json/ut/CMakeLists.darwin.txt b/ydb/library/binary_json/ut/CMakeLists.darwin.txt index 72fdd93cb2..81bcb7af3a 100644 --- a/ydb/library/binary_json/ut/CMakeLists.darwin.txt +++ b/ydb/library/binary_json/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/binary_json/ut/CMakeLists.linux-aarch64.txt b/ydb/library/binary_json/ut/CMakeLists.linux-aarch64.txt index 71847dcafc..9d52387c16 100644 --- a/ydb/library/binary_json/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/binary_json/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/binary_json/ut/CMakeLists.linux.txt b/ydb/library/binary_json/ut/CMakeLists.linux.txt index 611d07b74c..d95d6b8ba4 100644 --- a/ydb/library/binary_json/ut/CMakeLists.linux.txt +++ b/ydb/library/binary_json/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/binary_json/ut/CMakeLists.txt b/ydb/library/binary_json/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/binary_json/ut/CMakeLists.txt +++ b/ydb/library/binary_json/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/dynumber/CMakeLists.darwin.txt b/ydb/library/dynumber/CMakeLists.darwin.txt index 3b47326b61..8eba3e9ddc 100644 --- a/ydb/library/dynumber/CMakeLists.darwin.txt +++ b/ydb/library/dynumber/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/dynumber/CMakeLists.linux-aarch64.txt b/ydb/library/dynumber/CMakeLists.linux-aarch64.txt index 33f652c175..fe445ed486 100644 --- a/ydb/library/dynumber/CMakeLists.linux-aarch64.txt +++ b/ydb/library/dynumber/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/dynumber/CMakeLists.linux.txt b/ydb/library/dynumber/CMakeLists.linux.txt index 33f652c175..fe445ed486 100644 --- a/ydb/library/dynumber/CMakeLists.linux.txt +++ b/ydb/library/dynumber/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/dynumber/CMakeLists.txt b/ydb/library/dynumber/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/dynumber/CMakeLists.txt +++ b/ydb/library/dynumber/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/dynumber/ut/CMakeLists.darwin.txt b/ydb/library/dynumber/ut/CMakeLists.darwin.txt index 16cf7b1ec2..845be66c81 100644 --- a/ydb/library/dynumber/ut/CMakeLists.darwin.txt +++ b/ydb/library/dynumber/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/dynumber/ut/CMakeLists.linux-aarch64.txt b/ydb/library/dynumber/ut/CMakeLists.linux-aarch64.txt index 8c55931547..4b907c69f8 100644 --- a/ydb/library/dynumber/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/dynumber/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/dynumber/ut/CMakeLists.linux.txt b/ydb/library/dynumber/ut/CMakeLists.linux.txt index c5392724c6..9798640eb2 100644 --- a/ydb/library/dynumber/ut/CMakeLists.linux.txt +++ b/ydb/library/dynumber/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/dynumber/ut/CMakeLists.txt b/ydb/library/dynumber/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/dynumber/ut/CMakeLists.txt +++ b/ydb/library/dynumber/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/folder_service/CMakeLists.darwin.txt b/ydb/library/folder_service/CMakeLists.darwin.txt index eded5dafc9..bf310baa0d 100644 --- a/ydb/library/folder_service/CMakeLists.darwin.txt +++ b/ydb/library/folder_service/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/folder_service/CMakeLists.linux-aarch64.txt b/ydb/library/folder_service/CMakeLists.linux-aarch64.txt index 5c94954e49..974ec7f398 100644 --- a/ydb/library/folder_service/CMakeLists.linux-aarch64.txt +++ b/ydb/library/folder_service/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/folder_service/CMakeLists.linux.txt b/ydb/library/folder_service/CMakeLists.linux.txt index 5c94954e49..974ec7f398 100644 --- a/ydb/library/folder_service/CMakeLists.linux.txt +++ b/ydb/library/folder_service/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/folder_service/CMakeLists.txt b/ydb/library/folder_service/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/folder_service/CMakeLists.txt +++ b/ydb/library/folder_service/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/folder_service/mock/CMakeLists.darwin.txt b/ydb/library/folder_service/mock/CMakeLists.darwin.txt index 9d789ffdc6..427fe81796 100644 --- a/ydb/library/folder_service/mock/CMakeLists.darwin.txt +++ b/ydb/library/folder_service/mock/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/folder_service/mock/CMakeLists.linux-aarch64.txt b/ydb/library/folder_service/mock/CMakeLists.linux-aarch64.txt index e49d363de9..bfbb6d839e 100644 --- a/ydb/library/folder_service/mock/CMakeLists.linux-aarch64.txt +++ b/ydb/library/folder_service/mock/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/folder_service/mock/CMakeLists.linux.txt b/ydb/library/folder_service/mock/CMakeLists.linux.txt index e49d363de9..bfbb6d839e 100644 --- a/ydb/library/folder_service/mock/CMakeLists.linux.txt +++ b/ydb/library/folder_service/mock/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/folder_service/mock/CMakeLists.txt b/ydb/library/folder_service/mock/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/folder_service/mock/CMakeLists.txt +++ b/ydb/library/folder_service/mock/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/folder_service/proto/CMakeLists.darwin.txt b/ydb/library/folder_service/proto/CMakeLists.darwin.txt index e630dcf49f..8428a94fa2 100644 --- a/ydb/library/folder_service/proto/CMakeLists.darwin.txt +++ b/ydb/library/folder_service/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/folder_service/proto/CMakeLists.linux-aarch64.txt b/ydb/library/folder_service/proto/CMakeLists.linux-aarch64.txt index 1e0762ca11..1e12d739b4 100644 --- a/ydb/library/folder_service/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/library/folder_service/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/folder_service/proto/CMakeLists.linux.txt b/ydb/library/folder_service/proto/CMakeLists.linux.txt index 1e0762ca11..1e12d739b4 100644 --- a/ydb/library/folder_service/proto/CMakeLists.linux.txt +++ b/ydb/library/folder_service/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/folder_service/proto/CMakeLists.txt b/ydb/library/folder_service/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/folder_service/proto/CMakeLists.txt +++ b/ydb/library/folder_service/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/http_proxy/CMakeLists.txt b/ydb/library/http_proxy/CMakeLists.txt index 7c1d730d47..df17c2b93b 100644 --- a/ydb/library/http_proxy/CMakeLists.txt +++ b/ydb/library/http_proxy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/http_proxy/authorization/CMakeLists.darwin.txt b/ydb/library/http_proxy/authorization/CMakeLists.darwin.txt index a7f6e978f5..ff67e93265 100644 --- a/ydb/library/http_proxy/authorization/CMakeLists.darwin.txt +++ b/ydb/library/http_proxy/authorization/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/http_proxy/authorization/CMakeLists.linux-aarch64.txt b/ydb/library/http_proxy/authorization/CMakeLists.linux-aarch64.txt index 16605b9cba..b3a387d8fc 100644 --- a/ydb/library/http_proxy/authorization/CMakeLists.linux-aarch64.txt +++ b/ydb/library/http_proxy/authorization/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/http_proxy/authorization/CMakeLists.linux.txt b/ydb/library/http_proxy/authorization/CMakeLists.linux.txt index 16605b9cba..b3a387d8fc 100644 --- a/ydb/library/http_proxy/authorization/CMakeLists.linux.txt +++ b/ydb/library/http_proxy/authorization/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/http_proxy/authorization/CMakeLists.txt b/ydb/library/http_proxy/authorization/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/http_proxy/authorization/CMakeLists.txt +++ b/ydb/library/http_proxy/authorization/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/http_proxy/authorization/ut/CMakeLists.darwin.txt b/ydb/library/http_proxy/authorization/ut/CMakeLists.darwin.txt index 4d41a6db71..7cf7609190 100644 --- a/ydb/library/http_proxy/authorization/ut/CMakeLists.darwin.txt +++ b/ydb/library/http_proxy/authorization/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/http_proxy/authorization/ut/CMakeLists.linux-aarch64.txt b/ydb/library/http_proxy/authorization/ut/CMakeLists.linux-aarch64.txt index 09c9c9e229..4d46f1890b 100644 --- a/ydb/library/http_proxy/authorization/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/http_proxy/authorization/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/http_proxy/authorization/ut/CMakeLists.linux.txt b/ydb/library/http_proxy/authorization/ut/CMakeLists.linux.txt index 0f5d5a4107..71acde3851 100644 --- a/ydb/library/http_proxy/authorization/ut/CMakeLists.linux.txt +++ b/ydb/library/http_proxy/authorization/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/http_proxy/authorization/ut/CMakeLists.txt b/ydb/library/http_proxy/authorization/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/http_proxy/authorization/ut/CMakeLists.txt +++ b/ydb/library/http_proxy/authorization/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/http_proxy/error/CMakeLists.darwin.txt b/ydb/library/http_proxy/error/CMakeLists.darwin.txt index 31a15ae2d3..b31069c69b 100644 --- a/ydb/library/http_proxy/error/CMakeLists.darwin.txt +++ b/ydb/library/http_proxy/error/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/http_proxy/error/CMakeLists.linux-aarch64.txt b/ydb/library/http_proxy/error/CMakeLists.linux-aarch64.txt index 94042686e8..cac5423282 100644 --- a/ydb/library/http_proxy/error/CMakeLists.linux-aarch64.txt +++ b/ydb/library/http_proxy/error/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/http_proxy/error/CMakeLists.linux.txt b/ydb/library/http_proxy/error/CMakeLists.linux.txt index 94042686e8..cac5423282 100644 --- a/ydb/library/http_proxy/error/CMakeLists.linux.txt +++ b/ydb/library/http_proxy/error/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/http_proxy/error/CMakeLists.txt b/ydb/library/http_proxy/error/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/http_proxy/error/CMakeLists.txt +++ b/ydb/library/http_proxy/error/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/keys/CMakeLists.darwin.txt b/ydb/library/keys/CMakeLists.darwin.txt index 8471d0d718..ae35a96ed5 100644 --- a/ydb/library/keys/CMakeLists.darwin.txt +++ b/ydb/library/keys/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/keys/CMakeLists.linux-aarch64.txt b/ydb/library/keys/CMakeLists.linux-aarch64.txt index 510416c9de..ba7d1f19a9 100644 --- a/ydb/library/keys/CMakeLists.linux-aarch64.txt +++ b/ydb/library/keys/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/keys/CMakeLists.linux.txt b/ydb/library/keys/CMakeLists.linux.txt index 510416c9de..ba7d1f19a9 100644 --- a/ydb/library/keys/CMakeLists.linux.txt +++ b/ydb/library/keys/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/keys/CMakeLists.txt b/ydb/library/keys/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/keys/CMakeLists.txt +++ b/ydb/library/keys/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/keys/ut/CMakeLists.darwin.txt b/ydb/library/keys/ut/CMakeLists.darwin.txt index 232ebba2d4..c5dfa25f57 100644 --- a/ydb/library/keys/ut/CMakeLists.darwin.txt +++ b/ydb/library/keys/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/keys/ut/CMakeLists.linux-aarch64.txt b/ydb/library/keys/ut/CMakeLists.linux-aarch64.txt index 38b251c94a..a9f8a1331e 100644 --- a/ydb/library/keys/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/keys/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/keys/ut/CMakeLists.linux.txt b/ydb/library/keys/ut/CMakeLists.linux.txt index 779f598688..f2e26ef109 100644 --- a/ydb/library/keys/ut/CMakeLists.linux.txt +++ b/ydb/library/keys/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/keys/ut/CMakeLists.txt b/ydb/library/keys/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/keys/ut/CMakeLists.txt +++ b/ydb/library/keys/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/logger/CMakeLists.darwin.txt b/ydb/library/logger/CMakeLists.darwin.txt index 88a3f4d9c6..102a906f0c 100644 --- a/ydb/library/logger/CMakeLists.darwin.txt +++ b/ydb/library/logger/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/logger/CMakeLists.linux-aarch64.txt b/ydb/library/logger/CMakeLists.linux-aarch64.txt index d43dbe5ac8..b16ca53920 100644 --- a/ydb/library/logger/CMakeLists.linux-aarch64.txt +++ b/ydb/library/logger/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/logger/CMakeLists.linux.txt b/ydb/library/logger/CMakeLists.linux.txt index d43dbe5ac8..b16ca53920 100644 --- a/ydb/library/logger/CMakeLists.linux.txt +++ b/ydb/library/logger/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/logger/CMakeLists.txt b/ydb/library/logger/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/logger/CMakeLists.txt +++ b/ydb/library/logger/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/login/CMakeLists.darwin.txt b/ydb/library/login/CMakeLists.darwin.txt index da3622dd23..d9b859367b 100644 --- a/ydb/library/login/CMakeLists.darwin.txt +++ b/ydb/library/login/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/login/CMakeLists.linux-aarch64.txt b/ydb/library/login/CMakeLists.linux-aarch64.txt index baeb3feb7d..e9f65247d2 100644 --- a/ydb/library/login/CMakeLists.linux-aarch64.txt +++ b/ydb/library/login/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/login/CMakeLists.linux.txt b/ydb/library/login/CMakeLists.linux.txt index baeb3feb7d..e9f65247d2 100644 --- a/ydb/library/login/CMakeLists.linux.txt +++ b/ydb/library/login/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/login/CMakeLists.txt b/ydb/library/login/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/login/CMakeLists.txt +++ b/ydb/library/login/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/login/protos/CMakeLists.darwin.txt b/ydb/library/login/protos/CMakeLists.darwin.txt index d6f06cdfc1..eb809491f0 100644 --- a/ydb/library/login/protos/CMakeLists.darwin.txt +++ b/ydb/library/login/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/login/protos/CMakeLists.linux-aarch64.txt b/ydb/library/login/protos/CMakeLists.linux-aarch64.txt index 46b4f920ec..3aa76b00f1 100644 --- a/ydb/library/login/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/library/login/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/login/protos/CMakeLists.linux.txt b/ydb/library/login/protos/CMakeLists.linux.txt index 46b4f920ec..3aa76b00f1 100644 --- a/ydb/library/login/protos/CMakeLists.linux.txt +++ b/ydb/library/login/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/login/protos/CMakeLists.txt b/ydb/library/login/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/login/protos/CMakeLists.txt +++ b/ydb/library/login/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/login/ut/CMakeLists.darwin.txt b/ydb/library/login/ut/CMakeLists.darwin.txt index d755a8dc53..035758d02e 100644 --- a/ydb/library/login/ut/CMakeLists.darwin.txt +++ b/ydb/library/login/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/login/ut/CMakeLists.linux-aarch64.txt b/ydb/library/login/ut/CMakeLists.linux-aarch64.txt index 05d36427c0..01876d2575 100644 --- a/ydb/library/login/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/login/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/login/ut/CMakeLists.linux.txt b/ydb/library/login/ut/CMakeLists.linux.txt index 9646f5ec36..1db2f921a0 100644 --- a/ydb/library/login/ut/CMakeLists.linux.txt +++ b/ydb/library/login/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/login/ut/CMakeLists.txt b/ydb/library/login/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/login/ut/CMakeLists.txt +++ b/ydb/library/login/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/CMakeLists.darwin.txt b/ydb/library/mkql_proto/CMakeLists.darwin.txt index a385c3e9ac..100a360532 100644 --- a/ydb/library/mkql_proto/CMakeLists.darwin.txt +++ b/ydb/library/mkql_proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/CMakeLists.linux-aarch64.txt b/ydb/library/mkql_proto/CMakeLists.linux-aarch64.txt index dd6458a4b8..ffe27cc8f9 100644 --- a/ydb/library/mkql_proto/CMakeLists.linux-aarch64.txt +++ b/ydb/library/mkql_proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/CMakeLists.linux.txt b/ydb/library/mkql_proto/CMakeLists.linux.txt index dd6458a4b8..ffe27cc8f9 100644 --- a/ydb/library/mkql_proto/CMakeLists.linux.txt +++ b/ydb/library/mkql_proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/CMakeLists.txt b/ydb/library/mkql_proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/mkql_proto/CMakeLists.txt +++ b/ydb/library/mkql_proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/protos/CMakeLists.darwin.txt b/ydb/library/mkql_proto/protos/CMakeLists.darwin.txt index 36fffda986..e590b9da01 100644 --- a/ydb/library/mkql_proto/protos/CMakeLists.darwin.txt +++ b/ydb/library/mkql_proto/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/protos/CMakeLists.linux-aarch64.txt b/ydb/library/mkql_proto/protos/CMakeLists.linux-aarch64.txt index b5929f4505..208b628e37 100644 --- a/ydb/library/mkql_proto/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/library/mkql_proto/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/protos/CMakeLists.linux.txt b/ydb/library/mkql_proto/protos/CMakeLists.linux.txt index b5929f4505..208b628e37 100644 --- a/ydb/library/mkql_proto/protos/CMakeLists.linux.txt +++ b/ydb/library/mkql_proto/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/protos/CMakeLists.txt b/ydb/library/mkql_proto/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/mkql_proto/protos/CMakeLists.txt +++ b/ydb/library/mkql_proto/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/ut/CMakeLists.darwin.txt b/ydb/library/mkql_proto/ut/CMakeLists.darwin.txt index 3cbe0120c0..f90b9440dc 100644 --- a/ydb/library/mkql_proto/ut/CMakeLists.darwin.txt +++ b/ydb/library/mkql_proto/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/ut/CMakeLists.linux-aarch64.txt b/ydb/library/mkql_proto/ut/CMakeLists.linux-aarch64.txt index 71f484cafc..6c196dc6e0 100644 --- a/ydb/library/mkql_proto/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/mkql_proto/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/ut/CMakeLists.linux.txt b/ydb/library/mkql_proto/ut/CMakeLists.linux.txt index a587d1f8b5..c57bffe631 100644 --- a/ydb/library/mkql_proto/ut/CMakeLists.linux.txt +++ b/ydb/library/mkql_proto/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/ut/CMakeLists.txt b/ydb/library/mkql_proto/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/mkql_proto/ut/CMakeLists.txt +++ b/ydb/library/mkql_proto/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/ut/helpers/CMakeLists.darwin.txt b/ydb/library/mkql_proto/ut/helpers/CMakeLists.darwin.txt index f1a4a06b02..6e37268a1f 100644 --- a/ydb/library/mkql_proto/ut/helpers/CMakeLists.darwin.txt +++ b/ydb/library/mkql_proto/ut/helpers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/ut/helpers/CMakeLists.linux-aarch64.txt b/ydb/library/mkql_proto/ut/helpers/CMakeLists.linux-aarch64.txt index 3b0fadf0e9..aa8aaa3ccb 100644 --- a/ydb/library/mkql_proto/ut/helpers/CMakeLists.linux-aarch64.txt +++ b/ydb/library/mkql_proto/ut/helpers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/ut/helpers/CMakeLists.linux.txt b/ydb/library/mkql_proto/ut/helpers/CMakeLists.linux.txt index 3b0fadf0e9..aa8aaa3ccb 100644 --- a/ydb/library/mkql_proto/ut/helpers/CMakeLists.linux.txt +++ b/ydb/library/mkql_proto/ut/helpers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/mkql_proto/ut/helpers/CMakeLists.txt b/ydb/library/mkql_proto/ut/helpers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/mkql_proto/ut/helpers/CMakeLists.txt +++ b/ydb/library/mkql_proto/ut/helpers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/naming_conventions/CMakeLists.darwin.txt b/ydb/library/naming_conventions/CMakeLists.darwin.txt index 3ce7663582..f3fd1057c3 100644 --- a/ydb/library/naming_conventions/CMakeLists.darwin.txt +++ b/ydb/library/naming_conventions/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/naming_conventions/CMakeLists.linux-aarch64.txt b/ydb/library/naming_conventions/CMakeLists.linux-aarch64.txt index 0e0add5863..fa07869250 100644 --- a/ydb/library/naming_conventions/CMakeLists.linux-aarch64.txt +++ b/ydb/library/naming_conventions/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/naming_conventions/CMakeLists.linux.txt b/ydb/library/naming_conventions/CMakeLists.linux.txt index 0e0add5863..fa07869250 100644 --- a/ydb/library/naming_conventions/CMakeLists.linux.txt +++ b/ydb/library/naming_conventions/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/naming_conventions/CMakeLists.txt b/ydb/library/naming_conventions/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/naming_conventions/CMakeLists.txt +++ b/ydb/library/naming_conventions/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/naming_conventions/ut/CMakeLists.darwin.txt b/ydb/library/naming_conventions/ut/CMakeLists.darwin.txt index 58fcfce68b..3d49da9f21 100644 --- a/ydb/library/naming_conventions/ut/CMakeLists.darwin.txt +++ b/ydb/library/naming_conventions/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/naming_conventions/ut/CMakeLists.linux-aarch64.txt b/ydb/library/naming_conventions/ut/CMakeLists.linux-aarch64.txt index 241e24fd2c..29dc3a914f 100644 --- a/ydb/library/naming_conventions/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/naming_conventions/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/naming_conventions/ut/CMakeLists.linux.txt b/ydb/library/naming_conventions/ut/CMakeLists.linux.txt index 3dc50a1c5c..70cc4a8fb0 100644 --- a/ydb/library/naming_conventions/ut/CMakeLists.linux.txt +++ b/ydb/library/naming_conventions/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/naming_conventions/ut/CMakeLists.txt b/ydb/library/naming_conventions/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/naming_conventions/ut/CMakeLists.txt +++ b/ydb/library/naming_conventions/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pdisk_io/CMakeLists.darwin.txt b/ydb/library/pdisk_io/CMakeLists.darwin.txt index 70b528fbc7..a9c60e9791 100644 --- a/ydb/library/pdisk_io/CMakeLists.darwin.txt +++ b/ydb/library/pdisk_io/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pdisk_io/CMakeLists.linux-aarch64.txt b/ydb/library/pdisk_io/CMakeLists.linux-aarch64.txt index 8e312b07c1..700e53ede1 100644 --- a/ydb/library/pdisk_io/CMakeLists.linux-aarch64.txt +++ b/ydb/library/pdisk_io/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pdisk_io/CMakeLists.linux.txt b/ydb/library/pdisk_io/CMakeLists.linux.txt index 8e312b07c1..700e53ede1 100644 --- a/ydb/library/pdisk_io/CMakeLists.linux.txt +++ b/ydb/library/pdisk_io/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pdisk_io/CMakeLists.txt b/ydb/library/pdisk_io/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/pdisk_io/CMakeLists.txt +++ b/ydb/library/pdisk_io/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pdisk_io/protos/CMakeLists.darwin.txt b/ydb/library/pdisk_io/protos/CMakeLists.darwin.txt index 17810b7351..8e79e66159 100644 --- a/ydb/library/pdisk_io/protos/CMakeLists.darwin.txt +++ b/ydb/library/pdisk_io/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pdisk_io/protos/CMakeLists.linux-aarch64.txt b/ydb/library/pdisk_io/protos/CMakeLists.linux-aarch64.txt index fe36261cb1..2b2dead5fb 100644 --- a/ydb/library/pdisk_io/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/library/pdisk_io/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pdisk_io/protos/CMakeLists.linux.txt b/ydb/library/pdisk_io/protos/CMakeLists.linux.txt index fe36261cb1..2b2dead5fb 100644 --- a/ydb/library/pdisk_io/protos/CMakeLists.linux.txt +++ b/ydb/library/pdisk_io/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pdisk_io/protos/CMakeLists.txt b/ydb/library/pdisk_io/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/pdisk_io/protos/CMakeLists.txt +++ b/ydb/library/pdisk_io/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/CMakeLists.txt b/ydb/library/persqueue/CMakeLists.txt index fb5c3ab584..92b51deaad 100644 --- a/ydb/library/persqueue/CMakeLists.txt +++ b/ydb/library/persqueue/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/counter_time_keeper/CMakeLists.darwin.txt b/ydb/library/persqueue/counter_time_keeper/CMakeLists.darwin.txt index 24bbf23e79..e272674974 100644 --- a/ydb/library/persqueue/counter_time_keeper/CMakeLists.darwin.txt +++ b/ydb/library/persqueue/counter_time_keeper/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/counter_time_keeper/CMakeLists.linux-aarch64.txt b/ydb/library/persqueue/counter_time_keeper/CMakeLists.linux-aarch64.txt index 1ca2c91b7e..49840f54b8 100644 --- a/ydb/library/persqueue/counter_time_keeper/CMakeLists.linux-aarch64.txt +++ b/ydb/library/persqueue/counter_time_keeper/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/counter_time_keeper/CMakeLists.linux.txt b/ydb/library/persqueue/counter_time_keeper/CMakeLists.linux.txt index 1ca2c91b7e..49840f54b8 100644 --- a/ydb/library/persqueue/counter_time_keeper/CMakeLists.linux.txt +++ b/ydb/library/persqueue/counter_time_keeper/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/counter_time_keeper/CMakeLists.txt b/ydb/library/persqueue/counter_time_keeper/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/persqueue/counter_time_keeper/CMakeLists.txt +++ b/ydb/library/persqueue/counter_time_keeper/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/obfuscate/CMakeLists.darwin.txt b/ydb/library/persqueue/obfuscate/CMakeLists.darwin.txt index 378fb2c667..02f21933a9 100644 --- a/ydb/library/persqueue/obfuscate/CMakeLists.darwin.txt +++ b/ydb/library/persqueue/obfuscate/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/obfuscate/CMakeLists.linux-aarch64.txt b/ydb/library/persqueue/obfuscate/CMakeLists.linux-aarch64.txt index a4fc4a35ca..9b03ab9bc5 100644 --- a/ydb/library/persqueue/obfuscate/CMakeLists.linux-aarch64.txt +++ b/ydb/library/persqueue/obfuscate/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/obfuscate/CMakeLists.linux.txt b/ydb/library/persqueue/obfuscate/CMakeLists.linux.txt index a4fc4a35ca..9b03ab9bc5 100644 --- a/ydb/library/persqueue/obfuscate/CMakeLists.linux.txt +++ b/ydb/library/persqueue/obfuscate/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/obfuscate/CMakeLists.txt b/ydb/library/persqueue/obfuscate/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/persqueue/obfuscate/CMakeLists.txt +++ b/ydb/library/persqueue/obfuscate/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/tests/CMakeLists.darwin.txt b/ydb/library/persqueue/tests/CMakeLists.darwin.txt index 936ca05293..3cfa9f24f7 100644 --- a/ydb/library/persqueue/tests/CMakeLists.darwin.txt +++ b/ydb/library/persqueue/tests/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/tests/CMakeLists.linux-aarch64.txt b/ydb/library/persqueue/tests/CMakeLists.linux-aarch64.txt index ad83757a16..6071fc4902 100644 --- a/ydb/library/persqueue/tests/CMakeLists.linux-aarch64.txt +++ b/ydb/library/persqueue/tests/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/tests/CMakeLists.linux.txt b/ydb/library/persqueue/tests/CMakeLists.linux.txt index ad83757a16..6071fc4902 100644 --- a/ydb/library/persqueue/tests/CMakeLists.linux.txt +++ b/ydb/library/persqueue/tests/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/tests/CMakeLists.txt b/ydb/library/persqueue/tests/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/persqueue/tests/CMakeLists.txt +++ b/ydb/library/persqueue/tests/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/topic_parser/CMakeLists.darwin.txt b/ydb/library/persqueue/topic_parser/CMakeLists.darwin.txt index 539d6aac12..b53684c776 100644 --- a/ydb/library/persqueue/topic_parser/CMakeLists.darwin.txt +++ b/ydb/library/persqueue/topic_parser/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/topic_parser/CMakeLists.linux-aarch64.txt b/ydb/library/persqueue/topic_parser/CMakeLists.linux-aarch64.txt index b7e1e4658c..337eb74e3b 100644 --- a/ydb/library/persqueue/topic_parser/CMakeLists.linux-aarch64.txt +++ b/ydb/library/persqueue/topic_parser/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/topic_parser/CMakeLists.linux.txt b/ydb/library/persqueue/topic_parser/CMakeLists.linux.txt index b7e1e4658c..337eb74e3b 100644 --- a/ydb/library/persqueue/topic_parser/CMakeLists.linux.txt +++ b/ydb/library/persqueue/topic_parser/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/topic_parser/CMakeLists.txt b/ydb/library/persqueue/topic_parser/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/persqueue/topic_parser/CMakeLists.txt +++ b/ydb/library/persqueue/topic_parser/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/topic_parser/ut/CMakeLists.darwin.txt b/ydb/library/persqueue/topic_parser/ut/CMakeLists.darwin.txt index 877eac82ba..b35c3fd0cb 100644 --- a/ydb/library/persqueue/topic_parser/ut/CMakeLists.darwin.txt +++ b/ydb/library/persqueue/topic_parser/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/topic_parser/ut/CMakeLists.linux-aarch64.txt b/ydb/library/persqueue/topic_parser/ut/CMakeLists.linux-aarch64.txt index e5b3b9b8d7..a2b11bf7c4 100644 --- a/ydb/library/persqueue/topic_parser/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/persqueue/topic_parser/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/topic_parser/ut/CMakeLists.linux.txt b/ydb/library/persqueue/topic_parser/ut/CMakeLists.linux.txt index fa26296f82..78d6bc52ff 100644 --- a/ydb/library/persqueue/topic_parser/ut/CMakeLists.linux.txt +++ b/ydb/library/persqueue/topic_parser/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/topic_parser/ut/CMakeLists.txt b/ydb/library/persqueue/topic_parser/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/persqueue/topic_parser/ut/CMakeLists.txt +++ b/ydb/library/persqueue/topic_parser/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/topic_parser_public/CMakeLists.darwin.txt b/ydb/library/persqueue/topic_parser_public/CMakeLists.darwin.txt index ff189cb46e..b6e8e1156a 100644 --- a/ydb/library/persqueue/topic_parser_public/CMakeLists.darwin.txt +++ b/ydb/library/persqueue/topic_parser_public/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/topic_parser_public/CMakeLists.linux-aarch64.txt b/ydb/library/persqueue/topic_parser_public/CMakeLists.linux-aarch64.txt index 414a463ec0..851cc42268 100644 --- a/ydb/library/persqueue/topic_parser_public/CMakeLists.linux-aarch64.txt +++ b/ydb/library/persqueue/topic_parser_public/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/topic_parser_public/CMakeLists.linux.txt b/ydb/library/persqueue/topic_parser_public/CMakeLists.linux.txt index 414a463ec0..851cc42268 100644 --- a/ydb/library/persqueue/topic_parser_public/CMakeLists.linux.txt +++ b/ydb/library/persqueue/topic_parser_public/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/persqueue/topic_parser_public/CMakeLists.txt b/ydb/library/persqueue/topic_parser_public/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/persqueue/topic_parser_public/CMakeLists.txt +++ b/ydb/library/persqueue/topic_parser_public/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pretty_types_print/CMakeLists.txt b/ydb/library/pretty_types_print/CMakeLists.txt index 2dfdbaa716..70b683e586 100644 --- a/ydb/library/pretty_types_print/CMakeLists.txt +++ b/ydb/library/pretty_types_print/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pretty_types_print/protobuf/CMakeLists.darwin.txt b/ydb/library/pretty_types_print/protobuf/CMakeLists.darwin.txt index a16ec7c5bb..0d9b3abdd2 100644 --- a/ydb/library/pretty_types_print/protobuf/CMakeLists.darwin.txt +++ b/ydb/library/pretty_types_print/protobuf/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pretty_types_print/protobuf/CMakeLists.linux-aarch64.txt b/ydb/library/pretty_types_print/protobuf/CMakeLists.linux-aarch64.txt index b5d4cc0ef7..a1bba8a837 100644 --- a/ydb/library/pretty_types_print/protobuf/CMakeLists.linux-aarch64.txt +++ b/ydb/library/pretty_types_print/protobuf/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pretty_types_print/protobuf/CMakeLists.linux.txt b/ydb/library/pretty_types_print/protobuf/CMakeLists.linux.txt index b5d4cc0ef7..a1bba8a837 100644 --- a/ydb/library/pretty_types_print/protobuf/CMakeLists.linux.txt +++ b/ydb/library/pretty_types_print/protobuf/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pretty_types_print/protobuf/CMakeLists.txt b/ydb/library/pretty_types_print/protobuf/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/pretty_types_print/protobuf/CMakeLists.txt +++ b/ydb/library/pretty_types_print/protobuf/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pretty_types_print/wilson/CMakeLists.darwin.txt b/ydb/library/pretty_types_print/wilson/CMakeLists.darwin.txt index 359ebc1d57..6928b07809 100644 --- a/ydb/library/pretty_types_print/wilson/CMakeLists.darwin.txt +++ b/ydb/library/pretty_types_print/wilson/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pretty_types_print/wilson/CMakeLists.linux-aarch64.txt b/ydb/library/pretty_types_print/wilson/CMakeLists.linux-aarch64.txt index 1066727d0f..c216b8801e 100644 --- a/ydb/library/pretty_types_print/wilson/CMakeLists.linux-aarch64.txt +++ b/ydb/library/pretty_types_print/wilson/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pretty_types_print/wilson/CMakeLists.linux.txt b/ydb/library/pretty_types_print/wilson/CMakeLists.linux.txt index 1066727d0f..c216b8801e 100644 --- a/ydb/library/pretty_types_print/wilson/CMakeLists.linux.txt +++ b/ydb/library/pretty_types_print/wilson/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/pretty_types_print/wilson/CMakeLists.txt b/ydb/library/pretty_types_print/wilson/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/pretty_types_print/wilson/CMakeLists.txt +++ b/ydb/library/pretty_types_print/wilson/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/protobuf_printer/CMakeLists.darwin.txt b/ydb/library/protobuf_printer/CMakeLists.darwin.txt index 540cbc5dda..6819133278 100644 --- a/ydb/library/protobuf_printer/CMakeLists.darwin.txt +++ b/ydb/library/protobuf_printer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/protobuf_printer/CMakeLists.linux-aarch64.txt b/ydb/library/protobuf_printer/CMakeLists.linux-aarch64.txt index a73ad4d5e2..4d1c6ede16 100644 --- a/ydb/library/protobuf_printer/CMakeLists.linux-aarch64.txt +++ b/ydb/library/protobuf_printer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/protobuf_printer/CMakeLists.linux.txt b/ydb/library/protobuf_printer/CMakeLists.linux.txt index a73ad4d5e2..4d1c6ede16 100644 --- a/ydb/library/protobuf_printer/CMakeLists.linux.txt +++ b/ydb/library/protobuf_printer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/protobuf_printer/CMakeLists.txt b/ydb/library/protobuf_printer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/protobuf_printer/CMakeLists.txt +++ b/ydb/library/protobuf_printer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/protobuf_printer/ut/CMakeLists.darwin.txt b/ydb/library/protobuf_printer/ut/CMakeLists.darwin.txt index 24261ca024..32250b459b 100644 --- a/ydb/library/protobuf_printer/ut/CMakeLists.darwin.txt +++ b/ydb/library/protobuf_printer/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/protobuf_printer/ut/CMakeLists.linux-aarch64.txt b/ydb/library/protobuf_printer/ut/CMakeLists.linux-aarch64.txt index 4c4b7f18d8..1253b12613 100644 --- a/ydb/library/protobuf_printer/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/protobuf_printer/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/protobuf_printer/ut/CMakeLists.linux.txt b/ydb/library/protobuf_printer/ut/CMakeLists.linux.txt index 3ea0f5032c..e0a4375c06 100644 --- a/ydb/library/protobuf_printer/ut/CMakeLists.linux.txt +++ b/ydb/library/protobuf_printer/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/protobuf_printer/ut/CMakeLists.txt b/ydb/library/protobuf_printer/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/protobuf_printer/ut/CMakeLists.txt +++ b/ydb/library/protobuf_printer/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/CMakeLists.darwin.txt b/ydb/library/rewrapper/CMakeLists.darwin.txt index f4cd86ba56..25872ed43b 100644 --- a/ydb/library/rewrapper/CMakeLists.darwin.txt +++ b/ydb/library/rewrapper/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/CMakeLists.linux-aarch64.txt b/ydb/library/rewrapper/CMakeLists.linux-aarch64.txt index 4bdcd052b9..c10b6de851 100644 --- a/ydb/library/rewrapper/CMakeLists.linux-aarch64.txt +++ b/ydb/library/rewrapper/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/CMakeLists.linux.txt b/ydb/library/rewrapper/CMakeLists.linux.txt index 408d0b5e68..de0b597067 100644 --- a/ydb/library/rewrapper/CMakeLists.linux.txt +++ b/ydb/library/rewrapper/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/CMakeLists.txt b/ydb/library/rewrapper/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/rewrapper/CMakeLists.txt +++ b/ydb/library/rewrapper/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/hyperscan/CMakeLists.darwin.txt b/ydb/library/rewrapper/hyperscan/CMakeLists.darwin.txt index a586c01275..baa8fceadb 100644 --- a/ydb/library/rewrapper/hyperscan/CMakeLists.darwin.txt +++ b/ydb/library/rewrapper/hyperscan/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/hyperscan/CMakeLists.linux.txt b/ydb/library/rewrapper/hyperscan/CMakeLists.linux.txt index 056979d640..72e1682b66 100644 --- a/ydb/library/rewrapper/hyperscan/CMakeLists.linux.txt +++ b/ydb/library/rewrapper/hyperscan/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/hyperscan/CMakeLists.txt b/ydb/library/rewrapper/hyperscan/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/ydb/library/rewrapper/hyperscan/CMakeLists.txt +++ b/ydb/library/rewrapper/hyperscan/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/proto/CMakeLists.darwin.txt b/ydb/library/rewrapper/proto/CMakeLists.darwin.txt index dc09fc4405..1548f74f47 100644 --- a/ydb/library/rewrapper/proto/CMakeLists.darwin.txt +++ b/ydb/library/rewrapper/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/proto/CMakeLists.linux-aarch64.txt b/ydb/library/rewrapper/proto/CMakeLists.linux-aarch64.txt index 89c72f14dd..171ee7881b 100644 --- a/ydb/library/rewrapper/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/library/rewrapper/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/proto/CMakeLists.linux.txt b/ydb/library/rewrapper/proto/CMakeLists.linux.txt index 89c72f14dd..171ee7881b 100644 --- a/ydb/library/rewrapper/proto/CMakeLists.linux.txt +++ b/ydb/library/rewrapper/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/proto/CMakeLists.txt b/ydb/library/rewrapper/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/rewrapper/proto/CMakeLists.txt +++ b/ydb/library/rewrapper/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/re2/CMakeLists.darwin.txt b/ydb/library/rewrapper/re2/CMakeLists.darwin.txt index f449647174..a021b4859b 100644 --- a/ydb/library/rewrapper/re2/CMakeLists.darwin.txt +++ b/ydb/library/rewrapper/re2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/re2/CMakeLists.linux-aarch64.txt b/ydb/library/rewrapper/re2/CMakeLists.linux-aarch64.txt index 7102fa234d..6763195f0d 100644 --- a/ydb/library/rewrapper/re2/CMakeLists.linux-aarch64.txt +++ b/ydb/library/rewrapper/re2/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/re2/CMakeLists.linux.txt b/ydb/library/rewrapper/re2/CMakeLists.linux.txt index 7102fa234d..6763195f0d 100644 --- a/ydb/library/rewrapper/re2/CMakeLists.linux.txt +++ b/ydb/library/rewrapper/re2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/rewrapper/re2/CMakeLists.txt b/ydb/library/rewrapper/re2/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/rewrapper/re2/CMakeLists.txt +++ b/ydb/library/rewrapper/re2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/CMakeLists.darwin.txt b/ydb/library/schlab/CMakeLists.darwin.txt index 4a168df062..35b5487e79 100644 --- a/ydb/library/schlab/CMakeLists.darwin.txt +++ b/ydb/library/schlab/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/CMakeLists.linux-aarch64.txt b/ydb/library/schlab/CMakeLists.linux-aarch64.txt index aec50f53a5..4ce9056fc0 100644 --- a/ydb/library/schlab/CMakeLists.linux-aarch64.txt +++ b/ydb/library/schlab/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/CMakeLists.linux.txt b/ydb/library/schlab/CMakeLists.linux.txt index aec50f53a5..4ce9056fc0 100644 --- a/ydb/library/schlab/CMakeLists.linux.txt +++ b/ydb/library/schlab/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/CMakeLists.txt b/ydb/library/schlab/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/schlab/CMakeLists.txt +++ b/ydb/library/schlab/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/CMakeLists.darwin.txt b/ydb/library/schlab/mon/CMakeLists.darwin.txt index 48c26185e9..3b72ce7700 100644 --- a/ydb/library/schlab/mon/CMakeLists.darwin.txt +++ b/ydb/library/schlab/mon/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/CMakeLists.linux-aarch64.txt b/ydb/library/schlab/mon/CMakeLists.linux-aarch64.txt index 97d3fa4557..7fb3ae3579 100644 --- a/ydb/library/schlab/mon/CMakeLists.linux-aarch64.txt +++ b/ydb/library/schlab/mon/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/CMakeLists.linux.txt b/ydb/library/schlab/mon/CMakeLists.linux.txt index 97d3fa4557..7fb3ae3579 100644 --- a/ydb/library/schlab/mon/CMakeLists.linux.txt +++ b/ydb/library/schlab/mon/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/CMakeLists.txt b/ydb/library/schlab/mon/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/schlab/mon/CMakeLists.txt +++ b/ydb/library/schlab/mon/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/static/CMakeLists.darwin.txt b/ydb/library/schlab/mon/static/CMakeLists.darwin.txt index 251aeb5314..382b5085cd 100644 --- a/ydb/library/schlab/mon/static/CMakeLists.darwin.txt +++ b/ydb/library/schlab/mon/static/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/static/CMakeLists.linux-aarch64.txt b/ydb/library/schlab/mon/static/CMakeLists.linux-aarch64.txt index 702a65052b..5f442af9f2 100644 --- a/ydb/library/schlab/mon/static/CMakeLists.linux-aarch64.txt +++ b/ydb/library/schlab/mon/static/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/static/CMakeLists.linux.txt b/ydb/library/schlab/mon/static/CMakeLists.linux.txt index 702a65052b..5f442af9f2 100644 --- a/ydb/library/schlab/mon/static/CMakeLists.linux.txt +++ b/ydb/library/schlab/mon/static/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/static/CMakeLists.txt b/ydb/library/schlab/mon/static/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/schlab/mon/static/CMakeLists.txt +++ b/ydb/library/schlab/mon/static/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/static/css/CMakeLists.darwin.txt b/ydb/library/schlab/mon/static/css/CMakeLists.darwin.txt index e804587a86..d722e0e466 100644 --- a/ydb/library/schlab/mon/static/css/CMakeLists.darwin.txt +++ b/ydb/library/schlab/mon/static/css/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/static/css/CMakeLists.linux-aarch64.txt b/ydb/library/schlab/mon/static/css/CMakeLists.linux-aarch64.txt index f0046a0796..2c8b78a748 100644 --- a/ydb/library/schlab/mon/static/css/CMakeLists.linux-aarch64.txt +++ b/ydb/library/schlab/mon/static/css/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/static/css/CMakeLists.linux.txt b/ydb/library/schlab/mon/static/css/CMakeLists.linux.txt index f0046a0796..2c8b78a748 100644 --- a/ydb/library/schlab/mon/static/css/CMakeLists.linux.txt +++ b/ydb/library/schlab/mon/static/css/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/static/css/CMakeLists.txt b/ydb/library/schlab/mon/static/css/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/schlab/mon/static/css/CMakeLists.txt +++ b/ydb/library/schlab/mon/static/css/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/static/js/CMakeLists.darwin.txt b/ydb/library/schlab/mon/static/js/CMakeLists.darwin.txt index fc22ace2a1..0369922dd0 100644 --- a/ydb/library/schlab/mon/static/js/CMakeLists.darwin.txt +++ b/ydb/library/schlab/mon/static/js/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/static/js/CMakeLists.linux-aarch64.txt b/ydb/library/schlab/mon/static/js/CMakeLists.linux-aarch64.txt index 5c2562236d..f5b55e898b 100644 --- a/ydb/library/schlab/mon/static/js/CMakeLists.linux-aarch64.txt +++ b/ydb/library/schlab/mon/static/js/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/static/js/CMakeLists.linux.txt b/ydb/library/schlab/mon/static/js/CMakeLists.linux.txt index 5c2562236d..f5b55e898b 100644 --- a/ydb/library/schlab/mon/static/js/CMakeLists.linux.txt +++ b/ydb/library/schlab/mon/static/js/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/static/js/CMakeLists.txt b/ydb/library/schlab/mon/static/js/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/schlab/mon/static/js/CMakeLists.txt +++ b/ydb/library/schlab/mon/static/js/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/test/CMakeLists.darwin.txt b/ydb/library/schlab/mon/test/CMakeLists.darwin.txt index d448d2c9b3..47b630acdc 100644 --- a/ydb/library/schlab/mon/test/CMakeLists.darwin.txt +++ b/ydb/library/schlab/mon/test/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/test/CMakeLists.linux-aarch64.txt b/ydb/library/schlab/mon/test/CMakeLists.linux-aarch64.txt index 5466c8ac4f..b4520df0d0 100644 --- a/ydb/library/schlab/mon/test/CMakeLists.linux-aarch64.txt +++ b/ydb/library/schlab/mon/test/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/test/CMakeLists.linux.txt b/ydb/library/schlab/mon/test/CMakeLists.linux.txt index 3a02c9628a..3504726ad3 100644 --- a/ydb/library/schlab/mon/test/CMakeLists.linux.txt +++ b/ydb/library/schlab/mon/test/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/mon/test/CMakeLists.txt b/ydb/library/schlab/mon/test/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/schlab/mon/test/CMakeLists.txt +++ b/ydb/library/schlab/mon/test/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/probes/CMakeLists.darwin.txt b/ydb/library/schlab/probes/CMakeLists.darwin.txt index bf68c02f96..357d4c0baf 100644 --- a/ydb/library/schlab/probes/CMakeLists.darwin.txt +++ b/ydb/library/schlab/probes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/probes/CMakeLists.linux-aarch64.txt b/ydb/library/schlab/probes/CMakeLists.linux-aarch64.txt index c4772b1365..ef987e0506 100644 --- a/ydb/library/schlab/probes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/schlab/probes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/probes/CMakeLists.linux.txt b/ydb/library/schlab/probes/CMakeLists.linux.txt index c4772b1365..ef987e0506 100644 --- a/ydb/library/schlab/probes/CMakeLists.linux.txt +++ b/ydb/library/schlab/probes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/probes/CMakeLists.txt b/ydb/library/schlab/probes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/schlab/probes/CMakeLists.txt +++ b/ydb/library/schlab/probes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/protos/CMakeLists.darwin.txt b/ydb/library/schlab/protos/CMakeLists.darwin.txt index 0009072148..23825b88c1 100644 --- a/ydb/library/schlab/protos/CMakeLists.darwin.txt +++ b/ydb/library/schlab/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/protos/CMakeLists.linux-aarch64.txt b/ydb/library/schlab/protos/CMakeLists.linux-aarch64.txt index e4d577a21e..221061f497 100644 --- a/ydb/library/schlab/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/library/schlab/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/protos/CMakeLists.linux.txt b/ydb/library/schlab/protos/CMakeLists.linux.txt index e4d577a21e..221061f497 100644 --- a/ydb/library/schlab/protos/CMakeLists.linux.txt +++ b/ydb/library/schlab/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/protos/CMakeLists.txt b/ydb/library/schlab/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/schlab/protos/CMakeLists.txt +++ b/ydb/library/schlab/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/schemu/CMakeLists.darwin.txt b/ydb/library/schlab/schemu/CMakeLists.darwin.txt index 9b717217b8..007223c328 100644 --- a/ydb/library/schlab/schemu/CMakeLists.darwin.txt +++ b/ydb/library/schlab/schemu/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/schemu/CMakeLists.linux-aarch64.txt b/ydb/library/schlab/schemu/CMakeLists.linux-aarch64.txt index d7eb36ed8d..ef80cbd3ea 100644 --- a/ydb/library/schlab/schemu/CMakeLists.linux-aarch64.txt +++ b/ydb/library/schlab/schemu/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/schemu/CMakeLists.linux.txt b/ydb/library/schlab/schemu/CMakeLists.linux.txt index d7eb36ed8d..ef80cbd3ea 100644 --- a/ydb/library/schlab/schemu/CMakeLists.linux.txt +++ b/ydb/library/schlab/schemu/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/schemu/CMakeLists.txt b/ydb/library/schlab/schemu/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/schlab/schemu/CMakeLists.txt +++ b/ydb/library/schlab/schemu/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/schine/CMakeLists.darwin.txt b/ydb/library/schlab/schine/CMakeLists.darwin.txt index 771fd29442..9ab206f785 100644 --- a/ydb/library/schlab/schine/CMakeLists.darwin.txt +++ b/ydb/library/schlab/schine/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/schine/CMakeLists.linux-aarch64.txt b/ydb/library/schlab/schine/CMakeLists.linux-aarch64.txt index 255ff0f863..cf733641cc 100644 --- a/ydb/library/schlab/schine/CMakeLists.linux-aarch64.txt +++ b/ydb/library/schlab/schine/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/schine/CMakeLists.linux.txt b/ydb/library/schlab/schine/CMakeLists.linux.txt index 255ff0f863..cf733641cc 100644 --- a/ydb/library/schlab/schine/CMakeLists.linux.txt +++ b/ydb/library/schlab/schine/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/schine/CMakeLists.txt b/ydb/library/schlab/schine/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/schlab/schine/CMakeLists.txt +++ b/ydb/library/schlab/schine/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/schoot/CMakeLists.darwin.txt b/ydb/library/schlab/schoot/CMakeLists.darwin.txt index f6a22af494..f4ef52b638 100644 --- a/ydb/library/schlab/schoot/CMakeLists.darwin.txt +++ b/ydb/library/schlab/schoot/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/schoot/CMakeLists.linux-aarch64.txt b/ydb/library/schlab/schoot/CMakeLists.linux-aarch64.txt index f39295cdef..91952ef4ad 100644 --- a/ydb/library/schlab/schoot/CMakeLists.linux-aarch64.txt +++ b/ydb/library/schlab/schoot/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/schoot/CMakeLists.linux.txt b/ydb/library/schlab/schoot/CMakeLists.linux.txt index f39295cdef..91952ef4ad 100644 --- a/ydb/library/schlab/schoot/CMakeLists.linux.txt +++ b/ydb/library/schlab/schoot/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/schoot/CMakeLists.txt b/ydb/library/schlab/schoot/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/schlab/schoot/CMakeLists.txt +++ b/ydb/library/schlab/schoot/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/ut/CMakeLists.darwin.txt b/ydb/library/schlab/ut/CMakeLists.darwin.txt index 44fd4394e1..43f854a917 100644 --- a/ydb/library/schlab/ut/CMakeLists.darwin.txt +++ b/ydb/library/schlab/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/ut/CMakeLists.linux-aarch64.txt b/ydb/library/schlab/ut/CMakeLists.linux-aarch64.txt index 007f4cdcc9..72feeb3c76 100644 --- a/ydb/library/schlab/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/schlab/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/ut/CMakeLists.linux.txt b/ydb/library/schlab/ut/CMakeLists.linux.txt index 538ecbe2c8..038771e080 100644 --- a/ydb/library/schlab/ut/CMakeLists.linux.txt +++ b/ydb/library/schlab/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/schlab/ut/CMakeLists.txt b/ydb/library/schlab/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/schlab/ut/CMakeLists.txt +++ b/ydb/library/schlab/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/security/CMakeLists.darwin.txt b/ydb/library/security/CMakeLists.darwin.txt index dde8aa446f..e6a52ce4c7 100644 --- a/ydb/library/security/CMakeLists.darwin.txt +++ b/ydb/library/security/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/security/CMakeLists.linux-aarch64.txt b/ydb/library/security/CMakeLists.linux-aarch64.txt index 2b0a1e0d9d..7a49450128 100644 --- a/ydb/library/security/CMakeLists.linux-aarch64.txt +++ b/ydb/library/security/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/security/CMakeLists.linux.txt b/ydb/library/security/CMakeLists.linux.txt index 2b0a1e0d9d..7a49450128 100644 --- a/ydb/library/security/CMakeLists.linux.txt +++ b/ydb/library/security/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/security/CMakeLists.txt b/ydb/library/security/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/security/CMakeLists.txt +++ b/ydb/library/security/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/security/ut/CMakeLists.darwin.txt b/ydb/library/security/ut/CMakeLists.darwin.txt index de6f7008db..3845db47ed 100644 --- a/ydb/library/security/ut/CMakeLists.darwin.txt +++ b/ydb/library/security/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/security/ut/CMakeLists.linux-aarch64.txt b/ydb/library/security/ut/CMakeLists.linux-aarch64.txt index f58232c306..680f7a8204 100644 --- a/ydb/library/security/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/security/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/security/ut/CMakeLists.linux.txt b/ydb/library/security/ut/CMakeLists.linux.txt index 74bf3c2919..a0044e09b3 100644 --- a/ydb/library/security/ut/CMakeLists.linux.txt +++ b/ydb/library/security/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/security/ut/CMakeLists.txt b/ydb/library/security/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/security/ut/CMakeLists.txt +++ b/ydb/library/security/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/testlib/CMakeLists.txt b/ydb/library/testlib/CMakeLists.txt index 52ceab64c9..d3c98b6b3a 100644 --- a/ydb/library/testlib/CMakeLists.txt +++ b/ydb/library/testlib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/testlib/service_mocks/CMakeLists.darwin.txt b/ydb/library/testlib/service_mocks/CMakeLists.darwin.txt index d4fecf049e..6f9f52f430 100644 --- a/ydb/library/testlib/service_mocks/CMakeLists.darwin.txt +++ b/ydb/library/testlib/service_mocks/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/testlib/service_mocks/CMakeLists.linux-aarch64.txt b/ydb/library/testlib/service_mocks/CMakeLists.linux-aarch64.txt index 83aa8df6e8..963c3eb248 100644 --- a/ydb/library/testlib/service_mocks/CMakeLists.linux-aarch64.txt +++ b/ydb/library/testlib/service_mocks/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/testlib/service_mocks/CMakeLists.linux.txt b/ydb/library/testlib/service_mocks/CMakeLists.linux.txt index 83aa8df6e8..963c3eb248 100644 --- a/ydb/library/testlib/service_mocks/CMakeLists.linux.txt +++ b/ydb/library/testlib/service_mocks/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/testlib/service_mocks/CMakeLists.txt b/ydb/library/testlib/service_mocks/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/testlib/service_mocks/CMakeLists.txt +++ b/ydb/library/testlib/service_mocks/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/uuid/CMakeLists.darwin.txt b/ydb/library/uuid/CMakeLists.darwin.txt index 4cda6e401b..56baf081bb 100644 --- a/ydb/library/uuid/CMakeLists.darwin.txt +++ b/ydb/library/uuid/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/uuid/CMakeLists.linux-aarch64.txt b/ydb/library/uuid/CMakeLists.linux-aarch64.txt index c84a56695f..09fed5adf9 100644 --- a/ydb/library/uuid/CMakeLists.linux-aarch64.txt +++ b/ydb/library/uuid/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/uuid/CMakeLists.linux.txt b/ydb/library/uuid/CMakeLists.linux.txt index c84a56695f..09fed5adf9 100644 --- a/ydb/library/uuid/CMakeLists.linux.txt +++ b/ydb/library/uuid/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/uuid/CMakeLists.txt b/ydb/library/uuid/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/uuid/CMakeLists.txt +++ b/ydb/library/uuid/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/workload/CMakeLists.darwin.txt b/ydb/library/workload/CMakeLists.darwin.txt index d0b61750d2..948585439c 100644 --- a/ydb/library/workload/CMakeLists.darwin.txt +++ b/ydb/library/workload/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/workload/CMakeLists.linux-aarch64.txt b/ydb/library/workload/CMakeLists.linux-aarch64.txt index d3fa7db5b2..ca62ddeed5 100644 --- a/ydb/library/workload/CMakeLists.linux-aarch64.txt +++ b/ydb/library/workload/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/workload/CMakeLists.linux.txt b/ydb/library/workload/CMakeLists.linux.txt index d3fa7db5b2..ca62ddeed5 100644 --- a/ydb/library/workload/CMakeLists.linux.txt +++ b/ydb/library/workload/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/workload/CMakeLists.txt b/ydb/library/workload/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/workload/CMakeLists.txt +++ b/ydb/library/workload/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yaml_config/CMakeLists.darwin.txt b/ydb/library/yaml_config/CMakeLists.darwin.txt index 0d595f6c33..aea1570e3f 100644 --- a/ydb/library/yaml_config/CMakeLists.darwin.txt +++ b/ydb/library/yaml_config/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yaml_config/CMakeLists.linux-aarch64.txt b/ydb/library/yaml_config/CMakeLists.linux-aarch64.txt index 88d5b706e0..92b839a424 100644 --- a/ydb/library/yaml_config/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yaml_config/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yaml_config/CMakeLists.linux.txt b/ydb/library/yaml_config/CMakeLists.linux.txt index 88d5b706e0..92b839a424 100644 --- a/ydb/library/yaml_config/CMakeLists.linux.txt +++ b/ydb/library/yaml_config/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yaml_config/CMakeLists.txt b/ydb/library/yaml_config/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yaml_config/CMakeLists.txt +++ b/ydb/library/yaml_config/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/ycloud/CMakeLists.txt b/ydb/library/ycloud/CMakeLists.txt index eabee160c7..64da55df44 100644 --- a/ydb/library/ycloud/CMakeLists.txt +++ b/ydb/library/ycloud/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/ycloud/api/CMakeLists.darwin.txt b/ydb/library/ycloud/api/CMakeLists.darwin.txt index e97a72b103..a05d4db537 100644 --- a/ydb/library/ycloud/api/CMakeLists.darwin.txt +++ b/ydb/library/ycloud/api/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/ycloud/api/CMakeLists.linux-aarch64.txt b/ydb/library/ycloud/api/CMakeLists.linux-aarch64.txt index 4687e17efb..9a11131146 100644 --- a/ydb/library/ycloud/api/CMakeLists.linux-aarch64.txt +++ b/ydb/library/ycloud/api/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/ycloud/api/CMakeLists.linux.txt b/ydb/library/ycloud/api/CMakeLists.linux.txt index 4687e17efb..9a11131146 100644 --- a/ydb/library/ycloud/api/CMakeLists.linux.txt +++ b/ydb/library/ycloud/api/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/ycloud/api/CMakeLists.txt b/ydb/library/ycloud/api/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/ycloud/api/CMakeLists.txt +++ b/ydb/library/ycloud/api/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/ycloud/impl/CMakeLists.darwin.txt b/ydb/library/ycloud/impl/CMakeLists.darwin.txt index 2b758abdf3..930273011a 100644 --- a/ydb/library/ycloud/impl/CMakeLists.darwin.txt +++ b/ydb/library/ycloud/impl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/ycloud/impl/CMakeLists.linux-aarch64.txt b/ydb/library/ycloud/impl/CMakeLists.linux-aarch64.txt index 5aec3adafc..d3c4ab6ba6 100644 --- a/ydb/library/ycloud/impl/CMakeLists.linux-aarch64.txt +++ b/ydb/library/ycloud/impl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/ycloud/impl/CMakeLists.linux.txt b/ydb/library/ycloud/impl/CMakeLists.linux.txt index 5aec3adafc..d3c4ab6ba6 100644 --- a/ydb/library/ycloud/impl/CMakeLists.linux.txt +++ b/ydb/library/ycloud/impl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/ycloud/impl/CMakeLists.txt b/ydb/library/ycloud/impl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/ycloud/impl/CMakeLists.txt +++ b/ydb/library/ycloud/impl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/ycloud/impl/ut/CMakeLists.darwin.txt b/ydb/library/ycloud/impl/ut/CMakeLists.darwin.txt index 4bab590bae..0c99e162f0 100644 --- a/ydb/library/ycloud/impl/ut/CMakeLists.darwin.txt +++ b/ydb/library/ycloud/impl/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/ycloud/impl/ut/CMakeLists.linux-aarch64.txt b/ydb/library/ycloud/impl/ut/CMakeLists.linux-aarch64.txt index b23dc9603b..ec26fe577d 100644 --- a/ydb/library/ycloud/impl/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/ycloud/impl/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/ycloud/impl/ut/CMakeLists.linux.txt b/ydb/library/ycloud/impl/ut/CMakeLists.linux.txt index 6edfa66eb2..66d4035f8f 100644 --- a/ydb/library/ycloud/impl/ut/CMakeLists.linux.txt +++ b/ydb/library/ycloud/impl/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/ycloud/impl/ut/CMakeLists.txt b/ydb/library/ycloud/impl/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/ycloud/impl/ut/CMakeLists.txt +++ b/ydb/library/ycloud/impl/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/CMakeLists.txt b/ydb/library/yql/CMakeLists.txt index f2c776dfda..4fc40ccc66 100644 --- a/ydb/library/yql/CMakeLists.txt +++ b/ydb/library/yql/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/ast/CMakeLists.darwin.txt b/ydb/library/yql/ast/CMakeLists.darwin.txt index 17c04786c9..e8073842db 100644 --- a/ydb/library/yql/ast/CMakeLists.darwin.txt +++ b/ydb/library/yql/ast/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/ast/CMakeLists.linux-aarch64.txt b/ydb/library/yql/ast/CMakeLists.linux-aarch64.txt index 476ee8826b..cca3dc9ca0 100644 --- a/ydb/library/yql/ast/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/ast/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/ast/CMakeLists.linux.txt b/ydb/library/yql/ast/CMakeLists.linux.txt index 476ee8826b..cca3dc9ca0 100644 --- a/ydb/library/yql/ast/CMakeLists.linux.txt +++ b/ydb/library/yql/ast/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/ast/CMakeLists.txt b/ydb/library/yql/ast/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/ast/CMakeLists.txt +++ b/ydb/library/yql/ast/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/ast/serialize/CMakeLists.darwin.txt b/ydb/library/yql/ast/serialize/CMakeLists.darwin.txt index e24b009d8c..b250700c13 100644 --- a/ydb/library/yql/ast/serialize/CMakeLists.darwin.txt +++ b/ydb/library/yql/ast/serialize/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/ast/serialize/CMakeLists.linux-aarch64.txt b/ydb/library/yql/ast/serialize/CMakeLists.linux-aarch64.txt index 6abbfb4a06..4965fbd1af 100644 --- a/ydb/library/yql/ast/serialize/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/ast/serialize/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/ast/serialize/CMakeLists.linux.txt b/ydb/library/yql/ast/serialize/CMakeLists.linux.txt index 6abbfb4a06..4965fbd1af 100644 --- a/ydb/library/yql/ast/serialize/CMakeLists.linux.txt +++ b/ydb/library/yql/ast/serialize/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/ast/serialize/CMakeLists.txt b/ydb/library/yql/ast/serialize/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/ast/serialize/CMakeLists.txt +++ b/ydb/library/yql/ast/serialize/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/ast/ut/CMakeLists.darwin.txt b/ydb/library/yql/ast/ut/CMakeLists.darwin.txt index 3b6ee629ae..e034b257e0 100644 --- a/ydb/library/yql/ast/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/ast/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/ast/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/ast/ut/CMakeLists.linux-aarch64.txt index 79f6c51ee6..565dbdc87a 100644 --- a/ydb/library/yql/ast/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/ast/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/ast/ut/CMakeLists.linux.txt b/ydb/library/yql/ast/ut/CMakeLists.linux.txt index 4d42f9f7cc..0a43d4c409 100644 --- a/ydb/library/yql/ast/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/ast/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/ast/ut/CMakeLists.txt b/ydb/library/yql/ast/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/ast/ut/CMakeLists.txt +++ b/ydb/library/yql/ast/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/CMakeLists.darwin.txt b/ydb/library/yql/core/CMakeLists.darwin.txt index de2a14606b..75eb433350 100644 --- a/ydb/library/yql/core/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/CMakeLists.linux-aarch64.txt index c2ea10e881..8d2fbba392 100644 --- a/ydb/library/yql/core/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/CMakeLists.linux.txt b/ydb/library/yql/core/CMakeLists.linux.txt index c2ea10e881..8d2fbba392 100644 --- a/ydb/library/yql/core/CMakeLists.linux.txt +++ b/ydb/library/yql/core/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/CMakeLists.txt b/ydb/library/yql/core/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/CMakeLists.txt +++ b/ydb/library/yql/core/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/common_opt/CMakeLists.darwin.txt b/ydb/library/yql/core/common_opt/CMakeLists.darwin.txt index df2157294c..bc3eca545a 100644 --- a/ydb/library/yql/core/common_opt/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/common_opt/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/common_opt/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/common_opt/CMakeLists.linux-aarch64.txt index 6967da3472..35d9e8b6f7 100644 --- a/ydb/library/yql/core/common_opt/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/common_opt/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/common_opt/CMakeLists.linux.txt b/ydb/library/yql/core/common_opt/CMakeLists.linux.txt index 6967da3472..35d9e8b6f7 100644 --- a/ydb/library/yql/core/common_opt/CMakeLists.linux.txt +++ b/ydb/library/yql/core/common_opt/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/common_opt/CMakeLists.txt b/ydb/library/yql/core/common_opt/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/common_opt/CMakeLists.txt +++ b/ydb/library/yql/core/common_opt/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/credentials/CMakeLists.darwin.txt b/ydb/library/yql/core/credentials/CMakeLists.darwin.txt index 6bdfb43a59..5c9782c75c 100644 --- a/ydb/library/yql/core/credentials/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/credentials/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/credentials/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/credentials/CMakeLists.linux-aarch64.txt index a692573e94..a765a3170f 100644 --- a/ydb/library/yql/core/credentials/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/credentials/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/credentials/CMakeLists.linux.txt b/ydb/library/yql/core/credentials/CMakeLists.linux.txt index a692573e94..a765a3170f 100644 --- a/ydb/library/yql/core/credentials/CMakeLists.linux.txt +++ b/ydb/library/yql/core/credentials/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/credentials/CMakeLists.txt b/ydb/library/yql/core/credentials/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/credentials/CMakeLists.txt +++ b/ydb/library/yql/core/credentials/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/expr_nodes/CMakeLists.darwin.txt b/ydb/library/yql/core/expr_nodes/CMakeLists.darwin.txt index 72f5197308..43e5158e79 100644 --- a/ydb/library/yql/core/expr_nodes/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/expr_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/expr_nodes/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/expr_nodes/CMakeLists.linux-aarch64.txt index 5cd3bcbf8e..5838e737ef 100644 --- a/ydb/library/yql/core/expr_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/expr_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/expr_nodes/CMakeLists.linux.txt b/ydb/library/yql/core/expr_nodes/CMakeLists.linux.txt index 5cd3bcbf8e..5838e737ef 100644 --- a/ydb/library/yql/core/expr_nodes/CMakeLists.linux.txt +++ b/ydb/library/yql/core/expr_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/expr_nodes/CMakeLists.txt b/ydb/library/yql/core/expr_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/expr_nodes/CMakeLists.txt +++ b/ydb/library/yql/core/expr_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/expr_nodes_gen/CMakeLists.darwin.txt b/ydb/library/yql/core/expr_nodes_gen/CMakeLists.darwin.txt index e7de0313b4..cc364257b1 100644 --- a/ydb/library/yql/core/expr_nodes_gen/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/expr_nodes_gen/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/expr_nodes_gen/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/expr_nodes_gen/CMakeLists.linux-aarch64.txt index 6a32e04ae8..cdbd4f403d 100644 --- a/ydb/library/yql/core/expr_nodes_gen/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/expr_nodes_gen/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/expr_nodes_gen/CMakeLists.linux.txt b/ydb/library/yql/core/expr_nodes_gen/CMakeLists.linux.txt index 6a32e04ae8..cdbd4f403d 100644 --- a/ydb/library/yql/core/expr_nodes_gen/CMakeLists.linux.txt +++ b/ydb/library/yql/core/expr_nodes_gen/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/expr_nodes_gen/CMakeLists.txt b/ydb/library/yql/core/expr_nodes_gen/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/expr_nodes_gen/CMakeLists.txt +++ b/ydb/library/yql/core/expr_nodes_gen/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/extract_predicate/CMakeLists.darwin.txt b/ydb/library/yql/core/extract_predicate/CMakeLists.darwin.txt index 4b8bf10f3c..5d57ad086b 100644 --- a/ydb/library/yql/core/extract_predicate/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/extract_predicate/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/extract_predicate/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/extract_predicate/CMakeLists.linux-aarch64.txt index 15d9141091..e9633e8f37 100644 --- a/ydb/library/yql/core/extract_predicate/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/extract_predicate/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/extract_predicate/CMakeLists.linux.txt b/ydb/library/yql/core/extract_predicate/CMakeLists.linux.txt index 15d9141091..e9633e8f37 100644 --- a/ydb/library/yql/core/extract_predicate/CMakeLists.linux.txt +++ b/ydb/library/yql/core/extract_predicate/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/extract_predicate/CMakeLists.txt b/ydb/library/yql/core/extract_predicate/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/extract_predicate/CMakeLists.txt +++ b/ydb/library/yql/core/extract_predicate/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/facade/CMakeLists.darwin.txt b/ydb/library/yql/core/facade/CMakeLists.darwin.txt index 8ec907a7fc..132297fce4 100644 --- a/ydb/library/yql/core/facade/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/facade/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/facade/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/facade/CMakeLists.linux-aarch64.txt index aab991d3bb..f5858e8c2c 100644 --- a/ydb/library/yql/core/facade/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/facade/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/facade/CMakeLists.linux.txt b/ydb/library/yql/core/facade/CMakeLists.linux.txt index aab991d3bb..f5858e8c2c 100644 --- a/ydb/library/yql/core/facade/CMakeLists.linux.txt +++ b/ydb/library/yql/core/facade/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/facade/CMakeLists.txt b/ydb/library/yql/core/facade/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/facade/CMakeLists.txt +++ b/ydb/library/yql/core/facade/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/CMakeLists.darwin.txt b/ydb/library/yql/core/file_storage/CMakeLists.darwin.txt index 48dc4929f7..574c5b1c75 100644 --- a/ydb/library/yql/core/file_storage/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/file_storage/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/file_storage/CMakeLists.linux-aarch64.txt index 03cae9ea11..479f52e981 100644 --- a/ydb/library/yql/core/file_storage/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/file_storage/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/CMakeLists.linux.txt b/ydb/library/yql/core/file_storage/CMakeLists.linux.txt index 03cae9ea11..479f52e981 100644 --- a/ydb/library/yql/core/file_storage/CMakeLists.linux.txt +++ b/ydb/library/yql/core/file_storage/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/CMakeLists.txt b/ydb/library/yql/core/file_storage/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/file_storage/CMakeLists.txt +++ b/ydb/library/yql/core/file_storage/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/defs/CMakeLists.darwin.txt b/ydb/library/yql/core/file_storage/defs/CMakeLists.darwin.txt index c61f9845fe..be8470792e 100644 --- a/ydb/library/yql/core/file_storage/defs/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/file_storage/defs/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/defs/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/file_storage/defs/CMakeLists.linux-aarch64.txt index 31b51514c5..04952d1140 100644 --- a/ydb/library/yql/core/file_storage/defs/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/file_storage/defs/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/defs/CMakeLists.linux.txt b/ydb/library/yql/core/file_storage/defs/CMakeLists.linux.txt index 31b51514c5..04952d1140 100644 --- a/ydb/library/yql/core/file_storage/defs/CMakeLists.linux.txt +++ b/ydb/library/yql/core/file_storage/defs/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/defs/CMakeLists.txt b/ydb/library/yql/core/file_storage/defs/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/file_storage/defs/CMakeLists.txt +++ b/ydb/library/yql/core/file_storage/defs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/download/CMakeLists.darwin.txt b/ydb/library/yql/core/file_storage/download/CMakeLists.darwin.txt index 15d6a4443d..3787f95f28 100644 --- a/ydb/library/yql/core/file_storage/download/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/file_storage/download/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/download/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/file_storage/download/CMakeLists.linux-aarch64.txt index 27f4b571a4..a36c440c4f 100644 --- a/ydb/library/yql/core/file_storage/download/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/file_storage/download/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/download/CMakeLists.linux.txt b/ydb/library/yql/core/file_storage/download/CMakeLists.linux.txt index 27f4b571a4..a36c440c4f 100644 --- a/ydb/library/yql/core/file_storage/download/CMakeLists.linux.txt +++ b/ydb/library/yql/core/file_storage/download/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/download/CMakeLists.txt b/ydb/library/yql/core/file_storage/download/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/file_storage/download/CMakeLists.txt +++ b/ydb/library/yql/core/file_storage/download/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/http_download/CMakeLists.darwin.txt b/ydb/library/yql/core/file_storage/http_download/CMakeLists.darwin.txt index 73addbbd72..914fca536f 100644 --- a/ydb/library/yql/core/file_storage/http_download/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/file_storage/http_download/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/http_download/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/file_storage/http_download/CMakeLists.linux-aarch64.txt index 9735041e16..68bd56be50 100644 --- a/ydb/library/yql/core/file_storage/http_download/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/file_storage/http_download/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/http_download/CMakeLists.linux.txt b/ydb/library/yql/core/file_storage/http_download/CMakeLists.linux.txt index 9735041e16..68bd56be50 100644 --- a/ydb/library/yql/core/file_storage/http_download/CMakeLists.linux.txt +++ b/ydb/library/yql/core/file_storage/http_download/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/http_download/CMakeLists.txt b/ydb/library/yql/core/file_storage/http_download/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/file_storage/http_download/CMakeLists.txt +++ b/ydb/library/yql/core/file_storage/http_download/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.darwin.txt b/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.darwin.txt index 2b0e837a30..bc0c6007ac 100644 --- a/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.linux-aarch64.txt index 83d2d632f8..ae7a87c466 100644 --- a/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.linux.txt b/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.linux.txt index 83d2d632f8..ae7a87c466 100644 --- a/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.linux.txt +++ b/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.txt b/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.txt +++ b/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/proto/CMakeLists.darwin.txt b/ydb/library/yql/core/file_storage/proto/CMakeLists.darwin.txt index ed35c53cd4..360893f7ac 100644 --- a/ydb/library/yql/core/file_storage/proto/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/file_storage/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/proto/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/file_storage/proto/CMakeLists.linux-aarch64.txt index a69154be80..8799e6e032 100644 --- a/ydb/library/yql/core/file_storage/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/file_storage/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/proto/CMakeLists.linux.txt b/ydb/library/yql/core/file_storage/proto/CMakeLists.linux.txt index a69154be80..8799e6e032 100644 --- a/ydb/library/yql/core/file_storage/proto/CMakeLists.linux.txt +++ b/ydb/library/yql/core/file_storage/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/proto/CMakeLists.txt b/ydb/library/yql/core/file_storage/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/file_storage/proto/CMakeLists.txt +++ b/ydb/library/yql/core/file_storage/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/ut/CMakeLists.darwin.txt b/ydb/library/yql/core/file_storage/ut/CMakeLists.darwin.txt index 18cab17ac4..fa1a0b0744 100644 --- a/ydb/library/yql/core/file_storage/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/file_storage/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/file_storage/ut/CMakeLists.linux-aarch64.txt index 5f854fd30d..d9a2192822 100644 --- a/ydb/library/yql/core/file_storage/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/file_storage/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/ut/CMakeLists.linux.txt b/ydb/library/yql/core/file_storage/ut/CMakeLists.linux.txt index 3d521c6688..917d9412f0 100644 --- a/ydb/library/yql/core/file_storage/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/core/file_storage/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/file_storage/ut/CMakeLists.txt b/ydb/library/yql/core/file_storage/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/file_storage/ut/CMakeLists.txt +++ b/ydb/library/yql/core/file_storage/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/issue/CMakeLists.darwin.txt b/ydb/library/yql/core/issue/CMakeLists.darwin.txt index 382aa54d59..06f10dc665 100644 --- a/ydb/library/yql/core/issue/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/issue/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/issue/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/issue/CMakeLists.linux-aarch64.txt index 220396deb7..a046e8d177 100644 --- a/ydb/library/yql/core/issue/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/issue/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/issue/CMakeLists.linux.txt b/ydb/library/yql/core/issue/CMakeLists.linux.txt index 220396deb7..a046e8d177 100644 --- a/ydb/library/yql/core/issue/CMakeLists.linux.txt +++ b/ydb/library/yql/core/issue/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/issue/CMakeLists.txt b/ydb/library/yql/core/issue/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/issue/CMakeLists.txt +++ b/ydb/library/yql/core/issue/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/issue/protos/CMakeLists.darwin.txt b/ydb/library/yql/core/issue/protos/CMakeLists.darwin.txt index a305123e3c..6a71aff2f1 100644 --- a/ydb/library/yql/core/issue/protos/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/issue/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/issue/protos/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/issue/protos/CMakeLists.linux-aarch64.txt index 80bb63bb8d..173dd7f57b 100644 --- a/ydb/library/yql/core/issue/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/issue/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/issue/protos/CMakeLists.linux.txt b/ydb/library/yql/core/issue/protos/CMakeLists.linux.txt index 80bb63bb8d..173dd7f57b 100644 --- a/ydb/library/yql/core/issue/protos/CMakeLists.linux.txt +++ b/ydb/library/yql/core/issue/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/issue/protos/CMakeLists.txt b/ydb/library/yql/core/issue/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/issue/protos/CMakeLists.txt +++ b/ydb/library/yql/core/issue/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/issue/ut/CMakeLists.darwin.txt b/ydb/library/yql/core/issue/ut/CMakeLists.darwin.txt index 96c3f09d16..66d60ef7ef 100644 --- a/ydb/library/yql/core/issue/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/issue/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/issue/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/issue/ut/CMakeLists.linux-aarch64.txt index 9c7d2b382a..76b4853a29 100644 --- a/ydb/library/yql/core/issue/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/issue/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/issue/ut/CMakeLists.linux.txt b/ydb/library/yql/core/issue/ut/CMakeLists.linux.txt index fd2dc998a1..b447b33cc7 100644 --- a/ydb/library/yql/core/issue/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/core/issue/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/issue/ut/CMakeLists.txt b/ydb/library/yql/core/issue/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/issue/ut/CMakeLists.txt +++ b/ydb/library/yql/core/issue/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/peephole_opt/CMakeLists.darwin.txt b/ydb/library/yql/core/peephole_opt/CMakeLists.darwin.txt index 4f7a2477b6..fa54b0a08b 100644 --- a/ydb/library/yql/core/peephole_opt/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/peephole_opt/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/peephole_opt/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/peephole_opt/CMakeLists.linux-aarch64.txt index 577a6020b9..1bbb34cbc4 100644 --- a/ydb/library/yql/core/peephole_opt/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/peephole_opt/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/peephole_opt/CMakeLists.linux.txt b/ydb/library/yql/core/peephole_opt/CMakeLists.linux.txt index 577a6020b9..1bbb34cbc4 100644 --- a/ydb/library/yql/core/peephole_opt/CMakeLists.linux.txt +++ b/ydb/library/yql/core/peephole_opt/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/peephole_opt/CMakeLists.txt b/ydb/library/yql/core/peephole_opt/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/peephole_opt/CMakeLists.txt +++ b/ydb/library/yql/core/peephole_opt/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/services/CMakeLists.darwin.txt b/ydb/library/yql/core/services/CMakeLists.darwin.txt index b44cca0c9f..f3d30a1dc4 100644 --- a/ydb/library/yql/core/services/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/services/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/services/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/services/CMakeLists.linux-aarch64.txt index f37cbd711d..40977337e7 100644 --- a/ydb/library/yql/core/services/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/services/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/services/CMakeLists.linux.txt b/ydb/library/yql/core/services/CMakeLists.linux.txt index f37cbd711d..40977337e7 100644 --- a/ydb/library/yql/core/services/CMakeLists.linux.txt +++ b/ydb/library/yql/core/services/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/services/CMakeLists.txt b/ydb/library/yql/core/services/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/services/CMakeLists.txt +++ b/ydb/library/yql/core/services/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/services/mounts/CMakeLists.darwin.txt b/ydb/library/yql/core/services/mounts/CMakeLists.darwin.txt index 85581f635a..6ff5d73e9c 100644 --- a/ydb/library/yql/core/services/mounts/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/services/mounts/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/services/mounts/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/services/mounts/CMakeLists.linux-aarch64.txt index cd2cbbc74c..13a33bcbe1 100644 --- a/ydb/library/yql/core/services/mounts/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/services/mounts/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/services/mounts/CMakeLists.linux.txt b/ydb/library/yql/core/services/mounts/CMakeLists.linux.txt index cd2cbbc74c..13a33bcbe1 100644 --- a/ydb/library/yql/core/services/mounts/CMakeLists.linux.txt +++ b/ydb/library/yql/core/services/mounts/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/services/mounts/CMakeLists.txt b/ydb/library/yql/core/services/mounts/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/services/mounts/CMakeLists.txt +++ b/ydb/library/yql/core/services/mounts/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/sql_types/CMakeLists.darwin.txt b/ydb/library/yql/core/sql_types/CMakeLists.darwin.txt index 9646de8dff..6c1a4cb9ee 100644 --- a/ydb/library/yql/core/sql_types/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/sql_types/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/sql_types/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/sql_types/CMakeLists.linux-aarch64.txt index 915430a6e4..e4181a0333 100644 --- a/ydb/library/yql/core/sql_types/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/sql_types/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/sql_types/CMakeLists.linux.txt b/ydb/library/yql/core/sql_types/CMakeLists.linux.txt index 915430a6e4..e4181a0333 100644 --- a/ydb/library/yql/core/sql_types/CMakeLists.linux.txt +++ b/ydb/library/yql/core/sql_types/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/sql_types/CMakeLists.txt b/ydb/library/yql/core/sql_types/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/sql_types/CMakeLists.txt +++ b/ydb/library/yql/core/sql_types/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/type_ann/CMakeLists.darwin.txt b/ydb/library/yql/core/type_ann/CMakeLists.darwin.txt index 425c75d840..fa886f3f5f 100644 --- a/ydb/library/yql/core/type_ann/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/type_ann/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/type_ann/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/type_ann/CMakeLists.linux-aarch64.txt index 8f93bdde24..20e6920d03 100644 --- a/ydb/library/yql/core/type_ann/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/type_ann/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/type_ann/CMakeLists.linux.txt b/ydb/library/yql/core/type_ann/CMakeLists.linux.txt index 8f93bdde24..20e6920d03 100644 --- a/ydb/library/yql/core/type_ann/CMakeLists.linux.txt +++ b/ydb/library/yql/core/type_ann/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/type_ann/CMakeLists.txt b/ydb/library/yql/core/type_ann/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/type_ann/CMakeLists.txt +++ b/ydb/library/yql/core/type_ann/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/user_data/CMakeLists.darwin.txt b/ydb/library/yql/core/user_data/CMakeLists.darwin.txt index 61f9ff5c2a..33bad46b09 100644 --- a/ydb/library/yql/core/user_data/CMakeLists.darwin.txt +++ b/ydb/library/yql/core/user_data/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/user_data/CMakeLists.linux-aarch64.txt b/ydb/library/yql/core/user_data/CMakeLists.linux-aarch64.txt index ec7c7cb787..9ef353120e 100644 --- a/ydb/library/yql/core/user_data/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/core/user_data/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/user_data/CMakeLists.linux.txt b/ydb/library/yql/core/user_data/CMakeLists.linux.txt index ec7c7cb787..9ef353120e 100644 --- a/ydb/library/yql/core/user_data/CMakeLists.linux.txt +++ b/ydb/library/yql/core/user_data/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/core/user_data/CMakeLists.txt b/ydb/library/yql/core/user_data/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/core/user_data/CMakeLists.txt +++ b/ydb/library/yql/core/user_data/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/CMakeLists.txt b/ydb/library/yql/dq/CMakeLists.txt index babe9af6b1..df7076a6f5 100644 --- a/ydb/library/yql/dq/CMakeLists.txt +++ b/ydb/library/yql/dq/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/CMakeLists.darwin.txt b/ydb/library/yql/dq/actors/CMakeLists.darwin.txt index 5a1e61f456..a60b053361 100644 --- a/ydb/library/yql/dq/actors/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/actors/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/actors/CMakeLists.linux-aarch64.txt index 83d112ba20..fc11f3db2a 100644 --- a/ydb/library/yql/dq/actors/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/actors/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/CMakeLists.linux.txt b/ydb/library/yql/dq/actors/CMakeLists.linux.txt index 83d112ba20..fc11f3db2a 100644 --- a/ydb/library/yql/dq/actors/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/actors/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/CMakeLists.txt b/ydb/library/yql/dq/actors/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/actors/CMakeLists.txt +++ b/ydb/library/yql/dq/actors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/compute/CMakeLists.darwin.txt b/ydb/library/yql/dq/actors/compute/CMakeLists.darwin.txt index c1d5236548..b318ad0340 100644 --- a/ydb/library/yql/dq/actors/compute/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/actors/compute/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/compute/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/actors/compute/CMakeLists.linux-aarch64.txt index 3d63566e5c..9e1ea7a9fc 100644 --- a/ydb/library/yql/dq/actors/compute/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/actors/compute/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/compute/CMakeLists.linux.txt b/ydb/library/yql/dq/actors/compute/CMakeLists.linux.txt index 3d63566e5c..9e1ea7a9fc 100644 --- a/ydb/library/yql/dq/actors/compute/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/actors/compute/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/compute/CMakeLists.txt b/ydb/library/yql/dq/actors/compute/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/actors/compute/CMakeLists.txt +++ b/ydb/library/yql/dq/actors/compute/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 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 653cd18127..457c7d75eb 100644 --- a/ydb/library/yql/dq/actors/compute/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/actors/compute/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/compute/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/actors/compute/ut/CMakeLists.linux-aarch64.txt index f2eeb8065a..b51574556a 100644 --- a/ydb/library/yql/dq/actors/compute/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/actors/compute/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 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 275504db74..4262644461 100644 --- a/ydb/library/yql/dq/actors/compute/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/actors/compute/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/compute/ut/CMakeLists.txt b/ydb/library/yql/dq/actors/compute/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/actors/compute/ut/CMakeLists.txt +++ b/ydb/library/yql/dq/actors/compute/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/protos/CMakeLists.darwin.txt b/ydb/library/yql/dq/actors/protos/CMakeLists.darwin.txt index 9ab3ca46af..1fdac12012 100644 --- a/ydb/library/yql/dq/actors/protos/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/actors/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/protos/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/actors/protos/CMakeLists.linux-aarch64.txt index 0ec87d614a..3bb3aa161c 100644 --- a/ydb/library/yql/dq/actors/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/actors/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/protos/CMakeLists.linux.txt b/ydb/library/yql/dq/actors/protos/CMakeLists.linux.txt index 0ec87d614a..3bb3aa161c 100644 --- a/ydb/library/yql/dq/actors/protos/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/actors/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/protos/CMakeLists.txt b/ydb/library/yql/dq/actors/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/actors/protos/CMakeLists.txt +++ b/ydb/library/yql/dq/actors/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/task_runner/CMakeLists.darwin.txt b/ydb/library/yql/dq/actors/task_runner/CMakeLists.darwin.txt index 1810e784dc..70619e9194 100644 --- a/ydb/library/yql/dq/actors/task_runner/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/actors/task_runner/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/task_runner/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/actors/task_runner/CMakeLists.linux-aarch64.txt index e395136aa4..6597ed4504 100644 --- a/ydb/library/yql/dq/actors/task_runner/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/actors/task_runner/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/task_runner/CMakeLists.linux.txt b/ydb/library/yql/dq/actors/task_runner/CMakeLists.linux.txt index e395136aa4..6597ed4504 100644 --- a/ydb/library/yql/dq/actors/task_runner/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/actors/task_runner/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/actors/task_runner/CMakeLists.txt b/ydb/library/yql/dq/actors/task_runner/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/actors/task_runner/CMakeLists.txt +++ b/ydb/library/yql/dq/actors/task_runner/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/common/CMakeLists.darwin.txt b/ydb/library/yql/dq/common/CMakeLists.darwin.txt index 9e8c70669d..730c81ab28 100644 --- a/ydb/library/yql/dq/common/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/common/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/common/CMakeLists.linux-aarch64.txt index 67a56fa0c0..2595a961db 100644 --- a/ydb/library/yql/dq/common/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/common/CMakeLists.linux.txt b/ydb/library/yql/dq/common/CMakeLists.linux.txt index 67a56fa0c0..2595a961db 100644 --- a/ydb/library/yql/dq/common/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/common/CMakeLists.txt b/ydb/library/yql/dq/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/common/CMakeLists.txt +++ b/ydb/library/yql/dq/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/comp_nodes/CMakeLists.darwin.txt b/ydb/library/yql/dq/comp_nodes/CMakeLists.darwin.txt index 8b06deda11..7f99932881 100644 --- a/ydb/library/yql/dq/comp_nodes/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/comp_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/comp_nodes/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/comp_nodes/CMakeLists.linux-aarch64.txt index e4556353f8..f53158a505 100644 --- a/ydb/library/yql/dq/comp_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/comp_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/comp_nodes/CMakeLists.linux.txt b/ydb/library/yql/dq/comp_nodes/CMakeLists.linux.txt index e4556353f8..f53158a505 100644 --- a/ydb/library/yql/dq/comp_nodes/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/comp_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/comp_nodes/CMakeLists.txt b/ydb/library/yql/dq/comp_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/comp_nodes/CMakeLists.txt +++ b/ydb/library/yql/dq/comp_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/expr_nodes/CMakeLists.darwin.txt b/ydb/library/yql/dq/expr_nodes/CMakeLists.darwin.txt index 6cbf9a16dc..d81b9b9d69 100644 --- a/ydb/library/yql/dq/expr_nodes/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/expr_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/expr_nodes/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/expr_nodes/CMakeLists.linux-aarch64.txt index 681d4807ed..2f618c2bd2 100644 --- a/ydb/library/yql/dq/expr_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/expr_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/expr_nodes/CMakeLists.linux.txt b/ydb/library/yql/dq/expr_nodes/CMakeLists.linux.txt index 681d4807ed..2f618c2bd2 100644 --- a/ydb/library/yql/dq/expr_nodes/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/expr_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/expr_nodes/CMakeLists.txt b/ydb/library/yql/dq/expr_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/expr_nodes/CMakeLists.txt +++ b/ydb/library/yql/dq/expr_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/opt/CMakeLists.darwin.txt b/ydb/library/yql/dq/opt/CMakeLists.darwin.txt index 96867d1755..c729a2f2e1 100644 --- a/ydb/library/yql/dq/opt/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/opt/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/opt/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/opt/CMakeLists.linux-aarch64.txt index 3c82e0e05d..9271a730d4 100644 --- a/ydb/library/yql/dq/opt/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/opt/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/opt/CMakeLists.linux.txt b/ydb/library/yql/dq/opt/CMakeLists.linux.txt index 3c82e0e05d..9271a730d4 100644 --- a/ydb/library/yql/dq/opt/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/opt/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/opt/CMakeLists.txt b/ydb/library/yql/dq/opt/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/opt/CMakeLists.txt +++ b/ydb/library/yql/dq/opt/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/proto/CMakeLists.darwin.txt b/ydb/library/yql/dq/proto/CMakeLists.darwin.txt index 25a364ec6e..64e7138805 100644 --- a/ydb/library/yql/dq/proto/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/proto/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/proto/CMakeLists.linux-aarch64.txt index 33293010b3..f6a2f44de3 100644 --- a/ydb/library/yql/dq/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/proto/CMakeLists.linux.txt b/ydb/library/yql/dq/proto/CMakeLists.linux.txt index 33293010b3..f6a2f44de3 100644 --- a/ydb/library/yql/dq/proto/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/proto/CMakeLists.txt b/ydb/library/yql/dq/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/proto/CMakeLists.txt +++ b/ydb/library/yql/dq/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/runtime/CMakeLists.darwin.txt b/ydb/library/yql/dq/runtime/CMakeLists.darwin.txt index 254660b490..997dd38948 100644 --- a/ydb/library/yql/dq/runtime/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/runtime/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/runtime/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/runtime/CMakeLists.linux-aarch64.txt index 127224b8bb..d37e7ad95f 100644 --- a/ydb/library/yql/dq/runtime/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/runtime/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/runtime/CMakeLists.linux.txt b/ydb/library/yql/dq/runtime/CMakeLists.linux.txt index 127224b8bb..d37e7ad95f 100644 --- a/ydb/library/yql/dq/runtime/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/runtime/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/runtime/CMakeLists.txt b/ydb/library/yql/dq/runtime/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/runtime/CMakeLists.txt +++ b/ydb/library/yql/dq/runtime/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/runtime/ut/CMakeLists.darwin.txt b/ydb/library/yql/dq/runtime/ut/CMakeLists.darwin.txt index e54faf3387..0ddc164da8 100644 --- a/ydb/library/yql/dq/runtime/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/runtime/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/runtime/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/runtime/ut/CMakeLists.linux-aarch64.txt index 18947a91da..d4240fcbc9 100644 --- a/ydb/library/yql/dq/runtime/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/runtime/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/runtime/ut/CMakeLists.linux.txt b/ydb/library/yql/dq/runtime/ut/CMakeLists.linux.txt index 5ca7522c6b..a2b7c8c388 100644 --- a/ydb/library/yql/dq/runtime/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/runtime/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/runtime/ut/CMakeLists.txt b/ydb/library/yql/dq/runtime/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/runtime/ut/CMakeLists.txt +++ b/ydb/library/yql/dq/runtime/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/state/CMakeLists.darwin.txt b/ydb/library/yql/dq/state/CMakeLists.darwin.txt index 0ca364bd6a..47acf41667 100644 --- a/ydb/library/yql/dq/state/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/state/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/state/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/state/CMakeLists.linux-aarch64.txt index 54bfe38faf..ef207c4656 100644 --- a/ydb/library/yql/dq/state/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/state/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/state/CMakeLists.linux.txt b/ydb/library/yql/dq/state/CMakeLists.linux.txt index 54bfe38faf..ef207c4656 100644 --- a/ydb/library/yql/dq/state/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/state/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/state/CMakeLists.txt b/ydb/library/yql/dq/state/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/state/CMakeLists.txt +++ b/ydb/library/yql/dq/state/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/state/ut/CMakeLists.darwin.txt b/ydb/library/yql/dq/state/ut/CMakeLists.darwin.txt index ccbb5d2e31..c59a6225a2 100644 --- a/ydb/library/yql/dq/state/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/state/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/state/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/state/ut/CMakeLists.linux-aarch64.txt index 577b4ea6ba..b4fe4bacf4 100644 --- a/ydb/library/yql/dq/state/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/state/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/state/ut/CMakeLists.linux.txt b/ydb/library/yql/dq/state/ut/CMakeLists.linux.txt index c20f7516df..14f737263c 100644 --- a/ydb/library/yql/dq/state/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/state/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/state/ut/CMakeLists.txt b/ydb/library/yql/dq/state/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/state/ut/CMakeLists.txt +++ b/ydb/library/yql/dq/state/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/tasks/CMakeLists.darwin.txt b/ydb/library/yql/dq/tasks/CMakeLists.darwin.txt index ed67675869..0e247f5b01 100644 --- a/ydb/library/yql/dq/tasks/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/tasks/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/tasks/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/tasks/CMakeLists.linux-aarch64.txt index 035c307485..55c309997b 100644 --- a/ydb/library/yql/dq/tasks/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/tasks/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/tasks/CMakeLists.linux.txt b/ydb/library/yql/dq/tasks/CMakeLists.linux.txt index 035c307485..55c309997b 100644 --- a/ydb/library/yql/dq/tasks/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/tasks/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/tasks/CMakeLists.txt b/ydb/library/yql/dq/tasks/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/tasks/CMakeLists.txt +++ b/ydb/library/yql/dq/tasks/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/transform/CMakeLists.darwin.txt b/ydb/library/yql/dq/transform/CMakeLists.darwin.txt index 674d35ef3c..d784f1376b 100644 --- a/ydb/library/yql/dq/transform/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/transform/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/transform/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/transform/CMakeLists.linux-aarch64.txt index 38171fdd26..a92c412e3b 100644 --- a/ydb/library/yql/dq/transform/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/transform/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/transform/CMakeLists.linux.txt b/ydb/library/yql/dq/transform/CMakeLists.linux.txt index 38171fdd26..a92c412e3b 100644 --- a/ydb/library/yql/dq/transform/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/transform/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/transform/CMakeLists.txt b/ydb/library/yql/dq/transform/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/transform/CMakeLists.txt +++ b/ydb/library/yql/dq/transform/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/type_ann/CMakeLists.darwin.txt b/ydb/library/yql/dq/type_ann/CMakeLists.darwin.txt index cac69d010a..6516783acb 100644 --- a/ydb/library/yql/dq/type_ann/CMakeLists.darwin.txt +++ b/ydb/library/yql/dq/type_ann/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/type_ann/CMakeLists.linux-aarch64.txt b/ydb/library/yql/dq/type_ann/CMakeLists.linux-aarch64.txt index 80063398f5..acab33a299 100644 --- a/ydb/library/yql/dq/type_ann/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/dq/type_ann/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/type_ann/CMakeLists.linux.txt b/ydb/library/yql/dq/type_ann/CMakeLists.linux.txt index 80063398f5..acab33a299 100644 --- a/ydb/library/yql/dq/type_ann/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/type_ann/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/dq/type_ann/CMakeLists.txt b/ydb/library/yql/dq/type_ann/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/dq/type_ann/CMakeLists.txt +++ b/ydb/library/yql/dq/type_ann/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/CMakeLists.darwin.txt b/ydb/library/yql/minikql/CMakeLists.darwin.txt index 2f676fafe3..fd57dace96 100644 --- a/ydb/library/yql/minikql/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/CMakeLists.linux-aarch64.txt index 69b2929c68..0a61593707 100644 --- a/ydb/library/yql/minikql/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/CMakeLists.linux.txt b/ydb/library/yql/minikql/CMakeLists.linux.txt index 69b2929c68..0a61593707 100644 --- a/ydb/library/yql/minikql/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/CMakeLists.txt b/ydb/library/yql/minikql/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/CMakeLists.txt +++ b/ydb/library/yql/minikql/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/arrow/CMakeLists.darwin.txt b/ydb/library/yql/minikql/arrow/CMakeLists.darwin.txt index 70b59af043..080541694f 100644 --- a/ydb/library/yql/minikql/arrow/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/arrow/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/arrow/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/arrow/CMakeLists.linux-aarch64.txt index 847aa2e856..edb0b73378 100644 --- a/ydb/library/yql/minikql/arrow/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/arrow/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/arrow/CMakeLists.linux.txt b/ydb/library/yql/minikql/arrow/CMakeLists.linux.txt index 847aa2e856..edb0b73378 100644 --- a/ydb/library/yql/minikql/arrow/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/arrow/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/arrow/CMakeLists.txt b/ydb/library/yql/minikql/arrow/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/arrow/CMakeLists.txt +++ b/ydb/library/yql/minikql/arrow/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/benchmark/CMakeLists.txt b/ydb/library/yql/minikql/benchmark/CMakeLists.txt index ac2de6318c..f881c8d1a1 100644 --- a/ydb/library/yql/minikql/benchmark/CMakeLists.txt +++ b/ydb/library/yql/minikql/benchmark/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.darwin.txt b/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.darwin.txt index 1b4c5c505f..b897abcb4f 100644 --- a/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.linux-aarch64.txt index 087def02a9..2ac03cf476 100644 --- a/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.linux.txt b/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.linux.txt index e9994cf565..87b6a845da 100644 --- a/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.txt b/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.txt +++ b/ydb/library/yql/minikql/benchmark/pack_num/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/codegen/CMakeLists.darwin.txt b/ydb/library/yql/minikql/codegen/CMakeLists.darwin.txt index d1ac73abdd..a191aa482d 100644 --- a/ydb/library/yql/minikql/codegen/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/codegen/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/codegen/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/codegen/CMakeLists.linux-aarch64.txt index a68f08c15c..32ff7acd2e 100644 --- a/ydb/library/yql/minikql/codegen/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/codegen/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/codegen/CMakeLists.linux.txt b/ydb/library/yql/minikql/codegen/CMakeLists.linux.txt index a68f08c15c..32ff7acd2e 100644 --- a/ydb/library/yql/minikql/codegen/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/codegen/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/codegen/CMakeLists.txt b/ydb/library/yql/minikql/codegen/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/codegen/CMakeLists.txt +++ b/ydb/library/yql/minikql/codegen/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/comp_nodes/CMakeLists.darwin.txt b/ydb/library/yql/minikql/comp_nodes/CMakeLists.darwin.txt index 6cc5135bdb..e4ef7e7237 100644 --- a/ydb/library/yql/minikql/comp_nodes/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/comp_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/comp_nodes/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/comp_nodes/CMakeLists.linux-aarch64.txt index 87be655fd0..0721098763 100644 --- a/ydb/library/yql/minikql/comp_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/comp_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/comp_nodes/CMakeLists.linux.txt b/ydb/library/yql/minikql/comp_nodes/CMakeLists.linux.txt index 87be655fd0..0721098763 100644 --- a/ydb/library/yql/minikql/comp_nodes/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/comp_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/comp_nodes/CMakeLists.txt b/ydb/library/yql/minikql/comp_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/comp_nodes/CMakeLists.txt +++ b/ydb/library/yql/minikql/comp_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/computation/CMakeLists.darwin.txt b/ydb/library/yql/minikql/computation/CMakeLists.darwin.txt index a1a1ffe339..8ace42eef1 100644 --- a/ydb/library/yql/minikql/computation/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/computation/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/computation/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/computation/CMakeLists.linux-aarch64.txt index eba04ed0ee..4173cc4ef2 100644 --- a/ydb/library/yql/minikql/computation/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/computation/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/computation/CMakeLists.linux.txt b/ydb/library/yql/minikql/computation/CMakeLists.linux.txt index eba04ed0ee..4173cc4ef2 100644 --- a/ydb/library/yql/minikql/computation/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/computation/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/computation/CMakeLists.txt b/ydb/library/yql/minikql/computation/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/computation/CMakeLists.txt +++ b/ydb/library/yql/minikql/computation/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/datetime/CMakeLists.darwin.txt b/ydb/library/yql/minikql/datetime/CMakeLists.darwin.txt index f330c83c53..4bbd8d7f7f 100644 --- a/ydb/library/yql/minikql/datetime/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/datetime/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/datetime/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/datetime/CMakeLists.linux-aarch64.txt index 0cd29ff11c..fd222e8358 100644 --- a/ydb/library/yql/minikql/datetime/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/datetime/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/datetime/CMakeLists.linux.txt b/ydb/library/yql/minikql/datetime/CMakeLists.linux.txt index 0cd29ff11c..fd222e8358 100644 --- a/ydb/library/yql/minikql/datetime/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/datetime/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/datetime/CMakeLists.txt b/ydb/library/yql/minikql/datetime/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/datetime/CMakeLists.txt +++ b/ydb/library/yql/minikql/datetime/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/dom/CMakeLists.darwin.txt b/ydb/library/yql/minikql/dom/CMakeLists.darwin.txt index 338a759823..fb33f53eec 100644 --- a/ydb/library/yql/minikql/dom/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/dom/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/dom/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/dom/CMakeLists.linux-aarch64.txt index 46754a9edb..7fad754cfa 100644 --- a/ydb/library/yql/minikql/dom/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/dom/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/dom/CMakeLists.linux.txt b/ydb/library/yql/minikql/dom/CMakeLists.linux.txt index 46754a9edb..7fad754cfa 100644 --- a/ydb/library/yql/minikql/dom/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/dom/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/dom/CMakeLists.txt b/ydb/library/yql/minikql/dom/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/dom/CMakeLists.txt +++ b/ydb/library/yql/minikql/dom/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/invoke_builtins/CMakeLists.darwin.txt b/ydb/library/yql/minikql/invoke_builtins/CMakeLists.darwin.txt index 2993847ee4..4bedc84e58 100644 --- a/ydb/library/yql/minikql/invoke_builtins/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/invoke_builtins/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/invoke_builtins/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/invoke_builtins/CMakeLists.linux-aarch64.txt index 88341c50f6..505826459a 100644 --- a/ydb/library/yql/minikql/invoke_builtins/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/invoke_builtins/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/invoke_builtins/CMakeLists.linux.txt b/ydb/library/yql/minikql/invoke_builtins/CMakeLists.linux.txt index 88341c50f6..505826459a 100644 --- a/ydb/library/yql/minikql/invoke_builtins/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/invoke_builtins/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/invoke_builtins/CMakeLists.txt b/ydb/library/yql/minikql/invoke_builtins/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/invoke_builtins/CMakeLists.txt +++ b/ydb/library/yql/minikql/invoke_builtins/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/jsonpath/CMakeLists.darwin.txt b/ydb/library/yql/minikql/jsonpath/CMakeLists.darwin.txt index ed65757a51..22a741e1b6 100644 --- a/ydb/library/yql/minikql/jsonpath/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/jsonpath/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/jsonpath/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/jsonpath/CMakeLists.linux-aarch64.txt index 437ab95f41..3cc236975a 100644 --- a/ydb/library/yql/minikql/jsonpath/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/jsonpath/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/jsonpath/CMakeLists.linux.txt b/ydb/library/yql/minikql/jsonpath/CMakeLists.linux.txt index 9a0a1af29e..cb8d1862dc 100644 --- a/ydb/library/yql/minikql/jsonpath/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/jsonpath/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/jsonpath/CMakeLists.txt b/ydb/library/yql/minikql/jsonpath/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/jsonpath/CMakeLists.txt +++ b/ydb/library/yql/minikql/jsonpath/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.darwin.txt b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.darwin.txt index 6dbfad2c52..5a568fe9db 100644 --- a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 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 65f481c840..6051c634b4 100644 --- a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.linux.txt b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.linux.txt index a7dd716381..3ebb3572b8 100644 --- a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.txt b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.txt +++ b/ydb/library/yql/minikql/jsonpath/benchmark/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/CMakeLists.txt b/ydb/library/yql/minikql/perf/CMakeLists.txt index fa3243c1dc..0df202dda1 100644 --- a/ydb/library/yql/minikql/perf/CMakeLists.txt +++ b/ydb/library/yql/minikql/perf/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/alloc/CMakeLists.darwin.txt b/ydb/library/yql/minikql/perf/alloc/CMakeLists.darwin.txt index 66261f4a94..6362830cb4 100644 --- a/ydb/library/yql/minikql/perf/alloc/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/perf/alloc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/alloc/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/perf/alloc/CMakeLists.linux-aarch64.txt index 0e0cd75017..09eccf3f8c 100644 --- a/ydb/library/yql/minikql/perf/alloc/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/perf/alloc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/alloc/CMakeLists.linux.txt b/ydb/library/yql/minikql/perf/alloc/CMakeLists.linux.txt index 14485ea615..c0a44cd212 100644 --- a/ydb/library/yql/minikql/perf/alloc/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/perf/alloc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/alloc/CMakeLists.txt b/ydb/library/yql/minikql/perf/alloc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/perf/alloc/CMakeLists.txt +++ b/ydb/library/yql/minikql/perf/alloc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/mt_param/CMakeLists.darwin.txt b/ydb/library/yql/minikql/perf/mt_param/CMakeLists.darwin.txt index a74a8221a8..eb10899be6 100644 --- a/ydb/library/yql/minikql/perf/mt_param/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/perf/mt_param/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/mt_param/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/perf/mt_param/CMakeLists.linux-aarch64.txt index b24a282939..b2939a7075 100644 --- a/ydb/library/yql/minikql/perf/mt_param/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/perf/mt_param/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/mt_param/CMakeLists.linux.txt b/ydb/library/yql/minikql/perf/mt_param/CMakeLists.linux.txt index 2cef71cc10..8cec706451 100644 --- a/ydb/library/yql/minikql/perf/mt_param/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/perf/mt_param/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/mt_param/CMakeLists.txt b/ydb/library/yql/minikql/perf/mt_param/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/perf/mt_param/CMakeLists.txt +++ b/ydb/library/yql/minikql/perf/mt_param/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/packer/CMakeLists.darwin.txt b/ydb/library/yql/minikql/perf/packer/CMakeLists.darwin.txt index a49feed7af..74e37c6bb3 100644 --- a/ydb/library/yql/minikql/perf/packer/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/perf/packer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/packer/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/perf/packer/CMakeLists.linux-aarch64.txt index e12ed2e7e2..faef5276b7 100644 --- a/ydb/library/yql/minikql/perf/packer/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/perf/packer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/packer/CMakeLists.linux.txt b/ydb/library/yql/minikql/perf/packer/CMakeLists.linux.txt index 25f51a6268..48ec6d8d71 100644 --- a/ydb/library/yql/minikql/perf/packer/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/perf/packer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/packer/CMakeLists.txt b/ydb/library/yql/minikql/perf/packer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/perf/packer/CMakeLists.txt +++ b/ydb/library/yql/minikql/perf/packer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/param/CMakeLists.darwin.txt b/ydb/library/yql/minikql/perf/param/CMakeLists.darwin.txt index 11ca764392..1251d9b92e 100644 --- a/ydb/library/yql/minikql/perf/param/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/perf/param/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/param/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/perf/param/CMakeLists.linux-aarch64.txt index 5af4424353..e1900a5d22 100644 --- a/ydb/library/yql/minikql/perf/param/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/perf/param/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/param/CMakeLists.linux.txt b/ydb/library/yql/minikql/perf/param/CMakeLists.linux.txt index 6dd4a44c87..447302f9ba 100644 --- a/ydb/library/yql/minikql/perf/param/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/perf/param/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/param/CMakeLists.txt b/ydb/library/yql/minikql/perf/param/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/perf/param/CMakeLists.txt +++ b/ydb/library/yql/minikql/perf/param/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/presort/CMakeLists.darwin.txt b/ydb/library/yql/minikql/perf/presort/CMakeLists.darwin.txt index d42b687eb3..b79c504c02 100644 --- a/ydb/library/yql/minikql/perf/presort/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/perf/presort/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/presort/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/perf/presort/CMakeLists.linux-aarch64.txt index e249d6fadd..732f28b79c 100644 --- a/ydb/library/yql/minikql/perf/presort/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/perf/presort/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/presort/CMakeLists.linux.txt b/ydb/library/yql/minikql/perf/presort/CMakeLists.linux.txt index 74fc56593c..d4560b19c2 100644 --- a/ydb/library/yql/minikql/perf/presort/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/perf/presort/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/perf/presort/CMakeLists.txt b/ydb/library/yql/minikql/perf/presort/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/perf/presort/CMakeLists.txt +++ b/ydb/library/yql/minikql/perf/presort/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/ut/CMakeLists.darwin.txt b/ydb/library/yql/minikql/ut/CMakeLists.darwin.txt index 701d89f26a..52a9638fd1 100644 --- a/ydb/library/yql/minikql/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/minikql/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/minikql/ut/CMakeLists.linux-aarch64.txt index aa8d68b46e..a9c143cd5f 100644 --- a/ydb/library/yql/minikql/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/minikql/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/ut/CMakeLists.linux.txt b/ydb/library/yql/minikql/ut/CMakeLists.linux.txt index d61cd67bd7..3092d73a82 100644 --- a/ydb/library/yql/minikql/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/minikql/ut/CMakeLists.txt b/ydb/library/yql/minikql/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/minikql/ut/CMakeLists.txt +++ b/ydb/library/yql/minikql/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/CMakeLists.txt b/ydb/library/yql/parser/CMakeLists.txt index 80c5f8a822..ad08e246dc 100644 --- a/ydb/library/yql/parser/CMakeLists.txt +++ b/ydb/library/yql/parser/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/lexer_common/CMakeLists.darwin.txt b/ydb/library/yql/parser/lexer_common/CMakeLists.darwin.txt index ce92c9e23d..89fc8b0b01 100644 --- a/ydb/library/yql/parser/lexer_common/CMakeLists.darwin.txt +++ b/ydb/library/yql/parser/lexer_common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/lexer_common/CMakeLists.linux-aarch64.txt b/ydb/library/yql/parser/lexer_common/CMakeLists.linux-aarch64.txt index 82261b78d3..040e95b049 100644 --- a/ydb/library/yql/parser/lexer_common/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/parser/lexer_common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/lexer_common/CMakeLists.linux.txt b/ydb/library/yql/parser/lexer_common/CMakeLists.linux.txt index 82261b78d3..040e95b049 100644 --- a/ydb/library/yql/parser/lexer_common/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/lexer_common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/lexer_common/CMakeLists.txt b/ydb/library/yql/parser/lexer_common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/parser/lexer_common/CMakeLists.txt +++ b/ydb/library/yql/parser/lexer_common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/lexer_common/ut/CMakeLists.darwin.txt b/ydb/library/yql/parser/lexer_common/ut/CMakeLists.darwin.txt index 1dfcd82bf9..80502cc6a3 100644 --- a/ydb/library/yql/parser/lexer_common/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/parser/lexer_common/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/lexer_common/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/parser/lexer_common/ut/CMakeLists.linux-aarch64.txt index 7a9c45d7b6..c5c365e581 100644 --- a/ydb/library/yql/parser/lexer_common/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/parser/lexer_common/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/lexer_common/ut/CMakeLists.linux.txt b/ydb/library/yql/parser/lexer_common/ut/CMakeLists.linux.txt index 9d8fc87d95..0135bc8d30 100644 --- a/ydb/library/yql/parser/lexer_common/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/lexer_common/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/lexer_common/ut/CMakeLists.txt b/ydb/library/yql/parser/lexer_common/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/parser/lexer_common/ut/CMakeLists.txt +++ b/ydb/library/yql/parser/lexer_common/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_catalog/CMakeLists.darwin.txt b/ydb/library/yql/parser/pg_catalog/CMakeLists.darwin.txt index c7adee303a..6b0dc697e2 100644 --- a/ydb/library/yql/parser/pg_catalog/CMakeLists.darwin.txt +++ b/ydb/library/yql/parser/pg_catalog/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_catalog/CMakeLists.linux-aarch64.txt b/ydb/library/yql/parser/pg_catalog/CMakeLists.linux-aarch64.txt index 99aee3c366..21f796f0b4 100644 --- a/ydb/library/yql/parser/pg_catalog/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/parser/pg_catalog/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_catalog/CMakeLists.linux.txt b/ydb/library/yql/parser/pg_catalog/CMakeLists.linux.txt index 99aee3c366..21f796f0b4 100644 --- a/ydb/library/yql/parser/pg_catalog/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/pg_catalog/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_catalog/CMakeLists.txt b/ydb/library/yql/parser/pg_catalog/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/parser/pg_catalog/CMakeLists.txt +++ b/ydb/library/yql/parser/pg_catalog/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.darwin.txt b/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.darwin.txt index 154a0af33f..4d95f99586 100644 --- a/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.linux-aarch64.txt index ecd331e423..661964561e 100644 --- a/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.linux.txt b/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.linux.txt index 0334f16d3c..cbec079ba1 100644 --- a/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.txt b/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.txt +++ b/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_wrapper/CMakeLists.darwin.txt b/ydb/library/yql/parser/pg_wrapper/CMakeLists.darwin.txt index c12b7097ea..dae4e344ea 100644 --- a/ydb/library/yql/parser/pg_wrapper/CMakeLists.darwin.txt +++ b/ydb/library/yql/parser/pg_wrapper/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_wrapper/CMakeLists.linux-aarch64.txt b/ydb/library/yql/parser/pg_wrapper/CMakeLists.linux-aarch64.txt index c978c34342..d02e7246d8 100644 --- a/ydb/library/yql/parser/pg_wrapper/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/parser/pg_wrapper/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_wrapper/CMakeLists.linux.txt b/ydb/library/yql/parser/pg_wrapper/CMakeLists.linux.txt index b8b09100c0..af95f6e790 100644 --- a/ydb/library/yql/parser/pg_wrapper/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/pg_wrapper/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_wrapper/CMakeLists.txt b/ydb/library/yql/parser/pg_wrapper/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/parser/pg_wrapper/CMakeLists.txt +++ b/ydb/library/yql/parser/pg_wrapper/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.darwin.txt b/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.darwin.txt index f4a9b258c0..39f80d898a 100644 --- a/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.darwin.txt +++ b/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.linux-aarch64.txt b/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.linux-aarch64.txt index b6d3b76152..34d54d3014 100644 --- a/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.linux.txt b/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.linux.txt index b6d3b76152..34d54d3014 100644 --- a/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.txt b/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.txt +++ b/ydb/library/yql/parser/pg_wrapper/interface/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.darwin.txt b/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.darwin.txt index 7fee43377c..cf6bc5596d 100644 --- a/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.linux-aarch64.txt index 44e15498ca..94052d15f1 100644 --- a/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.linux.txt b/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.linux.txt index ec553012e9..08bcc2f954 100644 --- a/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.txt b/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.txt +++ b/ydb/library/yql/parser/pg_wrapper/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/CMakeLists.darwin.txt b/ydb/library/yql/parser/proto_ast/CMakeLists.darwin.txt index c996e00c71..aec64b880e 100644 --- a/ydb/library/yql/parser/proto_ast/CMakeLists.darwin.txt +++ b/ydb/library/yql/parser/proto_ast/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/CMakeLists.linux-aarch64.txt b/ydb/library/yql/parser/proto_ast/CMakeLists.linux-aarch64.txt index dd7a9c24b4..9eb92dd630 100644 --- a/ydb/library/yql/parser/proto_ast/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/parser/proto_ast/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/CMakeLists.linux.txt b/ydb/library/yql/parser/proto_ast/CMakeLists.linux.txt index dd7a9c24b4..9eb92dd630 100644 --- a/ydb/library/yql/parser/proto_ast/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/proto_ast/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/CMakeLists.txt b/ydb/library/yql/parser/proto_ast/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/parser/proto_ast/CMakeLists.txt +++ b/ydb/library/yql/parser/proto_ast/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.darwin.txt b/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.darwin.txt index f916e3acad..a818d5398b 100644 --- a/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.darwin.txt +++ b/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.linux-aarch64.txt b/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.linux-aarch64.txt index 37f233367c..05d0648d81 100644 --- a/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.linux.txt b/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.linux.txt index 37f233367c..05d0648d81 100644 --- a/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.txt b/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.txt +++ b/ydb/library/yql/parser/proto_ast/collect_issues/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/CMakeLists.txt b/ydb/library/yql/parser/proto_ast/gen/CMakeLists.txt index 6cd9c9121b..0600182797 100644 --- a/ydb/library/yql/parser/proto_ast/gen/CMakeLists.txt +++ b/ydb/library/yql/parser/proto_ast/gen/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.darwin.txt b/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.darwin.txt index 452b8ea4bb..eef3b3c1ab 100644 --- a/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.darwin.txt +++ b/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.linux-aarch64.txt b/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.linux-aarch64.txt index 0f3a0eccac..0f1653eaeb 100644 --- a/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.linux.txt b/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.linux.txt index 0f3a0eccac..0f1653eaeb 100644 --- a/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.txt b/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.txt +++ b/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.darwin.txt b/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.darwin.txt index c4b6113f47..dbe1e2babe 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.darwin.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.linux-aarch64.txt b/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.linux-aarch64.txt index a237a08765..d1da1f6e6a 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.linux.txt b/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.linux.txt index a237a08765..d1da1f6e6a 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.txt b/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.darwin.txt b/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.darwin.txt index 6439934892..137890a5e3 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.darwin.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.linux-aarch64.txt b/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.linux-aarch64.txt index 00ac519ac5..8ff3dc9a88 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.linux.txt b/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.linux.txt index 00ac519ac5..8ff3dc9a88 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.txt b/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v1/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.darwin.txt b/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.darwin.txt index d601fec6c8..007a99666c 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.darwin.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.linux-aarch64.txt b/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.linux-aarch64.txt index 3fe59ea825..75281f31a8 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.linux.txt b/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.linux.txt index 3fe59ea825..75281f31a8 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.txt b/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v1_ansi/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.darwin.txt b/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.darwin.txt index 9fd6e57cbb..4e8e1abd56 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.darwin.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.linux-aarch64.txt b/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.linux-aarch64.txt index 6cb355f3f7..be2d0aa02e 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.linux.txt b/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.linux.txt index 6cb355f3f7..be2d0aa02e 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.txt b/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/protos/CMakeLists.darwin.txt b/ydb/library/yql/protos/CMakeLists.darwin.txt index 43af20a972..9ce5736d7a 100644 --- a/ydb/library/yql/protos/CMakeLists.darwin.txt +++ b/ydb/library/yql/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/protos/CMakeLists.linux-aarch64.txt b/ydb/library/yql/protos/CMakeLists.linux-aarch64.txt index fe2d0596c8..363463c265 100644 --- a/ydb/library/yql/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/protos/CMakeLists.linux.txt b/ydb/library/yql/protos/CMakeLists.linux.txt index fe2d0596c8..363463c265 100644 --- a/ydb/library/yql/protos/CMakeLists.linux.txt +++ b/ydb/library/yql/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/protos/CMakeLists.txt b/ydb/library/yql/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/protos/CMakeLists.txt +++ b/ydb/library/yql/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/CMakeLists.txt b/ydb/library/yql/providers/CMakeLists.txt index 33e8f9848b..7442f5bd49 100644 --- a/ydb/library/yql/providers/CMakeLists.txt +++ b/ydb/library/yql/providers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/CMakeLists.txt b/ydb/library/yql/providers/clickhouse/CMakeLists.txt index 7318668915..44f7e33156 100644 --- a/ydb/library/yql/providers/clickhouse/CMakeLists.txt +++ b/ydb/library/yql/providers/clickhouse/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/actors/CMakeLists.darwin.txt b/ydb/library/yql/providers/clickhouse/actors/CMakeLists.darwin.txt index 3f9d7cd106..477f1b9131 100644 --- a/ydb/library/yql/providers/clickhouse/actors/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/clickhouse/actors/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/actors/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/clickhouse/actors/CMakeLists.linux-aarch64.txt index 1949a1d4d5..9eae5b0a45 100644 --- a/ydb/library/yql/providers/clickhouse/actors/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/clickhouse/actors/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/actors/CMakeLists.linux.txt b/ydb/library/yql/providers/clickhouse/actors/CMakeLists.linux.txt index 1949a1d4d5..9eae5b0a45 100644 --- a/ydb/library/yql/providers/clickhouse/actors/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/clickhouse/actors/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/actors/CMakeLists.txt b/ydb/library/yql/providers/clickhouse/actors/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/clickhouse/actors/CMakeLists.txt +++ b/ydb/library/yql/providers/clickhouse/actors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.darwin.txt b/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.darwin.txt index aa71470c6d..16666cdd9d 100644 --- a/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.linux-aarch64.txt index 5f9a684c97..03ab381c53 100644 --- a/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.linux.txt b/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.linux.txt index 5f9a684c97..03ab381c53 100644 --- a/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.txt b/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.txt +++ b/ydb/library/yql/providers/clickhouse/expr_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/proto/CMakeLists.darwin.txt b/ydb/library/yql/providers/clickhouse/proto/CMakeLists.darwin.txt index 02ffa25e1d..3f5f6b42d1 100644 --- a/ydb/library/yql/providers/clickhouse/proto/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/clickhouse/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/proto/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/clickhouse/proto/CMakeLists.linux-aarch64.txt index 84bfd5fff9..8436d971e8 100644 --- a/ydb/library/yql/providers/clickhouse/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/clickhouse/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/proto/CMakeLists.linux.txt b/ydb/library/yql/providers/clickhouse/proto/CMakeLists.linux.txt index 84bfd5fff9..8436d971e8 100644 --- a/ydb/library/yql/providers/clickhouse/proto/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/clickhouse/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/proto/CMakeLists.txt b/ydb/library/yql/providers/clickhouse/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/clickhouse/proto/CMakeLists.txt +++ b/ydb/library/yql/providers/clickhouse/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/provider/CMakeLists.darwin.txt b/ydb/library/yql/providers/clickhouse/provider/CMakeLists.darwin.txt index 96217eea69..abc836122e 100644 --- a/ydb/library/yql/providers/clickhouse/provider/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/clickhouse/provider/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/provider/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/clickhouse/provider/CMakeLists.linux-aarch64.txt index ba16b8e30d..aa0572b59c 100644 --- a/ydb/library/yql/providers/clickhouse/provider/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/clickhouse/provider/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/provider/CMakeLists.linux.txt b/ydb/library/yql/providers/clickhouse/provider/CMakeLists.linux.txt index ba16b8e30d..aa0572b59c 100644 --- a/ydb/library/yql/providers/clickhouse/provider/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/clickhouse/provider/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/clickhouse/provider/CMakeLists.txt b/ydb/library/yql/providers/clickhouse/provider/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/clickhouse/provider/CMakeLists.txt +++ b/ydb/library/yql/providers/clickhouse/provider/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/CMakeLists.txt b/ydb/library/yql/providers/common/CMakeLists.txt index 1ff03a2705..2aa69b6595 100644 --- a/ydb/library/yql/providers/common/CMakeLists.txt +++ b/ydb/library/yql/providers/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/activation/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/activation/CMakeLists.darwin.txt index 4abceb4cf2..0ce97d9f09 100644 --- a/ydb/library/yql/providers/common/activation/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/activation/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/activation/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/activation/CMakeLists.linux-aarch64.txt index 84798c6f89..8920b07dc6 100644 --- a/ydb/library/yql/providers/common/activation/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/activation/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/activation/CMakeLists.linux.txt b/ydb/library/yql/providers/common/activation/CMakeLists.linux.txt index 84798c6f89..8920b07dc6 100644 --- a/ydb/library/yql/providers/common/activation/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/activation/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/activation/CMakeLists.txt b/ydb/library/yql/providers/common/activation/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/activation/CMakeLists.txt +++ b/ydb/library/yql/providers/common/activation/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.darwin.txt index 1a6e11f4f2..e9de3919a6 100644 --- a/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.linux-aarch64.txt index 5b1f1d4cb0..f53061e8a9 100644 --- a/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.linux.txt b/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.linux.txt index 5b1f1d4cb0..f53061e8a9 100644 --- a/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.txt b/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.txt +++ b/ydb/library/yql/providers/common/arrow_resolve/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/codec/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/codec/CMakeLists.darwin.txt index 23a543d214..9b004ff4eb 100644 --- a/ydb/library/yql/providers/common/codec/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/codec/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/codec/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/codec/CMakeLists.linux-aarch64.txt index 3318a32503..3fa8a962b1 100644 --- a/ydb/library/yql/providers/common/codec/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/codec/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/codec/CMakeLists.linux.txt b/ydb/library/yql/providers/common/codec/CMakeLists.linux.txt index 3318a32503..3fa8a962b1 100644 --- a/ydb/library/yql/providers/common/codec/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/codec/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/codec/CMakeLists.txt b/ydb/library/yql/providers/common/codec/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/codec/CMakeLists.txt +++ b/ydb/library/yql/providers/common/codec/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/codec/ut/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/codec/ut/CMakeLists.darwin.txt index 44f9540898..3509514765 100644 --- a/ydb/library/yql/providers/common/codec/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/codec/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/codec/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/codec/ut/CMakeLists.linux-aarch64.txt index 527069ccb5..3e115c0b52 100644 --- a/ydb/library/yql/providers/common/codec/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/codec/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/codec/ut/CMakeLists.linux.txt b/ydb/library/yql/providers/common/codec/ut/CMakeLists.linux.txt index 49dfba3f4b..1bb83bd105 100644 --- a/ydb/library/yql/providers/common/codec/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/codec/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/codec/ut/CMakeLists.txt b/ydb/library/yql/providers/common/codec/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/codec/ut/CMakeLists.txt +++ b/ydb/library/yql/providers/common/codec/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/comp_nodes/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/comp_nodes/CMakeLists.darwin.txt index 611bc5e90e..d38b0acd13 100644 --- a/ydb/library/yql/providers/common/comp_nodes/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/comp_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/comp_nodes/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/comp_nodes/CMakeLists.linux-aarch64.txt index 08dd1003e8..b13d46da65 100644 --- a/ydb/library/yql/providers/common/comp_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/comp_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/comp_nodes/CMakeLists.linux.txt b/ydb/library/yql/providers/common/comp_nodes/CMakeLists.linux.txt index 08dd1003e8..b13d46da65 100644 --- a/ydb/library/yql/providers/common/comp_nodes/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/comp_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/comp_nodes/CMakeLists.txt b/ydb/library/yql/providers/common/comp_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/comp_nodes/CMakeLists.txt +++ b/ydb/library/yql/providers/common/comp_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/config/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/config/CMakeLists.darwin.txt index e0a1cc4999..05788989c4 100644 --- a/ydb/library/yql/providers/common/config/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/config/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/config/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/config/CMakeLists.linux-aarch64.txt index a9820ac7ad..3dde87c697 100644 --- a/ydb/library/yql/providers/common/config/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/config/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/config/CMakeLists.linux.txt b/ydb/library/yql/providers/common/config/CMakeLists.linux.txt index a9820ac7ad..3dde87c697 100644 --- a/ydb/library/yql/providers/common/config/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/config/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/config/CMakeLists.txt b/ydb/library/yql/providers/common/config/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/config/CMakeLists.txt +++ b/ydb/library/yql/providers/common/config/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.darwin.txt index 505294f3d6..7bbfc9a4c1 100644 --- a/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.linux-aarch64.txt index 71522f9710..392cc3fcae 100644 --- a/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.linux.txt b/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.linux.txt index 71522f9710..392cc3fcae 100644 --- a/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.txt b/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.txt +++ b/ydb/library/yql/providers/common/db_id_async_resolver/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/dq/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/dq/CMakeLists.darwin.txt index 42840b6503..53b7a533a0 100644 --- a/ydb/library/yql/providers/common/dq/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/dq/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/dq/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/dq/CMakeLists.linux-aarch64.txt index 2d03698183..4acf128479 100644 --- a/ydb/library/yql/providers/common/dq/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/dq/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/dq/CMakeLists.linux.txt b/ydb/library/yql/providers/common/dq/CMakeLists.linux.txt index 2d03698183..4acf128479 100644 --- a/ydb/library/yql/providers/common/dq/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/dq/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/dq/CMakeLists.txt b/ydb/library/yql/providers/common/dq/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/dq/CMakeLists.txt +++ b/ydb/library/yql/providers/common/dq/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/gateway/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/gateway/CMakeLists.darwin.txt index 47bb14a6c0..d3d0e1bddf 100644 --- a/ydb/library/yql/providers/common/gateway/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/gateway/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/gateway/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/gateway/CMakeLists.linux-aarch64.txt index 166e05df5f..e9f7a10f25 100644 --- a/ydb/library/yql/providers/common/gateway/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/gateway/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/gateway/CMakeLists.linux.txt b/ydb/library/yql/providers/common/gateway/CMakeLists.linux.txt index 166e05df5f..e9f7a10f25 100644 --- a/ydb/library/yql/providers/common/gateway/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/gateway/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/gateway/CMakeLists.txt b/ydb/library/yql/providers/common/gateway/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/gateway/CMakeLists.txt +++ b/ydb/library/yql/providers/common/gateway/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/http_gateway/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/http_gateway/CMakeLists.darwin.txt index 9e553621ae..b1fcb29d61 100644 --- a/ydb/library/yql/providers/common/http_gateway/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/http_gateway/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/http_gateway/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/http_gateway/CMakeLists.linux-aarch64.txt index f83d19e71f..d9bc8dcff3 100644 --- a/ydb/library/yql/providers/common/http_gateway/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/http_gateway/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/http_gateway/CMakeLists.linux.txt b/ydb/library/yql/providers/common/http_gateway/CMakeLists.linux.txt index f83d19e71f..d9bc8dcff3 100644 --- a/ydb/library/yql/providers/common/http_gateway/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/http_gateway/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/http_gateway/CMakeLists.txt b/ydb/library/yql/providers/common/http_gateway/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/http_gateway/CMakeLists.txt +++ b/ydb/library/yql/providers/common/http_gateway/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.darwin.txt index 2926e538fd..a6953ebd81 100644 --- a/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.linux-aarch64.txt index 4ac2faf247..8e51bd003e 100644 --- a/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.linux.txt b/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.linux.txt index 4ac2faf247..8e51bd003e 100644 --- a/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.txt b/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.txt +++ b/ydb/library/yql/providers/common/http_gateway/mock/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/metrics/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/metrics/CMakeLists.darwin.txt index 926bba81f6..19966f5689 100644 --- a/ydb/library/yql/providers/common/metrics/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/metrics/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/metrics/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/metrics/CMakeLists.linux-aarch64.txt index d3b321d7af..5930a3aff1 100644 --- a/ydb/library/yql/providers/common/metrics/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/metrics/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/metrics/CMakeLists.linux.txt b/ydb/library/yql/providers/common/metrics/CMakeLists.linux.txt index d3b321d7af..5930a3aff1 100644 --- a/ydb/library/yql/providers/common/metrics/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/metrics/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/metrics/CMakeLists.txt b/ydb/library/yql/providers/common/metrics/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/metrics/CMakeLists.txt +++ b/ydb/library/yql/providers/common/metrics/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/metrics/protos/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/metrics/protos/CMakeLists.darwin.txt index 174ec00009..7586881188 100644 --- a/ydb/library/yql/providers/common/metrics/protos/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/metrics/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/metrics/protos/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/metrics/protos/CMakeLists.linux-aarch64.txt index 66e32c4ee6..96fb7028aa 100644 --- a/ydb/library/yql/providers/common/metrics/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/metrics/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/metrics/protos/CMakeLists.linux.txt b/ydb/library/yql/providers/common/metrics/protos/CMakeLists.linux.txt index 66e32c4ee6..96fb7028aa 100644 --- a/ydb/library/yql/providers/common/metrics/protos/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/metrics/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/metrics/protos/CMakeLists.txt b/ydb/library/yql/providers/common/metrics/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/metrics/protos/CMakeLists.txt +++ b/ydb/library/yql/providers/common/metrics/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/mkql/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/mkql/CMakeLists.darwin.txt index 6d49dca7d1..ee01009ed1 100644 --- a/ydb/library/yql/providers/common/mkql/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/mkql/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/mkql/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/mkql/CMakeLists.linux-aarch64.txt index 7be3c50abe..94ae336cc2 100644 --- a/ydb/library/yql/providers/common/mkql/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/mkql/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/mkql/CMakeLists.linux.txt b/ydb/library/yql/providers/common/mkql/CMakeLists.linux.txt index 7be3c50abe..94ae336cc2 100644 --- a/ydb/library/yql/providers/common/mkql/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/mkql/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/mkql/CMakeLists.txt b/ydb/library/yql/providers/common/mkql/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/mkql/CMakeLists.txt +++ b/ydb/library/yql/providers/common/mkql/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/proto/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/proto/CMakeLists.darwin.txt index b3a720cc18..a35222751c 100644 --- a/ydb/library/yql/providers/common/proto/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/proto/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/proto/CMakeLists.linux-aarch64.txt index 0507105f5c..e19d29b9ed 100644 --- a/ydb/library/yql/providers/common/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/proto/CMakeLists.linux.txt b/ydb/library/yql/providers/common/proto/CMakeLists.linux.txt index 0507105f5c..e19d29b9ed 100644 --- a/ydb/library/yql/providers/common/proto/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/proto/CMakeLists.txt b/ydb/library/yql/providers/common/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/proto/CMakeLists.txt +++ b/ydb/library/yql/providers/common/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/provider/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/provider/CMakeLists.darwin.txt index e3d911caa9..8933bfd711 100644 --- a/ydb/library/yql/providers/common/provider/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/provider/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/provider/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/provider/CMakeLists.linux-aarch64.txt index 1eb137ca37..1573d99d01 100644 --- a/ydb/library/yql/providers/common/provider/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/provider/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/provider/CMakeLists.linux.txt b/ydb/library/yql/providers/common/provider/CMakeLists.linux.txt index 1eb137ca37..1573d99d01 100644 --- a/ydb/library/yql/providers/common/provider/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/provider/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/provider/CMakeLists.txt b/ydb/library/yql/providers/common/provider/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/provider/CMakeLists.txt +++ b/ydb/library/yql/providers/common/provider/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/schema/CMakeLists.darwin.txt index 372c599fb8..32c29f0aac 100644 --- a/ydb/library/yql/providers/common/schema/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/schema/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/schema/CMakeLists.linux-aarch64.txt index 1e63664386..4fc4e4497a 100644 --- a/ydb/library/yql/providers/common/schema/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/schema/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/CMakeLists.linux.txt b/ydb/library/yql/providers/common/schema/CMakeLists.linux.txt index 1e63664386..4fc4e4497a 100644 --- a/ydb/library/yql/providers/common/schema/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/schema/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/CMakeLists.txt b/ydb/library/yql/providers/common/schema/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/schema/CMakeLists.txt +++ b/ydb/library/yql/providers/common/schema/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/expr/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/schema/expr/CMakeLists.darwin.txt index add61a4688..7101f86cbc 100644 --- a/ydb/library/yql/providers/common/schema/expr/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/schema/expr/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/expr/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/schema/expr/CMakeLists.linux-aarch64.txt index e1b1cfbcf8..aa12ad9989 100644 --- a/ydb/library/yql/providers/common/schema/expr/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/schema/expr/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/expr/CMakeLists.linux.txt b/ydb/library/yql/providers/common/schema/expr/CMakeLists.linux.txt index e1b1cfbcf8..aa12ad9989 100644 --- a/ydb/library/yql/providers/common/schema/expr/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/schema/expr/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/expr/CMakeLists.txt b/ydb/library/yql/providers/common/schema/expr/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/schema/expr/CMakeLists.txt +++ b/ydb/library/yql/providers/common/schema/expr/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/mkql/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/schema/mkql/CMakeLists.darwin.txt index f16b004070..571c1bb96c 100644 --- a/ydb/library/yql/providers/common/schema/mkql/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/schema/mkql/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/mkql/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/schema/mkql/CMakeLists.linux-aarch64.txt index 41f2a4bec4..7bb02a9427 100644 --- a/ydb/library/yql/providers/common/schema/mkql/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/schema/mkql/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/mkql/CMakeLists.linux.txt b/ydb/library/yql/providers/common/schema/mkql/CMakeLists.linux.txt index 41f2a4bec4..7bb02a9427 100644 --- a/ydb/library/yql/providers/common/schema/mkql/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/schema/mkql/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/mkql/CMakeLists.txt b/ydb/library/yql/providers/common/schema/mkql/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/schema/mkql/CMakeLists.txt +++ b/ydb/library/yql/providers/common/schema/mkql/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/parser/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/schema/parser/CMakeLists.darwin.txt index 1076262025..0cd7065b24 100644 --- a/ydb/library/yql/providers/common/schema/parser/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/schema/parser/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/parser/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/schema/parser/CMakeLists.linux-aarch64.txt index 05fb88ef8a..8e9211dead 100644 --- a/ydb/library/yql/providers/common/schema/parser/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/schema/parser/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/parser/CMakeLists.linux.txt b/ydb/library/yql/providers/common/schema/parser/CMakeLists.linux.txt index 05fb88ef8a..8e9211dead 100644 --- a/ydb/library/yql/providers/common/schema/parser/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/schema/parser/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/parser/CMakeLists.txt b/ydb/library/yql/providers/common/schema/parser/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/schema/parser/CMakeLists.txt +++ b/ydb/library/yql/providers/common/schema/parser/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/skiff/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/schema/skiff/CMakeLists.darwin.txt index 9296268fc9..65e4a025b5 100644 --- a/ydb/library/yql/providers/common/schema/skiff/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/schema/skiff/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/skiff/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/schema/skiff/CMakeLists.linux-aarch64.txt index 1b1d05c5d1..2fbd3508bc 100644 --- a/ydb/library/yql/providers/common/schema/skiff/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/schema/skiff/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/skiff/CMakeLists.linux.txt b/ydb/library/yql/providers/common/schema/skiff/CMakeLists.linux.txt index 1b1d05c5d1..2fbd3508bc 100644 --- a/ydb/library/yql/providers/common/schema/skiff/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/schema/skiff/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/schema/skiff/CMakeLists.txt b/ydb/library/yql/providers/common/schema/skiff/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/schema/skiff/CMakeLists.txt +++ b/ydb/library/yql/providers/common/schema/skiff/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/structured_token/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/structured_token/CMakeLists.darwin.txt index 6cad9ae8d7..75b84199aa 100644 --- a/ydb/library/yql/providers/common/structured_token/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/structured_token/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/structured_token/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/structured_token/CMakeLists.linux-aarch64.txt index 00813a95cf..6c23ea4575 100644 --- a/ydb/library/yql/providers/common/structured_token/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/structured_token/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/structured_token/CMakeLists.linux.txt b/ydb/library/yql/providers/common/structured_token/CMakeLists.linux.txt index 00813a95cf..6c23ea4575 100644 --- a/ydb/library/yql/providers/common/structured_token/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/structured_token/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/structured_token/CMakeLists.txt b/ydb/library/yql/providers/common/structured_token/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/structured_token/CMakeLists.txt +++ b/ydb/library/yql/providers/common/structured_token/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.darwin.txt index d3a8f537db..2c5162a37d 100644 --- a/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.linux-aarch64.txt index 7ea4c1b7ee..71efdb1f2f 100644 --- a/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.linux.txt b/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.linux.txt index 40e8130f58..8ed73f7372 100644 --- a/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.txt b/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.txt +++ b/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/token_accessor/CMakeLists.txt b/ydb/library/yql/providers/common/token_accessor/CMakeLists.txt index 57b2c8d829..77a4a731e3 100644 --- a/ydb/library/yql/providers/common/token_accessor/CMakeLists.txt +++ b/ydb/library/yql/providers/common/token_accessor/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.darwin.txt index 3be3c2207c..74fa102d25 100644 --- a/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.linux-aarch64.txt index ad8501f9a0..40eff928f3 100644 --- a/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.linux.txt b/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.linux.txt index ad8501f9a0..40eff928f3 100644 --- a/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.txt b/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.txt +++ b/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.darwin.txt index 418665f535..36887dd278 100644 --- a/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.linux-aarch64.txt index 5725078cf3..8b7081f6cb 100644 --- a/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.linux.txt b/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.linux.txt index 5725078cf3..8b7081f6cb 100644 --- a/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.txt b/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.txt +++ b/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/transform/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/transform/CMakeLists.darwin.txt index 66e2b348b1..0deb002e02 100644 --- a/ydb/library/yql/providers/common/transform/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/transform/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/transform/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/transform/CMakeLists.linux-aarch64.txt index 029801955c..f568eee600 100644 --- a/ydb/library/yql/providers/common/transform/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/transform/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/transform/CMakeLists.linux.txt b/ydb/library/yql/providers/common/transform/CMakeLists.linux.txt index 029801955c..f568eee600 100644 --- a/ydb/library/yql/providers/common/transform/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/transform/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/transform/CMakeLists.txt b/ydb/library/yql/providers/common/transform/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/transform/CMakeLists.txt +++ b/ydb/library/yql/providers/common/transform/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/udf_resolve/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/udf_resolve/CMakeLists.darwin.txt index 62498d742f..cd09e608e6 100644 --- a/ydb/library/yql/providers/common/udf_resolve/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/udf_resolve/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/udf_resolve/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/udf_resolve/CMakeLists.linux-aarch64.txt index 39c2d46dd9..d9beed0ae5 100644 --- a/ydb/library/yql/providers/common/udf_resolve/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/udf_resolve/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/udf_resolve/CMakeLists.linux.txt b/ydb/library/yql/providers/common/udf_resolve/CMakeLists.linux.txt index 39c2d46dd9..d9beed0ae5 100644 --- a/ydb/library/yql/providers/common/udf_resolve/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/udf_resolve/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/udf_resolve/CMakeLists.txt b/ydb/library/yql/providers/common/udf_resolve/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/udf_resolve/CMakeLists.txt +++ b/ydb/library/yql/providers/common/udf_resolve/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/ut_helpers/CMakeLists.darwin.txt b/ydb/library/yql/providers/common/ut_helpers/CMakeLists.darwin.txt index 5e7739fd1e..af4500f492 100644 --- a/ydb/library/yql/providers/common/ut_helpers/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/common/ut_helpers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/ut_helpers/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/common/ut_helpers/CMakeLists.linux-aarch64.txt index 62fce171f2..6bdcb3a5d1 100644 --- a/ydb/library/yql/providers/common/ut_helpers/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/common/ut_helpers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/ut_helpers/CMakeLists.linux.txt b/ydb/library/yql/providers/common/ut_helpers/CMakeLists.linux.txt index 62fce171f2..6bdcb3a5d1 100644 --- a/ydb/library/yql/providers/common/ut_helpers/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/ut_helpers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/common/ut_helpers/CMakeLists.txt b/ydb/library/yql/providers/common/ut_helpers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/common/ut_helpers/CMakeLists.txt +++ b/ydb/library/yql/providers/common/ut_helpers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/config/CMakeLists.darwin.txt b/ydb/library/yql/providers/config/CMakeLists.darwin.txt index 573b895eb9..d2daa2064b 100644 --- a/ydb/library/yql/providers/config/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/config/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/config/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/config/CMakeLists.linux-aarch64.txt index dfecf95d2c..acfd736aac 100644 --- a/ydb/library/yql/providers/config/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/config/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/config/CMakeLists.linux.txt b/ydb/library/yql/providers/config/CMakeLists.linux.txt index dfecf95d2c..acfd736aac 100644 --- a/ydb/library/yql/providers/config/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/config/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/config/CMakeLists.txt b/ydb/library/yql/providers/config/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/config/CMakeLists.txt +++ b/ydb/library/yql/providers/config/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/CMakeLists.txt b/ydb/library/yql/providers/dq/CMakeLists.txt index b130895e2b..8a270ca445 100644 --- a/ydb/library/yql/providers/dq/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/actors/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/actors/CMakeLists.darwin.txt index d34b079366..1812c2a185 100644 --- a/ydb/library/yql/providers/dq/actors/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/actors/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/actors/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/actors/CMakeLists.linux-aarch64.txt index 1d3008e67f..7139fa2fbf 100644 --- a/ydb/library/yql/providers/dq/actors/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/actors/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/actors/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/actors/CMakeLists.linux.txt index 1d3008e67f..7139fa2fbf 100644 --- a/ydb/library/yql/providers/dq/actors/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/actors/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/actors/CMakeLists.txt b/ydb/library/yql/providers/dq/actors/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/actors/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/actors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/actors/ut/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/actors/ut/CMakeLists.darwin.txt index ea108a1ae7..b94438516f 100644 --- a/ydb/library/yql/providers/dq/actors/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/actors/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/actors/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/actors/ut/CMakeLists.linux-aarch64.txt index b46f882f6e..9aadd5d6e4 100644 --- a/ydb/library/yql/providers/dq/actors/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/actors/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/actors/ut/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/actors/ut/CMakeLists.linux.txt index 3295562495..e622aa7e36 100644 --- a/ydb/library/yql/providers/dq/actors/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/actors/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/actors/ut/CMakeLists.txt b/ydb/library/yql/providers/dq/actors/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/actors/ut/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/actors/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/api/CMakeLists.txt b/ydb/library/yql/providers/dq/api/CMakeLists.txt index bd2e57c6b5..fefd854625 100644 --- a/ydb/library/yql/providers/dq/api/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/api/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/api/grpc/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/api/grpc/CMakeLists.darwin.txt index 33a2e9bfa2..559cc12dba 100644 --- a/ydb/library/yql/providers/dq/api/grpc/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/api/grpc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/api/grpc/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/api/grpc/CMakeLists.linux-aarch64.txt index 2b58b4c11f..98816ea07d 100644 --- a/ydb/library/yql/providers/dq/api/grpc/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/api/grpc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/api/grpc/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/api/grpc/CMakeLists.linux.txt index 2b58b4c11f..98816ea07d 100644 --- a/ydb/library/yql/providers/dq/api/grpc/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/api/grpc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/api/grpc/CMakeLists.txt b/ydb/library/yql/providers/dq/api/grpc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/api/grpc/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/api/grpc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/api/protos/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/api/protos/CMakeLists.darwin.txt index 4f7bdfec31..f3fef47674 100644 --- a/ydb/library/yql/providers/dq/api/protos/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/api/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/api/protos/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/api/protos/CMakeLists.linux-aarch64.txt index f1cc596a0c..5a71ab11d4 100644 --- a/ydb/library/yql/providers/dq/api/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/api/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/api/protos/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/api/protos/CMakeLists.linux.txt index f1cc596a0c..5a71ab11d4 100644 --- a/ydb/library/yql/providers/dq/api/protos/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/api/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/api/protos/CMakeLists.txt b/ydb/library/yql/providers/dq/api/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/api/protos/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/api/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/common/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/common/CMakeLists.darwin.txt index 8fb26007ac..d0bddb4ea8 100644 --- a/ydb/library/yql/providers/dq/common/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/common/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/common/CMakeLists.linux-aarch64.txt index f3e303930d..0b477b8c2e 100644 --- a/ydb/library/yql/providers/dq/common/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/common/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/common/CMakeLists.linux.txt index f3e303930d..0b477b8c2e 100644 --- a/ydb/library/yql/providers/dq/common/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/common/CMakeLists.txt b/ydb/library/yql/providers/dq/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/common/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/config/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/config/CMakeLists.darwin.txt index ddb371cbf2..eb71645973 100644 --- a/ydb/library/yql/providers/dq/config/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/config/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/config/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/config/CMakeLists.linux-aarch64.txt index 4f16bfb44f..eb8e5e3d04 100644 --- a/ydb/library/yql/providers/dq/config/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/config/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/config/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/config/CMakeLists.linux.txt index 4f16bfb44f..eb8e5e3d04 100644 --- a/ydb/library/yql/providers/dq/config/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/config/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/config/CMakeLists.txt b/ydb/library/yql/providers/dq/config/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/config/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/config/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/counters/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/counters/CMakeLists.darwin.txt index e11020eaac..3f0ba79d39 100644 --- a/ydb/library/yql/providers/dq/counters/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/counters/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/counters/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/counters/CMakeLists.linux-aarch64.txt index 260754ec7b..3879ce3cf0 100644 --- a/ydb/library/yql/providers/dq/counters/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/counters/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/counters/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/counters/CMakeLists.linux.txt index 260754ec7b..3879ce3cf0 100644 --- a/ydb/library/yql/providers/dq/counters/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/counters/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/counters/CMakeLists.txt b/ydb/library/yql/providers/dq/counters/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/counters/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/counters/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.darwin.txt index 3819324785..7aba0afce6 100644 --- a/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.linux-aarch64.txt index 44a0087f34..aa3ec454d1 100644 --- a/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.linux.txt index 44a0087f34..aa3ec454d1 100644 --- a/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.txt b/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/expr_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/interface/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/interface/CMakeLists.darwin.txt index 1ac81096e4..c556248be3 100644 --- a/ydb/library/yql/providers/dq/interface/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/interface/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/interface/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/interface/CMakeLists.linux-aarch64.txt index 4e9e7cf7cf..dfbe16ccb2 100644 --- a/ydb/library/yql/providers/dq/interface/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/interface/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/interface/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/interface/CMakeLists.linux.txt index 4e9e7cf7cf..dfbe16ccb2 100644 --- a/ydb/library/yql/providers/dq/interface/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/interface/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/interface/CMakeLists.txt b/ydb/library/yql/providers/dq/interface/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/interface/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/interface/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/mkql/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/mkql/CMakeLists.darwin.txt index fc90d455c3..e5b274c787 100644 --- a/ydb/library/yql/providers/dq/mkql/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/mkql/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/mkql/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/mkql/CMakeLists.linux-aarch64.txt index 3f864d801b..a2c24fdb67 100644 --- a/ydb/library/yql/providers/dq/mkql/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/mkql/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/mkql/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/mkql/CMakeLists.linux.txt index 3f864d801b..a2c24fdb67 100644 --- a/ydb/library/yql/providers/dq/mkql/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/mkql/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/mkql/CMakeLists.txt b/ydb/library/yql/providers/dq/mkql/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/mkql/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/mkql/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/opt/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/opt/CMakeLists.darwin.txt index 36378b4938..80b7547390 100644 --- a/ydb/library/yql/providers/dq/opt/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/opt/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/opt/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/opt/CMakeLists.linux-aarch64.txt index 47dfc63ac0..9ca8a3c321 100644 --- a/ydb/library/yql/providers/dq/opt/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/opt/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/opt/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/opt/CMakeLists.linux.txt index 47dfc63ac0..9ca8a3c321 100644 --- a/ydb/library/yql/providers/dq/opt/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/opt/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/opt/CMakeLists.txt b/ydb/library/yql/providers/dq/opt/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/opt/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/opt/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/planner/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/planner/CMakeLists.darwin.txt index 62f0f009b8..78f3feb897 100644 --- a/ydb/library/yql/providers/dq/planner/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/planner/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/planner/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/planner/CMakeLists.linux-aarch64.txt index 7a7632a5e8..e68cc9d15f 100644 --- a/ydb/library/yql/providers/dq/planner/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/planner/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/planner/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/planner/CMakeLists.linux.txt index 7a7632a5e8..e68cc9d15f 100644 --- a/ydb/library/yql/providers/dq/planner/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/planner/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/planner/CMakeLists.txt b/ydb/library/yql/providers/dq/planner/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/planner/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/planner/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/provider/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/provider/CMakeLists.darwin.txt index 8ed52659d2..582b891a7f 100644 --- a/ydb/library/yql/providers/dq/provider/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/provider/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/provider/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/provider/CMakeLists.linux-aarch64.txt index f1f85afd08..99160494ba 100644 --- a/ydb/library/yql/providers/dq/provider/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/provider/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/provider/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/provider/CMakeLists.linux.txt index f1f85afd08..99160494ba 100644 --- a/ydb/library/yql/providers/dq/provider/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/provider/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/provider/CMakeLists.txt b/ydb/library/yql/providers/dq/provider/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/provider/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/provider/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.darwin.txt index 41087749e9..102fa46a9e 100644 --- a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux-aarch64.txt index a6a905ccf4..823f838755 100644 --- a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux.txt index a6a905ccf4..823f838755 100644 --- a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.txt b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/runtime/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/runtime/CMakeLists.darwin.txt index 607cb2ad53..d2b9beeb6a 100644 --- a/ydb/library/yql/providers/dq/runtime/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/runtime/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/runtime/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/runtime/CMakeLists.linux-aarch64.txt index 47259a0a2b..b274953d25 100644 --- a/ydb/library/yql/providers/dq/runtime/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/runtime/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/runtime/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/runtime/CMakeLists.linux.txt index 47259a0a2b..b274953d25 100644 --- a/ydb/library/yql/providers/dq/runtime/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/runtime/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/runtime/CMakeLists.txt b/ydb/library/yql/providers/dq/runtime/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/runtime/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/runtime/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/task_runner/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/task_runner/CMakeLists.darwin.txt index bbb493e4dd..229763f5f8 100644 --- a/ydb/library/yql/providers/dq/task_runner/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/task_runner/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/task_runner/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/task_runner/CMakeLists.linux-aarch64.txt index 8af92900d4..b93cbe7750 100644 --- a/ydb/library/yql/providers/dq/task_runner/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/task_runner/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/task_runner/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/task_runner/CMakeLists.linux.txt index 8af92900d4..b93cbe7750 100644 --- a/ydb/library/yql/providers/dq/task_runner/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/task_runner/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/task_runner/CMakeLists.txt b/ydb/library/yql/providers/dq/task_runner/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/task_runner/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/task_runner/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.darwin.txt index b138e81353..b2333c31ff 100644 --- a/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.linux-aarch64.txt index 13138bc688..393d8ad6e4 100644 --- a/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.linux.txt index 13138bc688..393d8ad6e4 100644 --- a/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.txt b/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/task_runner_actor/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/worker_manager/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/worker_manager/CMakeLists.darwin.txt index dc04dc7c68..3980bbc31c 100644 --- a/ydb/library/yql/providers/dq/worker_manager/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/worker_manager/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/worker_manager/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/worker_manager/CMakeLists.linux-aarch64.txt index bad53c7c92..c6e00e7373 100644 --- a/ydb/library/yql/providers/dq/worker_manager/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/worker_manager/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/worker_manager/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/worker_manager/CMakeLists.linux.txt index bad53c7c92..c6e00e7373 100644 --- a/ydb/library/yql/providers/dq/worker_manager/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/worker_manager/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/worker_manager/CMakeLists.txt b/ydb/library/yql/providers/dq/worker_manager/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/worker_manager/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/worker_manager/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.darwin.txt b/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.darwin.txt index 9f67bc65b2..9dc0d87b63 100644 --- a/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.linux-aarch64.txt index 9f93316c2c..aabe835f2c 100644 --- a/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.linux.txt b/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.linux.txt index 9f93316c2c..aabe835f2c 100644 --- a/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.txt b/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/worker_manager/interface/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/CMakeLists.txt b/ydb/library/yql/providers/function/CMakeLists.txt index 97c6df49e6..3b5d39f25d 100644 --- a/ydb/library/yql/providers/function/CMakeLists.txt +++ b/ydb/library/yql/providers/function/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/common/CMakeLists.darwin.txt b/ydb/library/yql/providers/function/common/CMakeLists.darwin.txt index defe292fd4..302752a2bd 100644 --- a/ydb/library/yql/providers/function/common/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/function/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/common/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/function/common/CMakeLists.linux-aarch64.txt index ce7c4e93ce..5d4345c0a1 100644 --- a/ydb/library/yql/providers/function/common/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/function/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/common/CMakeLists.linux.txt b/ydb/library/yql/providers/function/common/CMakeLists.linux.txt index ce7c4e93ce..5d4345c0a1 100644 --- a/ydb/library/yql/providers/function/common/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/function/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/common/CMakeLists.txt b/ydb/library/yql/providers/function/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/function/common/CMakeLists.txt +++ b/ydb/library/yql/providers/function/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/expr_nodes/CMakeLists.darwin.txt b/ydb/library/yql/providers/function/expr_nodes/CMakeLists.darwin.txt index 9381a2af67..7dd678e97a 100644 --- a/ydb/library/yql/providers/function/expr_nodes/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/function/expr_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/expr_nodes/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/function/expr_nodes/CMakeLists.linux-aarch64.txt index 0bfa75860f..c8d502305a 100644 --- a/ydb/library/yql/providers/function/expr_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/function/expr_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/expr_nodes/CMakeLists.linux.txt b/ydb/library/yql/providers/function/expr_nodes/CMakeLists.linux.txt index 0bfa75860f..c8d502305a 100644 --- a/ydb/library/yql/providers/function/expr_nodes/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/function/expr_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/expr_nodes/CMakeLists.txt b/ydb/library/yql/providers/function/expr_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/function/expr_nodes/CMakeLists.txt +++ b/ydb/library/yql/providers/function/expr_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/gateway/CMakeLists.darwin.txt b/ydb/library/yql/providers/function/gateway/CMakeLists.darwin.txt index eb9ba65b98..8988089abc 100644 --- a/ydb/library/yql/providers/function/gateway/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/function/gateway/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/gateway/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/function/gateway/CMakeLists.linux-aarch64.txt index 684d1fe263..9c78fa8452 100644 --- a/ydb/library/yql/providers/function/gateway/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/function/gateway/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/gateway/CMakeLists.linux.txt b/ydb/library/yql/providers/function/gateway/CMakeLists.linux.txt index 684d1fe263..9c78fa8452 100644 --- a/ydb/library/yql/providers/function/gateway/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/function/gateway/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/gateway/CMakeLists.txt b/ydb/library/yql/providers/function/gateway/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/function/gateway/CMakeLists.txt +++ b/ydb/library/yql/providers/function/gateway/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/proto/CMakeLists.darwin.txt b/ydb/library/yql/providers/function/proto/CMakeLists.darwin.txt index 93df0adeaa..9be8307f88 100644 --- a/ydb/library/yql/providers/function/proto/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/function/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/proto/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/function/proto/CMakeLists.linux-aarch64.txt index 3c78cbe9a8..588152b463 100644 --- a/ydb/library/yql/providers/function/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/function/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/proto/CMakeLists.linux.txt b/ydb/library/yql/providers/function/proto/CMakeLists.linux.txt index 3c78cbe9a8..588152b463 100644 --- a/ydb/library/yql/providers/function/proto/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/function/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/proto/CMakeLists.txt b/ydb/library/yql/providers/function/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/function/proto/CMakeLists.txt +++ b/ydb/library/yql/providers/function/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/provider/CMakeLists.darwin.txt b/ydb/library/yql/providers/function/provider/CMakeLists.darwin.txt index 62be94ae64..4ebb665f40 100644 --- a/ydb/library/yql/providers/function/provider/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/function/provider/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/provider/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/function/provider/CMakeLists.linux-aarch64.txt index 88ad9cc502..4b48f3c607 100644 --- a/ydb/library/yql/providers/function/provider/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/function/provider/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/provider/CMakeLists.linux.txt b/ydb/library/yql/providers/function/provider/CMakeLists.linux.txt index 88ad9cc502..4b48f3c607 100644 --- a/ydb/library/yql/providers/function/provider/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/function/provider/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/function/provider/CMakeLists.txt b/ydb/library/yql/providers/function/provider/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/function/provider/CMakeLists.txt +++ b/ydb/library/yql/providers/function/provider/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/CMakeLists.txt b/ydb/library/yql/providers/pq/CMakeLists.txt index ec814d7bed..aae21c83f6 100644 --- a/ydb/library/yql/providers/pq/CMakeLists.txt +++ b/ydb/library/yql/providers/pq/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/async_io/CMakeLists.darwin.txt b/ydb/library/yql/providers/pq/async_io/CMakeLists.darwin.txt index 0ea9fd0141..c4a76c1610 100644 --- a/ydb/library/yql/providers/pq/async_io/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/pq/async_io/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/async_io/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/pq/async_io/CMakeLists.linux-aarch64.txt index f9f4e1bc3c..84f89136be 100644 --- a/ydb/library/yql/providers/pq/async_io/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/pq/async_io/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/async_io/CMakeLists.linux.txt b/ydb/library/yql/providers/pq/async_io/CMakeLists.linux.txt index f9f4e1bc3c..84f89136be 100644 --- a/ydb/library/yql/providers/pq/async_io/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/pq/async_io/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/async_io/CMakeLists.txt b/ydb/library/yql/providers/pq/async_io/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/pq/async_io/CMakeLists.txt +++ b/ydb/library/yql/providers/pq/async_io/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/cm_client/CMakeLists.darwin.txt b/ydb/library/yql/providers/pq/cm_client/CMakeLists.darwin.txt index cfc6e6549d..053487d55e 100644 --- a/ydb/library/yql/providers/pq/cm_client/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/pq/cm_client/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/cm_client/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/pq/cm_client/CMakeLists.linux-aarch64.txt index 8155b75d9a..1b91710365 100644 --- a/ydb/library/yql/providers/pq/cm_client/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/pq/cm_client/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/cm_client/CMakeLists.linux.txt b/ydb/library/yql/providers/pq/cm_client/CMakeLists.linux.txt index 8155b75d9a..1b91710365 100644 --- a/ydb/library/yql/providers/pq/cm_client/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/pq/cm_client/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/cm_client/CMakeLists.txt b/ydb/library/yql/providers/pq/cm_client/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/pq/cm_client/CMakeLists.txt +++ b/ydb/library/yql/providers/pq/cm_client/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/common/CMakeLists.darwin.txt b/ydb/library/yql/providers/pq/common/CMakeLists.darwin.txt index 7d4c0b74f0..1607a5cc4f 100644 --- a/ydb/library/yql/providers/pq/common/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/pq/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/common/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/pq/common/CMakeLists.linux-aarch64.txt index f63b7f617b..586b684fb9 100644 --- a/ydb/library/yql/providers/pq/common/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/pq/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/common/CMakeLists.linux.txt b/ydb/library/yql/providers/pq/common/CMakeLists.linux.txt index f63b7f617b..586b684fb9 100644 --- a/ydb/library/yql/providers/pq/common/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/pq/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/common/CMakeLists.txt b/ydb/library/yql/providers/pq/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/pq/common/CMakeLists.txt +++ b/ydb/library/yql/providers/pq/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.darwin.txt b/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.darwin.txt index 81ef1eacd5..7be05df4a3 100644 --- a/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.linux-aarch64.txt index 89db514369..3c61e41263 100644 --- a/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.linux.txt b/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.linux.txt index 89db514369..3c61e41263 100644 --- a/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.txt b/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.txt +++ b/ydb/library/yql/providers/pq/expr_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/gateway/CMakeLists.txt b/ydb/library/yql/providers/pq/gateway/CMakeLists.txt index b79dce3ba3..a9bd945198 100644 --- a/ydb/library/yql/providers/pq/gateway/CMakeLists.txt +++ b/ydb/library/yql/providers/pq/gateway/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.darwin.txt b/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.darwin.txt index 2c3b4dd0e8..6e80e544ea 100644 --- a/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.linux-aarch64.txt index 5a6368ef7a..f537bdb22a 100644 --- a/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.linux.txt b/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.linux.txt index 5a6368ef7a..f537bdb22a 100644 --- a/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.txt b/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.txt +++ b/ydb/library/yql/providers/pq/gateway/dummy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/gateway/native/CMakeLists.darwin.txt b/ydb/library/yql/providers/pq/gateway/native/CMakeLists.darwin.txt index 90777c0e19..da671c9455 100644 --- a/ydb/library/yql/providers/pq/gateway/native/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/pq/gateway/native/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/gateway/native/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/pq/gateway/native/CMakeLists.linux-aarch64.txt index b1c3733c86..bddd7a24ed 100644 --- a/ydb/library/yql/providers/pq/gateway/native/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/pq/gateway/native/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/gateway/native/CMakeLists.linux.txt b/ydb/library/yql/providers/pq/gateway/native/CMakeLists.linux.txt index b1c3733c86..bddd7a24ed 100644 --- a/ydb/library/yql/providers/pq/gateway/native/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/pq/gateway/native/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/gateway/native/CMakeLists.txt b/ydb/library/yql/providers/pq/gateway/native/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/pq/gateway/native/CMakeLists.txt +++ b/ydb/library/yql/providers/pq/gateway/native/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/proto/CMakeLists.darwin.txt b/ydb/library/yql/providers/pq/proto/CMakeLists.darwin.txt index cdc504ff8f..28611d5f31 100644 --- a/ydb/library/yql/providers/pq/proto/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/pq/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/proto/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/pq/proto/CMakeLists.linux-aarch64.txt index 555b648f96..667ecc608e 100644 --- a/ydb/library/yql/providers/pq/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/pq/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/proto/CMakeLists.linux.txt b/ydb/library/yql/providers/pq/proto/CMakeLists.linux.txt index 555b648f96..667ecc608e 100644 --- a/ydb/library/yql/providers/pq/proto/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/pq/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/proto/CMakeLists.txt b/ydb/library/yql/providers/pq/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/pq/proto/CMakeLists.txt +++ b/ydb/library/yql/providers/pq/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/provider/CMakeLists.darwin.txt b/ydb/library/yql/providers/pq/provider/CMakeLists.darwin.txt index dd2277617c..e0f0f83c38 100644 --- a/ydb/library/yql/providers/pq/provider/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/pq/provider/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/provider/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/pq/provider/CMakeLists.linux-aarch64.txt index 264dd08999..b0a7dac9f4 100644 --- a/ydb/library/yql/providers/pq/provider/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/pq/provider/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/provider/CMakeLists.linux.txt b/ydb/library/yql/providers/pq/provider/CMakeLists.linux.txt index 264dd08999..b0a7dac9f4 100644 --- a/ydb/library/yql/providers/pq/provider/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/pq/provider/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/provider/CMakeLists.txt b/ydb/library/yql/providers/pq/provider/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/pq/provider/CMakeLists.txt +++ b/ydb/library/yql/providers/pq/provider/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/task_meta/CMakeLists.darwin.txt b/ydb/library/yql/providers/pq/task_meta/CMakeLists.darwin.txt index d60c6362e8..a64f264b35 100644 --- a/ydb/library/yql/providers/pq/task_meta/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/pq/task_meta/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/task_meta/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/pq/task_meta/CMakeLists.linux-aarch64.txt index 03ba673281..dc58176ac8 100644 --- a/ydb/library/yql/providers/pq/task_meta/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/pq/task_meta/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/task_meta/CMakeLists.linux.txt b/ydb/library/yql/providers/pq/task_meta/CMakeLists.linux.txt index 03ba673281..dc58176ac8 100644 --- a/ydb/library/yql/providers/pq/task_meta/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/pq/task_meta/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/pq/task_meta/CMakeLists.txt b/ydb/library/yql/providers/pq/task_meta/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/pq/task_meta/CMakeLists.txt +++ b/ydb/library/yql/providers/pq/task_meta/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/result/CMakeLists.txt b/ydb/library/yql/providers/result/CMakeLists.txt index 7d69f063e9..eeb77c645a 100644 --- a/ydb/library/yql/providers/result/CMakeLists.txt +++ b/ydb/library/yql/providers/result/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/result/expr_nodes/CMakeLists.darwin.txt b/ydb/library/yql/providers/result/expr_nodes/CMakeLists.darwin.txt index f29952319c..ea7eea1b5c 100644 --- a/ydb/library/yql/providers/result/expr_nodes/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/result/expr_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/result/expr_nodes/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/result/expr_nodes/CMakeLists.linux-aarch64.txt index bd9ebdabfb..9f87a9aa62 100644 --- a/ydb/library/yql/providers/result/expr_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/result/expr_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/result/expr_nodes/CMakeLists.linux.txt b/ydb/library/yql/providers/result/expr_nodes/CMakeLists.linux.txt index bd9ebdabfb..9f87a9aa62 100644 --- a/ydb/library/yql/providers/result/expr_nodes/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/result/expr_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/result/expr_nodes/CMakeLists.txt b/ydb/library/yql/providers/result/expr_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/result/expr_nodes/CMakeLists.txt +++ b/ydb/library/yql/providers/result/expr_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/result/provider/CMakeLists.darwin.txt b/ydb/library/yql/providers/result/provider/CMakeLists.darwin.txt index 38a0e7da78..4fd2b545af 100644 --- a/ydb/library/yql/providers/result/provider/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/result/provider/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/result/provider/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/result/provider/CMakeLists.linux-aarch64.txt index df45029ed6..03a6a5058b 100644 --- a/ydb/library/yql/providers/result/provider/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/result/provider/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/result/provider/CMakeLists.linux.txt b/ydb/library/yql/providers/result/provider/CMakeLists.linux.txt index df45029ed6..03a6a5058b 100644 --- a/ydb/library/yql/providers/result/provider/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/result/provider/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/result/provider/CMakeLists.txt b/ydb/library/yql/providers/result/provider/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/result/provider/CMakeLists.txt +++ b/ydb/library/yql/providers/result/provider/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/CMakeLists.txt b/ydb/library/yql/providers/s3/CMakeLists.txt index 29aed52775..bcd41e3119 100644 --- a/ydb/library/yql/providers/s3/CMakeLists.txt +++ b/ydb/library/yql/providers/s3/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/actors/CMakeLists.darwin.txt b/ydb/library/yql/providers/s3/actors/CMakeLists.darwin.txt index 1dfac42f89..5aec2cacd7 100644 --- a/ydb/library/yql/providers/s3/actors/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/s3/actors/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/actors/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/s3/actors/CMakeLists.linux-aarch64.txt index edde946ef4..c620637232 100644 --- a/ydb/library/yql/providers/s3/actors/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/s3/actors/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/actors/CMakeLists.linux.txt b/ydb/library/yql/providers/s3/actors/CMakeLists.linux.txt index edde946ef4..c620637232 100644 --- a/ydb/library/yql/providers/s3/actors/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/s3/actors/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/actors/CMakeLists.txt b/ydb/library/yql/providers/s3/actors/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/s3/actors/CMakeLists.txt +++ b/ydb/library/yql/providers/s3/actors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/common/CMakeLists.darwin.txt b/ydb/library/yql/providers/s3/common/CMakeLists.darwin.txt index 95c16f544c..3901547d5d 100644 --- a/ydb/library/yql/providers/s3/common/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/s3/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/common/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/s3/common/CMakeLists.linux-aarch64.txt index 5e171d74b4..806a467a7f 100644 --- a/ydb/library/yql/providers/s3/common/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/s3/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/common/CMakeLists.linux.txt b/ydb/library/yql/providers/s3/common/CMakeLists.linux.txt index 5e171d74b4..806a467a7f 100644 --- a/ydb/library/yql/providers/s3/common/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/s3/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/common/CMakeLists.txt b/ydb/library/yql/providers/s3/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/s3/common/CMakeLists.txt +++ b/ydb/library/yql/providers/s3/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/compressors/CMakeLists.darwin.txt b/ydb/library/yql/providers/s3/compressors/CMakeLists.darwin.txt index 2f174749ae..1716e4591b 100644 --- a/ydb/library/yql/providers/s3/compressors/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/s3/compressors/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/compressors/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/s3/compressors/CMakeLists.linux-aarch64.txt index 8410ee5609..29593593d8 100644 --- a/ydb/library/yql/providers/s3/compressors/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/s3/compressors/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/compressors/CMakeLists.linux.txt b/ydb/library/yql/providers/s3/compressors/CMakeLists.linux.txt index 8410ee5609..29593593d8 100644 --- a/ydb/library/yql/providers/s3/compressors/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/s3/compressors/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/compressors/CMakeLists.txt b/ydb/library/yql/providers/s3/compressors/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/s3/compressors/CMakeLists.txt +++ b/ydb/library/yql/providers/s3/compressors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.darwin.txt b/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.darwin.txt index ec89b3f47b..b710ed0a9f 100644 --- a/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.linux-aarch64.txt index bcaa947601..57cfefbe9d 100644 --- a/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.linux.txt b/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.linux.txt index bcaa947601..57cfefbe9d 100644 --- a/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.txt b/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.txt +++ b/ydb/library/yql/providers/s3/expr_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/path_generator/CMakeLists.darwin.txt b/ydb/library/yql/providers/s3/path_generator/CMakeLists.darwin.txt index 2e797ac3ce..daff7af81d 100644 --- a/ydb/library/yql/providers/s3/path_generator/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/s3/path_generator/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/path_generator/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/s3/path_generator/CMakeLists.linux-aarch64.txt index b0ec0a442b..db2452babf 100644 --- a/ydb/library/yql/providers/s3/path_generator/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/s3/path_generator/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/path_generator/CMakeLists.linux.txt b/ydb/library/yql/providers/s3/path_generator/CMakeLists.linux.txt index b0ec0a442b..db2452babf 100644 --- a/ydb/library/yql/providers/s3/path_generator/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/s3/path_generator/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/path_generator/CMakeLists.txt b/ydb/library/yql/providers/s3/path_generator/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/s3/path_generator/CMakeLists.txt +++ b/ydb/library/yql/providers/s3/path_generator/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.darwin.txt b/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.darwin.txt index 8e2ec3f246..0728a92fd0 100644 --- a/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.linux-aarch64.txt index 45e0bf38fe..f745d86778 100644 --- a/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.linux.txt b/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.linux.txt index 921a742059..d71dd1ca85 100644 --- a/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.txt b/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.txt +++ b/ydb/library/yql/providers/s3/path_generator/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/proto/CMakeLists.darwin.txt b/ydb/library/yql/providers/s3/proto/CMakeLists.darwin.txt index ccdedfbd0c..a816f1411f 100644 --- a/ydb/library/yql/providers/s3/proto/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/s3/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/proto/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/s3/proto/CMakeLists.linux-aarch64.txt index 55dc113acb..42581a8a1b 100644 --- a/ydb/library/yql/providers/s3/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/s3/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/proto/CMakeLists.linux.txt b/ydb/library/yql/providers/s3/proto/CMakeLists.linux.txt index 55dc113acb..42581a8a1b 100644 --- a/ydb/library/yql/providers/s3/proto/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/s3/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/proto/CMakeLists.txt b/ydb/library/yql/providers/s3/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/s3/proto/CMakeLists.txt +++ b/ydb/library/yql/providers/s3/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/provider/CMakeLists.darwin.txt b/ydb/library/yql/providers/s3/provider/CMakeLists.darwin.txt index 3b8098a5f5..99e87b35a4 100644 --- a/ydb/library/yql/providers/s3/provider/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/s3/provider/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/provider/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/s3/provider/CMakeLists.linux-aarch64.txt index 942f7ea860..0ecfc86637 100644 --- a/ydb/library/yql/providers/s3/provider/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/s3/provider/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/provider/CMakeLists.linux.txt b/ydb/library/yql/providers/s3/provider/CMakeLists.linux.txt index 942f7ea860..0ecfc86637 100644 --- a/ydb/library/yql/providers/s3/provider/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/s3/provider/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/provider/CMakeLists.txt b/ydb/library/yql/providers/s3/provider/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/s3/provider/CMakeLists.txt +++ b/ydb/library/yql/providers/s3/provider/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/provider/ut/CMakeLists.darwin.txt b/ydb/library/yql/providers/s3/provider/ut/CMakeLists.darwin.txt index a950ed5837..6103b29fff 100644 --- a/ydb/library/yql/providers/s3/provider/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/s3/provider/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/provider/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/s3/provider/ut/CMakeLists.linux-aarch64.txt index 096d77fce0..f6e538bdcb 100644 --- a/ydb/library/yql/providers/s3/provider/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/s3/provider/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/provider/ut/CMakeLists.linux.txt b/ydb/library/yql/providers/s3/provider/ut/CMakeLists.linux.txt index 4d3382c5d5..54624ccfbf 100644 --- a/ydb/library/yql/providers/s3/provider/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/s3/provider/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/provider/ut/CMakeLists.txt b/ydb/library/yql/providers/s3/provider/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/s3/provider/ut/CMakeLists.txt +++ b/ydb/library/yql/providers/s3/provider/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/range_helpers/CMakeLists.darwin.txt b/ydb/library/yql/providers/s3/range_helpers/CMakeLists.darwin.txt index 91c8329f6c..0827227867 100644 --- a/ydb/library/yql/providers/s3/range_helpers/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/s3/range_helpers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/range_helpers/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/s3/range_helpers/CMakeLists.linux-aarch64.txt index bbe48f9aca..e18c581c62 100644 --- a/ydb/library/yql/providers/s3/range_helpers/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/s3/range_helpers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/range_helpers/CMakeLists.linux.txt b/ydb/library/yql/providers/s3/range_helpers/CMakeLists.linux.txt index bbe48f9aca..e18c581c62 100644 --- a/ydb/library/yql/providers/s3/range_helpers/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/s3/range_helpers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/range_helpers/CMakeLists.txt b/ydb/library/yql/providers/s3/range_helpers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/s3/range_helpers/CMakeLists.txt +++ b/ydb/library/yql/providers/s3/range_helpers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.darwin.txt b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.darwin.txt index 690425de12..cae5f2b435 100644 --- a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux-aarch64.txt index c876f14ee5..c908716e96 100644 --- a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux.txt b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux.txt index 9671fad8b1..68931a6974 100644 --- a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.txt b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.txt +++ b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/serializations/CMakeLists.darwin.txt b/ydb/library/yql/providers/s3/serializations/CMakeLists.darwin.txt index 0a75f68101..c6a9ae1225 100644 --- a/ydb/library/yql/providers/s3/serializations/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/s3/serializations/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/serializations/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/s3/serializations/CMakeLists.linux-aarch64.txt index 072aa8ae63..237eac6128 100644 --- a/ydb/library/yql/providers/s3/serializations/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/s3/serializations/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/serializations/CMakeLists.linux.txt b/ydb/library/yql/providers/s3/serializations/CMakeLists.linux.txt index 072aa8ae63..237eac6128 100644 --- a/ydb/library/yql/providers/s3/serializations/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/s3/serializations/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/s3/serializations/CMakeLists.txt b/ydb/library/yql/providers/s3/serializations/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/s3/serializations/CMakeLists.txt +++ b/ydb/library/yql/providers/s3/serializations/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/CMakeLists.txt b/ydb/library/yql/providers/solomon/CMakeLists.txt index 038f82c4c6..f13fac47a3 100644 --- a/ydb/library/yql/providers/solomon/CMakeLists.txt +++ b/ydb/library/yql/providers/solomon/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/async_io/CMakeLists.darwin.txt b/ydb/library/yql/providers/solomon/async_io/CMakeLists.darwin.txt index 5e438dc7e4..57efac1991 100644 --- a/ydb/library/yql/providers/solomon/async_io/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/solomon/async_io/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/async_io/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/solomon/async_io/CMakeLists.linux-aarch64.txt index c02c1d9eb1..1b57f1fce3 100644 --- a/ydb/library/yql/providers/solomon/async_io/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/solomon/async_io/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/async_io/CMakeLists.linux.txt b/ydb/library/yql/providers/solomon/async_io/CMakeLists.linux.txt index c02c1d9eb1..1b57f1fce3 100644 --- a/ydb/library/yql/providers/solomon/async_io/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/solomon/async_io/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/async_io/CMakeLists.txt b/ydb/library/yql/providers/solomon/async_io/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/solomon/async_io/CMakeLists.txt +++ b/ydb/library/yql/providers/solomon/async_io/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.darwin.txt b/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.darwin.txt index 824570c192..540c22ed8f 100644 --- a/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.linux-aarch64.txt index c28dac9621..a3797cbf52 100644 --- a/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.linux.txt b/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.linux.txt index c28dac9621..a3797cbf52 100644 --- a/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.txt b/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.txt +++ b/ydb/library/yql/providers/solomon/expr_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/gateway/CMakeLists.darwin.txt b/ydb/library/yql/providers/solomon/gateway/CMakeLists.darwin.txt index 509bff450f..50220485d7 100644 --- a/ydb/library/yql/providers/solomon/gateway/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/solomon/gateway/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/gateway/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/solomon/gateway/CMakeLists.linux-aarch64.txt index 3c2b364f76..eae2e66f95 100644 --- a/ydb/library/yql/providers/solomon/gateway/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/solomon/gateway/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/gateway/CMakeLists.linux.txt b/ydb/library/yql/providers/solomon/gateway/CMakeLists.linux.txt index 3c2b364f76..eae2e66f95 100644 --- a/ydb/library/yql/providers/solomon/gateway/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/solomon/gateway/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/gateway/CMakeLists.txt b/ydb/library/yql/providers/solomon/gateway/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/solomon/gateway/CMakeLists.txt +++ b/ydb/library/yql/providers/solomon/gateway/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/proto/CMakeLists.darwin.txt b/ydb/library/yql/providers/solomon/proto/CMakeLists.darwin.txt index e7c7f725a7..8366719b44 100644 --- a/ydb/library/yql/providers/solomon/proto/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/solomon/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/proto/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/solomon/proto/CMakeLists.linux-aarch64.txt index f0c35099a1..b9b2eb31e2 100644 --- a/ydb/library/yql/providers/solomon/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/solomon/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/proto/CMakeLists.linux.txt b/ydb/library/yql/providers/solomon/proto/CMakeLists.linux.txt index f0c35099a1..b9b2eb31e2 100644 --- a/ydb/library/yql/providers/solomon/proto/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/solomon/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/proto/CMakeLists.txt b/ydb/library/yql/providers/solomon/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/solomon/proto/CMakeLists.txt +++ b/ydb/library/yql/providers/solomon/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/provider/CMakeLists.darwin.txt b/ydb/library/yql/providers/solomon/provider/CMakeLists.darwin.txt index 4fdd3c2ec3..6097509834 100644 --- a/ydb/library/yql/providers/solomon/provider/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/solomon/provider/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/provider/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/solomon/provider/CMakeLists.linux-aarch64.txt index ecff79d166..be7b49d095 100644 --- a/ydb/library/yql/providers/solomon/provider/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/solomon/provider/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/provider/CMakeLists.linux.txt b/ydb/library/yql/providers/solomon/provider/CMakeLists.linux.txt index ecff79d166..be7b49d095 100644 --- a/ydb/library/yql/providers/solomon/provider/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/solomon/provider/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/solomon/provider/CMakeLists.txt b/ydb/library/yql/providers/solomon/provider/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/solomon/provider/CMakeLists.txt +++ b/ydb/library/yql/providers/solomon/provider/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/CMakeLists.txt b/ydb/library/yql/providers/ydb/CMakeLists.txt index a9e4e8777c..e07fd314c5 100644 --- a/ydb/library/yql/providers/ydb/CMakeLists.txt +++ b/ydb/library/yql/providers/ydb/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/actors/CMakeLists.darwin.txt b/ydb/library/yql/providers/ydb/actors/CMakeLists.darwin.txt index 08b4519586..99a5cab4b5 100644 --- a/ydb/library/yql/providers/ydb/actors/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/ydb/actors/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/actors/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/ydb/actors/CMakeLists.linux-aarch64.txt index ea39b2f2bb..3f650874fa 100644 --- a/ydb/library/yql/providers/ydb/actors/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/ydb/actors/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/actors/CMakeLists.linux.txt b/ydb/library/yql/providers/ydb/actors/CMakeLists.linux.txt index ea39b2f2bb..3f650874fa 100644 --- a/ydb/library/yql/providers/ydb/actors/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/ydb/actors/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/actors/CMakeLists.txt b/ydb/library/yql/providers/ydb/actors/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/ydb/actors/CMakeLists.txt +++ b/ydb/library/yql/providers/ydb/actors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.darwin.txt b/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.darwin.txt index 1521cbdbcd..788f3db081 100644 --- a/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.linux-aarch64.txt index 5ce8c43be7..498b294a44 100644 --- a/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.linux.txt b/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.linux.txt index 5ce8c43be7..498b294a44 100644 --- a/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.txt b/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.txt +++ b/ydb/library/yql/providers/ydb/comp_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.darwin.txt b/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.darwin.txt index 17a18af783..99d4c2103a 100644 --- a/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.linux-aarch64.txt index aa11bb4726..48a5c5cc29 100644 --- a/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.linux.txt b/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.linux.txt index aa11bb4726..48a5c5cc29 100644 --- a/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.txt b/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.txt +++ b/ydb/library/yql/providers/ydb/expr_nodes/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/proto/CMakeLists.darwin.txt b/ydb/library/yql/providers/ydb/proto/CMakeLists.darwin.txt index d7828d84f1..d31b32eade 100644 --- a/ydb/library/yql/providers/ydb/proto/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/ydb/proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/proto/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/ydb/proto/CMakeLists.linux-aarch64.txt index 468cc29403..2d0f98dd26 100644 --- a/ydb/library/yql/providers/ydb/proto/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/ydb/proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/proto/CMakeLists.linux.txt b/ydb/library/yql/providers/ydb/proto/CMakeLists.linux.txt index 468cc29403..2d0f98dd26 100644 --- a/ydb/library/yql/providers/ydb/proto/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/ydb/proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/proto/CMakeLists.txt b/ydb/library/yql/providers/ydb/proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/ydb/proto/CMakeLists.txt +++ b/ydb/library/yql/providers/ydb/proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/provider/CMakeLists.darwin.txt b/ydb/library/yql/providers/ydb/provider/CMakeLists.darwin.txt index 1bd3e708e0..08ef8f84dc 100644 --- a/ydb/library/yql/providers/ydb/provider/CMakeLists.darwin.txt +++ b/ydb/library/yql/providers/ydb/provider/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/provider/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/ydb/provider/CMakeLists.linux-aarch64.txt index 7a3963566d..c0079f995e 100644 --- a/ydb/library/yql/providers/ydb/provider/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/ydb/provider/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/provider/CMakeLists.linux.txt b/ydb/library/yql/providers/ydb/provider/CMakeLists.linux.txt index 7a3963566d..c0079f995e 100644 --- a/ydb/library/yql/providers/ydb/provider/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/ydb/provider/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/providers/ydb/provider/CMakeLists.txt b/ydb/library/yql/providers/ydb/provider/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/providers/ydb/provider/CMakeLists.txt +++ b/ydb/library/yql/providers/ydb/provider/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/CMakeLists.txt b/ydb/library/yql/public/CMakeLists.txt index 97b7790031..71687e2ead 100644 --- a/ydb/library/yql/public/CMakeLists.txt +++ b/ydb/library/yql/public/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/decimal/CMakeLists.darwin.txt b/ydb/library/yql/public/decimal/CMakeLists.darwin.txt index c3facd11f7..f63cbd1d01 100644 --- a/ydb/library/yql/public/decimal/CMakeLists.darwin.txt +++ b/ydb/library/yql/public/decimal/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/decimal/CMakeLists.linux-aarch64.txt b/ydb/library/yql/public/decimal/CMakeLists.linux-aarch64.txt index 905b8b8799..1d7ff6d8fb 100644 --- a/ydb/library/yql/public/decimal/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/public/decimal/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/decimal/CMakeLists.linux.txt b/ydb/library/yql/public/decimal/CMakeLists.linux.txt index 905b8b8799..1d7ff6d8fb 100644 --- a/ydb/library/yql/public/decimal/CMakeLists.linux.txt +++ b/ydb/library/yql/public/decimal/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/decimal/CMakeLists.txt b/ydb/library/yql/public/decimal/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/public/decimal/CMakeLists.txt +++ b/ydb/library/yql/public/decimal/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/decimal/ut/CMakeLists.darwin.txt b/ydb/library/yql/public/decimal/ut/CMakeLists.darwin.txt index 23c7752795..49fa0629cf 100644 --- a/ydb/library/yql/public/decimal/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/public/decimal/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/decimal/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/public/decimal/ut/CMakeLists.linux-aarch64.txt index 2ebfd73d61..b79bbed118 100644 --- a/ydb/library/yql/public/decimal/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/public/decimal/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/decimal/ut/CMakeLists.linux.txt b/ydb/library/yql/public/decimal/ut/CMakeLists.linux.txt index 36f619e0e7..448973847a 100644 --- a/ydb/library/yql/public/decimal/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/public/decimal/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/decimal/ut/CMakeLists.txt b/ydb/library/yql/public/decimal/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/public/decimal/ut/CMakeLists.txt +++ b/ydb/library/yql/public/decimal/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/issue/CMakeLists.darwin.txt b/ydb/library/yql/public/issue/CMakeLists.darwin.txt index 79aa57aabf..d36f149ab4 100644 --- a/ydb/library/yql/public/issue/CMakeLists.darwin.txt +++ b/ydb/library/yql/public/issue/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/issue/CMakeLists.linux-aarch64.txt b/ydb/library/yql/public/issue/CMakeLists.linux-aarch64.txt index 21477a604b..1da118cfb9 100644 --- a/ydb/library/yql/public/issue/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/public/issue/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/issue/CMakeLists.linux.txt b/ydb/library/yql/public/issue/CMakeLists.linux.txt index 21477a604b..1da118cfb9 100644 --- a/ydb/library/yql/public/issue/CMakeLists.linux.txt +++ b/ydb/library/yql/public/issue/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/issue/CMakeLists.txt b/ydb/library/yql/public/issue/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/public/issue/CMakeLists.txt +++ b/ydb/library/yql/public/issue/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/issue/protos/CMakeLists.darwin.txt b/ydb/library/yql/public/issue/protos/CMakeLists.darwin.txt index 80ab39da1a..21afa8fea3 100644 --- a/ydb/library/yql/public/issue/protos/CMakeLists.darwin.txt +++ b/ydb/library/yql/public/issue/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/issue/protos/CMakeLists.linux-aarch64.txt b/ydb/library/yql/public/issue/protos/CMakeLists.linux-aarch64.txt index 92ff415c7c..de672e67f2 100644 --- a/ydb/library/yql/public/issue/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/public/issue/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/issue/protos/CMakeLists.linux.txt b/ydb/library/yql/public/issue/protos/CMakeLists.linux.txt index 92ff415c7c..de672e67f2 100644 --- a/ydb/library/yql/public/issue/protos/CMakeLists.linux.txt +++ b/ydb/library/yql/public/issue/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/issue/protos/CMakeLists.txt b/ydb/library/yql/public/issue/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/public/issue/protos/CMakeLists.txt +++ b/ydb/library/yql/public/issue/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/issue/ut/CMakeLists.darwin.txt b/ydb/library/yql/public/issue/ut/CMakeLists.darwin.txt index e4a5be1736..86495a7223 100644 --- a/ydb/library/yql/public/issue/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/public/issue/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/issue/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/public/issue/ut/CMakeLists.linux-aarch64.txt index 57fa7d835f..675d61b4ff 100644 --- a/ydb/library/yql/public/issue/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/public/issue/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/issue/ut/CMakeLists.linux.txt b/ydb/library/yql/public/issue/ut/CMakeLists.linux.txt index acbf916a09..32ce5a3fcc 100644 --- a/ydb/library/yql/public/issue/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/public/issue/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/issue/ut/CMakeLists.txt b/ydb/library/yql/public/issue/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/public/issue/ut/CMakeLists.txt +++ b/ydb/library/yql/public/issue/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/types/CMakeLists.darwin.txt b/ydb/library/yql/public/types/CMakeLists.darwin.txt index 8b05d2ed0a..12855c11cc 100644 --- a/ydb/library/yql/public/types/CMakeLists.darwin.txt +++ b/ydb/library/yql/public/types/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/types/CMakeLists.linux-aarch64.txt b/ydb/library/yql/public/types/CMakeLists.linux-aarch64.txt index a66e688d98..30dfed19cc 100644 --- a/ydb/library/yql/public/types/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/public/types/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/types/CMakeLists.linux.txt b/ydb/library/yql/public/types/CMakeLists.linux.txt index a66e688d98..30dfed19cc 100644 --- a/ydb/library/yql/public/types/CMakeLists.linux.txt +++ b/ydb/library/yql/public/types/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/types/CMakeLists.txt b/ydb/library/yql/public/types/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/public/types/CMakeLists.txt +++ b/ydb/library/yql/public/types/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/CMakeLists.darwin.txt b/ydb/library/yql/public/udf/CMakeLists.darwin.txt index b1f9a16080..61c5fb48ca 100644 --- a/ydb/library/yql/public/udf/CMakeLists.darwin.txt +++ b/ydb/library/yql/public/udf/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/CMakeLists.linux-aarch64.txt b/ydb/library/yql/public/udf/CMakeLists.linux-aarch64.txt index 0f8cec9823..d35c91df0d 100644 --- a/ydb/library/yql/public/udf/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/public/udf/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/CMakeLists.linux.txt b/ydb/library/yql/public/udf/CMakeLists.linux.txt index 0f8cec9823..d35c91df0d 100644 --- a/ydb/library/yql/public/udf/CMakeLists.linux.txt +++ b/ydb/library/yql/public/udf/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/CMakeLists.txt b/ydb/library/yql/public/udf/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/public/udf/CMakeLists.txt +++ b/ydb/library/yql/public/udf/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/service/CMakeLists.txt b/ydb/library/yql/public/udf/service/CMakeLists.txt index afe68303ab..23ccd42992 100644 --- a/ydb/library/yql/public/udf/service/CMakeLists.txt +++ b/ydb/library/yql/public/udf/service/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.darwin.txt b/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.darwin.txt index 26fa5fc6b1..c0011de5e5 100644 --- a/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.darwin.txt +++ b/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.linux-aarch64.txt b/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.linux-aarch64.txt index f89bf46a60..6481ad2022 100644 --- a/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.linux.txt b/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.linux.txt index f89bf46a60..6481ad2022 100644 --- a/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.linux.txt +++ b/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.txt b/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.txt +++ b/ydb/library/yql/public/udf/service/exception_policy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/service/stub/CMakeLists.darwin.txt b/ydb/library/yql/public/udf/service/stub/CMakeLists.darwin.txt index 5276635892..dca6cc3d42 100644 --- a/ydb/library/yql/public/udf/service/stub/CMakeLists.darwin.txt +++ b/ydb/library/yql/public/udf/service/stub/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/service/stub/CMakeLists.linux-aarch64.txt b/ydb/library/yql/public/udf/service/stub/CMakeLists.linux-aarch64.txt index 652cc172a8..fdf4e0405f 100644 --- a/ydb/library/yql/public/udf/service/stub/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/public/udf/service/stub/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/service/stub/CMakeLists.linux.txt b/ydb/library/yql/public/udf/service/stub/CMakeLists.linux.txt index 652cc172a8..fdf4e0405f 100644 --- a/ydb/library/yql/public/udf/service/stub/CMakeLists.linux.txt +++ b/ydb/library/yql/public/udf/service/stub/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/service/stub/CMakeLists.txt b/ydb/library/yql/public/udf/service/stub/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/public/udf/service/stub/CMakeLists.txt +++ b/ydb/library/yql/public/udf/service/stub/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.darwin.txt b/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.darwin.txt index 0d3561b8f5..83f4698355 100644 --- a/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.darwin.txt +++ b/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.linux-aarch64.txt b/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.linux-aarch64.txt index 6fc634f49c..bb9ae92697 100644 --- a/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.linux.txt b/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.linux.txt index 6fc634f49c..bb9ae92697 100644 --- a/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.linux.txt +++ b/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.txt b/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.txt +++ b/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/support/CMakeLists.darwin.txt b/ydb/library/yql/public/udf/support/CMakeLists.darwin.txt index d28cefafd6..ce3f0497ca 100644 --- a/ydb/library/yql/public/udf/support/CMakeLists.darwin.txt +++ b/ydb/library/yql/public/udf/support/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/support/CMakeLists.linux-aarch64.txt b/ydb/library/yql/public/udf/support/CMakeLists.linux-aarch64.txt index 02b9836ad0..84f8a6d44f 100644 --- a/ydb/library/yql/public/udf/support/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/public/udf/support/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/support/CMakeLists.linux.txt b/ydb/library/yql/public/udf/support/CMakeLists.linux.txt index 02b9836ad0..84f8a6d44f 100644 --- a/ydb/library/yql/public/udf/support/CMakeLists.linux.txt +++ b/ydb/library/yql/public/udf/support/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/support/CMakeLists.txt b/ydb/library/yql/public/udf/support/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/public/udf/support/CMakeLists.txt +++ b/ydb/library/yql/public/udf/support/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/tz/CMakeLists.darwin.txt b/ydb/library/yql/public/udf/tz/CMakeLists.darwin.txt index b3c12e79b0..34a3859929 100644 --- a/ydb/library/yql/public/udf/tz/CMakeLists.darwin.txt +++ b/ydb/library/yql/public/udf/tz/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/tz/CMakeLists.linux-aarch64.txt b/ydb/library/yql/public/udf/tz/CMakeLists.linux-aarch64.txt index ac58c35f25..324920a3a1 100644 --- a/ydb/library/yql/public/udf/tz/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/public/udf/tz/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/tz/CMakeLists.linux.txt b/ydb/library/yql/public/udf/tz/CMakeLists.linux.txt index ac58c35f25..324920a3a1 100644 --- a/ydb/library/yql/public/udf/tz/CMakeLists.linux.txt +++ b/ydb/library/yql/public/udf/tz/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/tz/CMakeLists.txt b/ydb/library/yql/public/udf/tz/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/public/udf/tz/CMakeLists.txt +++ b/ydb/library/yql/public/udf/tz/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/ut/CMakeLists.darwin.txt b/ydb/library/yql/public/udf/ut/CMakeLists.darwin.txt index 4b5a54957f..08978ab521 100644 --- a/ydb/library/yql/public/udf/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/public/udf/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/public/udf/ut/CMakeLists.linux-aarch64.txt index 871644421a..f371ce70b4 100644 --- a/ydb/library/yql/public/udf/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/public/udf/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/ut/CMakeLists.linux.txt b/ydb/library/yql/public/udf/ut/CMakeLists.linux.txt index 503611b537..bcde1d5066 100644 --- a/ydb/library/yql/public/udf/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/public/udf/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/public/udf/ut/CMakeLists.txt b/ydb/library/yql/public/udf/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/public/udf/ut/CMakeLists.txt +++ b/ydb/library/yql/public/udf/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/CMakeLists.darwin.txt b/ydb/library/yql/sql/CMakeLists.darwin.txt index 60c0205ab8..74d5ed1972 100644 --- a/ydb/library/yql/sql/CMakeLists.darwin.txt +++ b/ydb/library/yql/sql/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/CMakeLists.linux-aarch64.txt b/ydb/library/yql/sql/CMakeLists.linux-aarch64.txt index 2423066c33..cc503b13ed 100644 --- a/ydb/library/yql/sql/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/sql/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/CMakeLists.linux.txt b/ydb/library/yql/sql/CMakeLists.linux.txt index 2423066c33..cc503b13ed 100644 --- a/ydb/library/yql/sql/CMakeLists.linux.txt +++ b/ydb/library/yql/sql/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/CMakeLists.txt b/ydb/library/yql/sql/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/sql/CMakeLists.txt +++ b/ydb/library/yql/sql/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/pg/CMakeLists.darwin.txt b/ydb/library/yql/sql/pg/CMakeLists.darwin.txt index 0ef8804666..32e022de17 100644 --- a/ydb/library/yql/sql/pg/CMakeLists.darwin.txt +++ b/ydb/library/yql/sql/pg/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/pg/CMakeLists.linux-aarch64.txt b/ydb/library/yql/sql/pg/CMakeLists.linux-aarch64.txt index 4cb57adf16..092455387f 100644 --- a/ydb/library/yql/sql/pg/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/sql/pg/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/pg/CMakeLists.linux.txt b/ydb/library/yql/sql/pg/CMakeLists.linux.txt index 4cb57adf16..092455387f 100644 --- a/ydb/library/yql/sql/pg/CMakeLists.linux.txt +++ b/ydb/library/yql/sql/pg/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/pg/CMakeLists.txt b/ydb/library/yql/sql/pg/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/sql/pg/CMakeLists.txt +++ b/ydb/library/yql/sql/pg/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/pg_dummy/CMakeLists.darwin.txt b/ydb/library/yql/sql/pg_dummy/CMakeLists.darwin.txt index a54584f18b..ce0ff89da5 100644 --- a/ydb/library/yql/sql/pg_dummy/CMakeLists.darwin.txt +++ b/ydb/library/yql/sql/pg_dummy/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/pg_dummy/CMakeLists.linux-aarch64.txt b/ydb/library/yql/sql/pg_dummy/CMakeLists.linux-aarch64.txt index 5398b4ae55..de0ed248cc 100644 --- a/ydb/library/yql/sql/pg_dummy/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/sql/pg_dummy/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/pg_dummy/CMakeLists.linux.txt b/ydb/library/yql/sql/pg_dummy/CMakeLists.linux.txt index 5398b4ae55..de0ed248cc 100644 --- a/ydb/library/yql/sql/pg_dummy/CMakeLists.linux.txt +++ b/ydb/library/yql/sql/pg_dummy/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/pg_dummy/CMakeLists.txt b/ydb/library/yql/sql/pg_dummy/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/sql/pg_dummy/CMakeLists.txt +++ b/ydb/library/yql/sql/pg_dummy/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/settings/CMakeLists.darwin.txt b/ydb/library/yql/sql/settings/CMakeLists.darwin.txt index 079b52ad4d..ccb58a596b 100644 --- a/ydb/library/yql/sql/settings/CMakeLists.darwin.txt +++ b/ydb/library/yql/sql/settings/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/settings/CMakeLists.linux-aarch64.txt b/ydb/library/yql/sql/settings/CMakeLists.linux-aarch64.txt index 354562013a..115422bd4a 100644 --- a/ydb/library/yql/sql/settings/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/sql/settings/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/settings/CMakeLists.linux.txt b/ydb/library/yql/sql/settings/CMakeLists.linux.txt index 354562013a..115422bd4a 100644 --- a/ydb/library/yql/sql/settings/CMakeLists.linux.txt +++ b/ydb/library/yql/sql/settings/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/settings/CMakeLists.txt b/ydb/library/yql/sql/settings/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/sql/settings/CMakeLists.txt +++ b/ydb/library/yql/sql/settings/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v0/CMakeLists.darwin.txt b/ydb/library/yql/sql/v0/CMakeLists.darwin.txt index e1d952379d..f52cf1f19f 100644 --- a/ydb/library/yql/sql/v0/CMakeLists.darwin.txt +++ b/ydb/library/yql/sql/v0/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v0/CMakeLists.linux-aarch64.txt b/ydb/library/yql/sql/v0/CMakeLists.linux-aarch64.txt index e253b7d3fc..8d8579a1d7 100644 --- a/ydb/library/yql/sql/v0/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/sql/v0/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v0/CMakeLists.linux.txt b/ydb/library/yql/sql/v0/CMakeLists.linux.txt index e253b7d3fc..8d8579a1d7 100644 --- a/ydb/library/yql/sql/v0/CMakeLists.linux.txt +++ b/ydb/library/yql/sql/v0/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v0/CMakeLists.txt b/ydb/library/yql/sql/v0/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/sql/v0/CMakeLists.txt +++ b/ydb/library/yql/sql/v0/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v0/lexer/CMakeLists.darwin.txt b/ydb/library/yql/sql/v0/lexer/CMakeLists.darwin.txt index 77d9a22aa3..2e2dddfd7e 100644 --- a/ydb/library/yql/sql/v0/lexer/CMakeLists.darwin.txt +++ b/ydb/library/yql/sql/v0/lexer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v0/lexer/CMakeLists.linux-aarch64.txt b/ydb/library/yql/sql/v0/lexer/CMakeLists.linux-aarch64.txt index 61300ed5ae..d59aa806ce 100644 --- a/ydb/library/yql/sql/v0/lexer/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/sql/v0/lexer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v0/lexer/CMakeLists.linux.txt b/ydb/library/yql/sql/v0/lexer/CMakeLists.linux.txt index 61300ed5ae..d59aa806ce 100644 --- a/ydb/library/yql/sql/v0/lexer/CMakeLists.linux.txt +++ b/ydb/library/yql/sql/v0/lexer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v0/lexer/CMakeLists.txt b/ydb/library/yql/sql/v0/lexer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/sql/v0/lexer/CMakeLists.txt +++ b/ydb/library/yql/sql/v0/lexer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/CMakeLists.darwin.txt b/ydb/library/yql/sql/v1/CMakeLists.darwin.txt index 9d15e3cb08..b7e0e64877 100644 --- a/ydb/library/yql/sql/v1/CMakeLists.darwin.txt +++ b/ydb/library/yql/sql/v1/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/CMakeLists.linux-aarch64.txt b/ydb/library/yql/sql/v1/CMakeLists.linux-aarch64.txt index 3ce1323a78..3825a186d6 100644 --- a/ydb/library/yql/sql/v1/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/sql/v1/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/CMakeLists.linux.txt b/ydb/library/yql/sql/v1/CMakeLists.linux.txt index 3ce1323a78..3825a186d6 100644 --- a/ydb/library/yql/sql/v1/CMakeLists.linux.txt +++ b/ydb/library/yql/sql/v1/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/CMakeLists.txt b/ydb/library/yql/sql/v1/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/sql/v1/CMakeLists.txt +++ b/ydb/library/yql/sql/v1/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/format/CMakeLists.darwin.txt b/ydb/library/yql/sql/v1/format/CMakeLists.darwin.txt index 9aabc1be21..ebb1909771 100644 --- a/ydb/library/yql/sql/v1/format/CMakeLists.darwin.txt +++ b/ydb/library/yql/sql/v1/format/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/format/CMakeLists.linux-aarch64.txt b/ydb/library/yql/sql/v1/format/CMakeLists.linux-aarch64.txt index 0e1c2a74b7..d35ca5fbef 100644 --- a/ydb/library/yql/sql/v1/format/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/sql/v1/format/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/format/CMakeLists.linux.txt b/ydb/library/yql/sql/v1/format/CMakeLists.linux.txt index 0e1c2a74b7..d35ca5fbef 100644 --- a/ydb/library/yql/sql/v1/format/CMakeLists.linux.txt +++ b/ydb/library/yql/sql/v1/format/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/format/CMakeLists.txt b/ydb/library/yql/sql/v1/format/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/sql/v1/format/CMakeLists.txt +++ b/ydb/library/yql/sql/v1/format/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/lexer/CMakeLists.darwin.txt b/ydb/library/yql/sql/v1/lexer/CMakeLists.darwin.txt index 63fc784852..39f7d128ee 100644 --- a/ydb/library/yql/sql/v1/lexer/CMakeLists.darwin.txt +++ b/ydb/library/yql/sql/v1/lexer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/lexer/CMakeLists.linux-aarch64.txt b/ydb/library/yql/sql/v1/lexer/CMakeLists.linux-aarch64.txt index 887021edf3..88b5433a1f 100644 --- a/ydb/library/yql/sql/v1/lexer/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/sql/v1/lexer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/lexer/CMakeLists.linux.txt b/ydb/library/yql/sql/v1/lexer/CMakeLists.linux.txt index 887021edf3..88b5433a1f 100644 --- a/ydb/library/yql/sql/v1/lexer/CMakeLists.linux.txt +++ b/ydb/library/yql/sql/v1/lexer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/lexer/CMakeLists.txt b/ydb/library/yql/sql/v1/lexer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/sql/v1/lexer/CMakeLists.txt +++ b/ydb/library/yql/sql/v1/lexer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/perf/CMakeLists.darwin.txt b/ydb/library/yql/sql/v1/perf/CMakeLists.darwin.txt index 3b77efa7f2..340eaf7aae 100644 --- a/ydb/library/yql/sql/v1/perf/CMakeLists.darwin.txt +++ b/ydb/library/yql/sql/v1/perf/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/perf/CMakeLists.linux-aarch64.txt b/ydb/library/yql/sql/v1/perf/CMakeLists.linux-aarch64.txt index ae4c88bba2..20de6f21f9 100644 --- a/ydb/library/yql/sql/v1/perf/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/sql/v1/perf/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/perf/CMakeLists.linux.txt b/ydb/library/yql/sql/v1/perf/CMakeLists.linux.txt index cf03c968f2..b1a9c9a4b4 100644 --- a/ydb/library/yql/sql/v1/perf/CMakeLists.linux.txt +++ b/ydb/library/yql/sql/v1/perf/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/perf/CMakeLists.txt b/ydb/library/yql/sql/v1/perf/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/sql/v1/perf/CMakeLists.txt +++ b/ydb/library/yql/sql/v1/perf/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/proto_parser/CMakeLists.darwin.txt b/ydb/library/yql/sql/v1/proto_parser/CMakeLists.darwin.txt index 6e916d607b..349b52115a 100644 --- a/ydb/library/yql/sql/v1/proto_parser/CMakeLists.darwin.txt +++ b/ydb/library/yql/sql/v1/proto_parser/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/proto_parser/CMakeLists.linux-aarch64.txt b/ydb/library/yql/sql/v1/proto_parser/CMakeLists.linux-aarch64.txt index 43bb49f7d4..6148a1c88e 100644 --- a/ydb/library/yql/sql/v1/proto_parser/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/sql/v1/proto_parser/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/proto_parser/CMakeLists.linux.txt b/ydb/library/yql/sql/v1/proto_parser/CMakeLists.linux.txt index 43bb49f7d4..6148a1c88e 100644 --- a/ydb/library/yql/sql/v1/proto_parser/CMakeLists.linux.txt +++ b/ydb/library/yql/sql/v1/proto_parser/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/sql/v1/proto_parser/CMakeLists.txt b/ydb/library/yql/sql/v1/proto_parser/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/sql/v1/proto_parser/CMakeLists.txt +++ b/ydb/library/yql/sql/v1/proto_parser/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/CMakeLists.txt b/ydb/library/yql/udfs/CMakeLists.txt index 39b9818db6..d9de204b4a 100644 --- a/ydb/library/yql/udfs/CMakeLists.txt +++ b/ydb/library/yql/udfs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/CMakeLists.darwin.txt index d60ad8cba9..10ac5bd4b5 100644 --- a/ydb/library/yql/udfs/common/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/CMakeLists.linux-aarch64.txt index c020f3ee5c..1fc73e5a2d 100644 --- a/ydb/library/yql/udfs/common/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/CMakeLists.linux.txt index d60ad8cba9..10ac5bd4b5 100644 --- a/ydb/library/yql/udfs/common/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/CMakeLists.txt b/ydb/library/yql/udfs/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/clickhouse/CMakeLists.txt b/ydb/library/yql/udfs/common/clickhouse/CMakeLists.txt index 49369c57a0..7f79107ebc 100644 --- a/ydb/library/yql/udfs/common/clickhouse/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/clickhouse/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.darwin.txt index c5cd106b65..e0030346f8 100644 --- a/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.linux-aarch64.txt index 32da8e4f54..719bbf09b4 100644 --- a/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.linux.txt index 32da8e4f54..719bbf09b4 100644 --- a/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.txt b/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/clickhouse/client/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/datetime/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/datetime/CMakeLists.darwin.txt index 88ac893134..c14be7d04c 100644 --- a/ydb/library/yql/udfs/common/datetime/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/datetime/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/datetime/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/datetime/CMakeLists.linux-aarch64.txt index 0a1687960b..e6f6af51fc 100644 --- a/ydb/library/yql/udfs/common/datetime/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/datetime/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/datetime/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/datetime/CMakeLists.linux.txt index 0a1687960b..e6f6af51fc 100644 --- a/ydb/library/yql/udfs/common/datetime/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/datetime/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/datetime/CMakeLists.txt b/ydb/library/yql/udfs/common/datetime/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/datetime/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/datetime/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/datetime2/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/datetime2/CMakeLists.darwin.txt index 5c32601078..0eeb6f6caf 100644 --- a/ydb/library/yql/udfs/common/datetime2/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/datetime2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/datetime2/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/datetime2/CMakeLists.linux-aarch64.txt index 7adaa56f7d..047df7b446 100644 --- a/ydb/library/yql/udfs/common/datetime2/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/datetime2/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/datetime2/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/datetime2/CMakeLists.linux.txt index 7adaa56f7d..047df7b446 100644 --- a/ydb/library/yql/udfs/common/datetime2/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/datetime2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/datetime2/CMakeLists.txt b/ydb/library/yql/udfs/common/datetime2/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/datetime2/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/datetime2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/digest/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/digest/CMakeLists.darwin.txt index 4d38552a9b..50ba05b890 100644 --- a/ydb/library/yql/udfs/common/digest/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/digest/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/digest/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/digest/CMakeLists.linux-aarch64.txt index 88aebe8ada..27df3e38e8 100644 --- a/ydb/library/yql/udfs/common/digest/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/digest/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/digest/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/digest/CMakeLists.linux.txt index 88aebe8ada..27df3e38e8 100644 --- a/ydb/library/yql/udfs/common/digest/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/digest/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/digest/CMakeLists.txt b/ydb/library/yql/udfs/common/digest/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/digest/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/digest/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/histogram/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/histogram/CMakeLists.darwin.txt index f7f3563b36..04d1e485a2 100644 --- a/ydb/library/yql/udfs/common/histogram/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/histogram/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/histogram/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/histogram/CMakeLists.linux-aarch64.txt index b99231af38..ae1c1e1394 100644 --- a/ydb/library/yql/udfs/common/histogram/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/histogram/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/histogram/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/histogram/CMakeLists.linux.txt index b99231af38..ae1c1e1394 100644 --- a/ydb/library/yql/udfs/common/histogram/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/histogram/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/histogram/CMakeLists.txt b/ydb/library/yql/udfs/common/histogram/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/histogram/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/histogram/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.darwin.txt index 8324bc96f2..a44851da9f 100644 --- a/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.linux-aarch64.txt index bb7a83213b..d4ac62891b 100644 --- a/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.linux.txt index bb7a83213b..d4ac62891b 100644 --- a/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.txt b/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/hyperloglog/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/hyperscan/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/hyperscan/CMakeLists.darwin.txt index 7cc1904f6a..c8ce54c59e 100644 --- a/ydb/library/yql/udfs/common/hyperscan/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/hyperscan/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/hyperscan/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/hyperscan/CMakeLists.linux.txt index 77a07a008e..f1b98e2163 100644 --- a/ydb/library/yql/udfs/common/hyperscan/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/hyperscan/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/hyperscan/CMakeLists.txt b/ydb/library/yql/udfs/common/hyperscan/CMakeLists.txt index 79468a5d8d..8e263e1f61 100644 --- a/ydb/library/yql/udfs/common/hyperscan/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/hyperscan/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/ip_base/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/ip_base/CMakeLists.darwin.txt index b01a3028c2..cd2e9dae15 100644 --- a/ydb/library/yql/udfs/common/ip_base/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/ip_base/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/ip_base/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/ip_base/CMakeLists.linux-aarch64.txt index c90526626c..9274f9766e 100644 --- a/ydb/library/yql/udfs/common/ip_base/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/ip_base/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/ip_base/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/ip_base/CMakeLists.linux.txt index c90526626c..9274f9766e 100644 --- a/ydb/library/yql/udfs/common/ip_base/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/ip_base/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/ip_base/CMakeLists.txt b/ydb/library/yql/udfs/common/ip_base/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/ip_base/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/ip_base/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.darwin.txt index 94b1dd3e06..172123100f 100644 --- a/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.linux-aarch64.txt index bb6f444f19..7c0d81d750 100644 --- a/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.linux.txt index bb6f444f19..7c0d81d750 100644 --- a/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.txt b/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/ip_base/lib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/json/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/json/CMakeLists.darwin.txt index 10dc66ccde..ff69837d58 100644 --- a/ydb/library/yql/udfs/common/json/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/json/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/json/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/json/CMakeLists.linux-aarch64.txt index b2e4bb52d9..4c0c37d600 100644 --- a/ydb/library/yql/udfs/common/json/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/json/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/json/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/json/CMakeLists.linux.txt index b2e4bb52d9..4c0c37d600 100644 --- a/ydb/library/yql/udfs/common/json/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/json/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/json/CMakeLists.txt b/ydb/library/yql/udfs/common/json/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/json/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/json/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/json2/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/json2/CMakeLists.darwin.txt index c6e02893c9..46e29176e6 100644 --- a/ydb/library/yql/udfs/common/json2/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/json2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/json2/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/json2/CMakeLists.linux-aarch64.txt index 9bfd5637f3..6127f5aac1 100644 --- a/ydb/library/yql/udfs/common/json2/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/json2/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/json2/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/json2/CMakeLists.linux.txt index 9bfd5637f3..6127f5aac1 100644 --- a/ydb/library/yql/udfs/common/json2/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/json2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/json2/CMakeLists.txt b/ydb/library/yql/udfs/common/json2/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/json2/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/json2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/math/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/math/CMakeLists.darwin.txt index d6c448f67b..fe081a1fc8 100644 --- a/ydb/library/yql/udfs/common/math/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/math/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/math/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/math/CMakeLists.linux-aarch64.txt index de33f9dcc0..6981794d21 100644 --- a/ydb/library/yql/udfs/common/math/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/math/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/math/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/math/CMakeLists.linux.txt index de33f9dcc0..6981794d21 100644 --- a/ydb/library/yql/udfs/common/math/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/math/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/math/CMakeLists.txt b/ydb/library/yql/udfs/common/math/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/math/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/math/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/math/lib/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/math/lib/CMakeLists.darwin.txt index 826aac74ac..93d31949ea 100644 --- a/ydb/library/yql/udfs/common/math/lib/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/math/lib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/math/lib/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/math/lib/CMakeLists.linux-aarch64.txt index c1c049662d..483c55ccc5 100644 --- a/ydb/library/yql/udfs/common/math/lib/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/math/lib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/math/lib/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/math/lib/CMakeLists.linux.txt index c1c049662d..483c55ccc5 100644 --- a/ydb/library/yql/udfs/common/math/lib/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/math/lib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/math/lib/CMakeLists.txt b/ydb/library/yql/udfs/common/math/lib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/math/lib/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/math/lib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/pire/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/pire/CMakeLists.darwin.txt index 489b32cc4d..7305bacc06 100644 --- a/ydb/library/yql/udfs/common/pire/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/pire/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/pire/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/pire/CMakeLists.linux-aarch64.txt index 1b1e0ae899..7a97631d33 100644 --- a/ydb/library/yql/udfs/common/pire/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/pire/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/pire/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/pire/CMakeLists.linux.txt index 1b1e0ae899..7a97631d33 100644 --- a/ydb/library/yql/udfs/common/pire/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/pire/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/pire/CMakeLists.txt b/ydb/library/yql/udfs/common/pire/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/pire/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/pire/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/re2/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/re2/CMakeLists.darwin.txt index 65a5834716..0ecc44510c 100644 --- a/ydb/library/yql/udfs/common/re2/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/re2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/re2/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/re2/CMakeLists.linux-aarch64.txt index 0e7ec7ce2d..fb482a20f0 100644 --- a/ydb/library/yql/udfs/common/re2/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/re2/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/re2/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/re2/CMakeLists.linux.txt index 0e7ec7ce2d..fb482a20f0 100644 --- a/ydb/library/yql/udfs/common/re2/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/re2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/re2/CMakeLists.txt b/ydb/library/yql/udfs/common/re2/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/re2/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/re2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/set/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/set/CMakeLists.darwin.txt index 6d1eda46b1..f8fd405a22 100644 --- a/ydb/library/yql/udfs/common/set/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/set/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/set/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/set/CMakeLists.linux-aarch64.txt index 196c4fb87a..4b9258ffba 100644 --- a/ydb/library/yql/udfs/common/set/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/set/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/set/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/set/CMakeLists.linux.txt index 196c4fb87a..4b9258ffba 100644 --- a/ydb/library/yql/udfs/common/set/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/set/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/set/CMakeLists.txt b/ydb/library/yql/udfs/common/set/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/set/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/set/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/stat/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/stat/CMakeLists.darwin.txt index 7b0ef957e1..df023a6ffa 100644 --- a/ydb/library/yql/udfs/common/stat/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/stat/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/stat/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/stat/CMakeLists.linux-aarch64.txt index c19e76a165..1d815f7584 100644 --- a/ydb/library/yql/udfs/common/stat/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/stat/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/stat/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/stat/CMakeLists.linux.txt index c19e76a165..1d815f7584 100644 --- a/ydb/library/yql/udfs/common/stat/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/stat/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/stat/CMakeLists.txt b/ydb/library/yql/udfs/common/stat/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/stat/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/stat/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/stat/static/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/stat/static/CMakeLists.darwin.txt index 9bddbe36b5..02060bf28f 100644 --- a/ydb/library/yql/udfs/common/stat/static/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/stat/static/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/stat/static/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/stat/static/CMakeLists.linux-aarch64.txt index 69cd116ff0..a06acd76a8 100644 --- a/ydb/library/yql/udfs/common/stat/static/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/stat/static/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/stat/static/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/stat/static/CMakeLists.linux.txt index 69cd116ff0..a06acd76a8 100644 --- a/ydb/library/yql/udfs/common/stat/static/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/stat/static/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/stat/static/CMakeLists.txt b/ydb/library/yql/udfs/common/stat/static/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/stat/static/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/stat/static/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/stat/ut/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/stat/ut/CMakeLists.darwin.txt index 77c1475a0c..8a4de07a97 100644 --- a/ydb/library/yql/udfs/common/stat/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/stat/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/stat/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/stat/ut/CMakeLists.linux-aarch64.txt index 01aec97c20..690616a3a0 100644 --- a/ydb/library/yql/udfs/common/stat/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/stat/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/stat/ut/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/stat/ut/CMakeLists.linux.txt index 92382bb016..7888be93ad 100644 --- a/ydb/library/yql/udfs/common/stat/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/stat/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/stat/ut/CMakeLists.txt b/ydb/library/yql/udfs/common/stat/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/stat/ut/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/stat/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/string/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/string/CMakeLists.darwin.txt index dfd971276d..9be6f63db3 100644 --- a/ydb/library/yql/udfs/common/string/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/string/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/string/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/string/CMakeLists.linux-aarch64.txt index aa0ab9daf5..1b7d56adfd 100644 --- a/ydb/library/yql/udfs/common/string/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/string/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/string/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/string/CMakeLists.linux.txt index aa0ab9daf5..1b7d56adfd 100644 --- a/ydb/library/yql/udfs/common/string/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/string/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/string/CMakeLists.txt b/ydb/library/yql/udfs/common/string/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/string/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/string/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/top/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/top/CMakeLists.darwin.txt index 33dfbaf93f..b7dd8fe910 100644 --- a/ydb/library/yql/udfs/common/top/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/top/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/top/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/top/CMakeLists.linux-aarch64.txt index 8f002173ee..987243fad3 100644 --- a/ydb/library/yql/udfs/common/top/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/top/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/top/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/top/CMakeLists.linux.txt index 8f002173ee..987243fad3 100644 --- a/ydb/library/yql/udfs/common/top/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/top/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/top/CMakeLists.txt b/ydb/library/yql/udfs/common/top/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/top/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/top/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/topfreq/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/topfreq/CMakeLists.darwin.txt index 34f1b5b579..38163124c2 100644 --- a/ydb/library/yql/udfs/common/topfreq/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/topfreq/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/topfreq/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/topfreq/CMakeLists.linux-aarch64.txt index 549f4a5f4a..810c2cc50c 100644 --- a/ydb/library/yql/udfs/common/topfreq/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/topfreq/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/topfreq/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/topfreq/CMakeLists.linux.txt index 549f4a5f4a..810c2cc50c 100644 --- a/ydb/library/yql/udfs/common/topfreq/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/topfreq/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/topfreq/CMakeLists.txt b/ydb/library/yql/udfs/common/topfreq/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/topfreq/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/topfreq/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.darwin.txt index 73ed723a7b..97c54f0818 100644 --- a/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.linux-aarch64.txt index ba5c2825bf..ca42148812 100644 --- a/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.linux.txt index ba5c2825bf..ca42148812 100644 --- a/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.txt b/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/topfreq/static/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.darwin.txt index abf9e714d8..16a739f2d0 100644 --- a/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.linux-aarch64.txt index e5cd503c14..03120eeda7 100644 --- a/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.linux.txt index 3a67c372fa..2d45f5c1c4 100644 --- a/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.txt b/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/unicode_base/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/unicode_base/CMakeLists.darwin.txt index f54662603a..fa3a507ca4 100644 --- a/ydb/library/yql/udfs/common/unicode_base/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/unicode_base/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/unicode_base/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/unicode_base/CMakeLists.linux-aarch64.txt index aae22ba826..b38c3f47a0 100644 --- a/ydb/library/yql/udfs/common/unicode_base/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/unicode_base/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/unicode_base/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/unicode_base/CMakeLists.linux.txt index aae22ba826..b38c3f47a0 100644 --- a/ydb/library/yql/udfs/common/unicode_base/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/unicode_base/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/unicode_base/CMakeLists.txt b/ydb/library/yql/udfs/common/unicode_base/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/unicode_base/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/unicode_base/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.darwin.txt index a920b2f20f..2f90840d64 100644 --- a/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.linux-aarch64.txt index fbc03a205a..00bc36b686 100644 --- a/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.linux.txt index fbc03a205a..00bc36b686 100644 --- a/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.txt b/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/unicode_base/lib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/url_base/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/url_base/CMakeLists.darwin.txt index f44a5465ea..58c5f62d5c 100644 --- a/ydb/library/yql/udfs/common/url_base/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/url_base/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/url_base/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/url_base/CMakeLists.linux-aarch64.txt index c5a7d4a7ed..ae152cf9e0 100644 --- a/ydb/library/yql/udfs/common/url_base/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/url_base/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/url_base/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/url_base/CMakeLists.linux.txt index c5a7d4a7ed..ae152cf9e0 100644 --- a/ydb/library/yql/udfs/common/url_base/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/url_base/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/url_base/CMakeLists.txt b/ydb/library/yql/udfs/common/url_base/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/url_base/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/url_base/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.darwin.txt index 167486c50e..75cbdbd4af 100644 --- a/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.linux-aarch64.txt index 683ce083c2..1af705d435 100644 --- a/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.linux.txt index 683ce083c2..1af705d435 100644 --- a/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.txt b/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/url_base/lib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/yson2/CMakeLists.darwin.txt b/ydb/library/yql/udfs/common/yson2/CMakeLists.darwin.txt index 36be7ce5fd..e4f115e005 100644 --- a/ydb/library/yql/udfs/common/yson2/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/common/yson2/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/yson2/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/common/yson2/CMakeLists.linux-aarch64.txt index 353a07476f..74fb6300eb 100644 --- a/ydb/library/yql/udfs/common/yson2/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/common/yson2/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/yson2/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/yson2/CMakeLists.linux.txt index 353a07476f..74fb6300eb 100644 --- a/ydb/library/yql/udfs/common/yson2/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/yson2/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/common/yson2/CMakeLists.txt b/ydb/library/yql/udfs/common/yson2/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/common/yson2/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/yson2/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/logs/CMakeLists.txt b/ydb/library/yql/udfs/logs/CMakeLists.txt index 606404041f..31dc43525c 100644 --- a/ydb/library/yql/udfs/logs/CMakeLists.txt +++ b/ydb/library/yql/udfs/logs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/logs/dsv/CMakeLists.darwin.txt b/ydb/library/yql/udfs/logs/dsv/CMakeLists.darwin.txt index 5ae1ccc847..c41af75814 100644 --- a/ydb/library/yql/udfs/logs/dsv/CMakeLists.darwin.txt +++ b/ydb/library/yql/udfs/logs/dsv/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/logs/dsv/CMakeLists.linux-aarch64.txt b/ydb/library/yql/udfs/logs/dsv/CMakeLists.linux-aarch64.txt index b1378e8866..fac04b3afa 100644 --- a/ydb/library/yql/udfs/logs/dsv/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/udfs/logs/dsv/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/logs/dsv/CMakeLists.linux.txt b/ydb/library/yql/udfs/logs/dsv/CMakeLists.linux.txt index b1378e8866..fac04b3afa 100644 --- a/ydb/library/yql/udfs/logs/dsv/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/logs/dsv/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/udfs/logs/dsv/CMakeLists.txt b/ydb/library/yql/udfs/logs/dsv/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/udfs/logs/dsv/CMakeLists.txt +++ b/ydb/library/yql/udfs/logs/dsv/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/CMakeLists.darwin.txt b/ydb/library/yql/utils/CMakeLists.darwin.txt index 385bf233ac..ae3c9a5c31 100644 --- a/ydb/library/yql/utils/CMakeLists.darwin.txt +++ b/ydb/library/yql/utils/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/CMakeLists.linux-aarch64.txt b/ydb/library/yql/utils/CMakeLists.linux-aarch64.txt index 519a04af99..f065185dd0 100644 --- a/ydb/library/yql/utils/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/utils/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/CMakeLists.linux.txt b/ydb/library/yql/utils/CMakeLists.linux.txt index 519a04af99..f065185dd0 100644 --- a/ydb/library/yql/utils/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/CMakeLists.txt b/ydb/library/yql/utils/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/utils/CMakeLists.txt +++ b/ydb/library/yql/utils/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/actor_log/CMakeLists.darwin.txt b/ydb/library/yql/utils/actor_log/CMakeLists.darwin.txt index 7ee73f9bd3..fdbde6130a 100644 --- a/ydb/library/yql/utils/actor_log/CMakeLists.darwin.txt +++ b/ydb/library/yql/utils/actor_log/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/actor_log/CMakeLists.linux-aarch64.txt b/ydb/library/yql/utils/actor_log/CMakeLists.linux-aarch64.txt index a9159a0b45..6716245e74 100644 --- a/ydb/library/yql/utils/actor_log/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/utils/actor_log/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/actor_log/CMakeLists.linux.txt b/ydb/library/yql/utils/actor_log/CMakeLists.linux.txt index a9159a0b45..6716245e74 100644 --- a/ydb/library/yql/utils/actor_log/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/actor_log/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/actor_log/CMakeLists.txt b/ydb/library/yql/utils/actor_log/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/utils/actor_log/CMakeLists.txt +++ b/ydb/library/yql/utils/actor_log/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/actors/CMakeLists.darwin.txt b/ydb/library/yql/utils/actors/CMakeLists.darwin.txt index 85f2c73c68..d550257eae 100644 --- a/ydb/library/yql/utils/actors/CMakeLists.darwin.txt +++ b/ydb/library/yql/utils/actors/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/actors/CMakeLists.linux-aarch64.txt b/ydb/library/yql/utils/actors/CMakeLists.linux-aarch64.txt index df126cbeea..59ede3ac33 100644 --- a/ydb/library/yql/utils/actors/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/utils/actors/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/actors/CMakeLists.linux.txt b/ydb/library/yql/utils/actors/CMakeLists.linux.txt index df126cbeea..59ede3ac33 100644 --- a/ydb/library/yql/utils/actors/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/actors/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/actors/CMakeLists.txt b/ydb/library/yql/utils/actors/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/utils/actors/CMakeLists.txt +++ b/ydb/library/yql/utils/actors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/actors/ut/CMakeLists.darwin.txt b/ydb/library/yql/utils/actors/ut/CMakeLists.darwin.txt index 0f8ad58603..a93f9fd650 100644 --- a/ydb/library/yql/utils/actors/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/utils/actors/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/actors/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/utils/actors/ut/CMakeLists.linux-aarch64.txt index 6c28868daf..1689a3fdb1 100644 --- a/ydb/library/yql/utils/actors/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/utils/actors/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/actors/ut/CMakeLists.linux.txt b/ydb/library/yql/utils/actors/ut/CMakeLists.linux.txt index 40773a9855..eedc8c5741 100644 --- a/ydb/library/yql/utils/actors/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/actors/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/actors/ut/CMakeLists.txt b/ydb/library/yql/utils/actors/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/utils/actors/ut/CMakeLists.txt +++ b/ydb/library/yql/utils/actors/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/backtrace/CMakeLists.darwin.txt b/ydb/library/yql/utils/backtrace/CMakeLists.darwin.txt index fd37db3e02..596203686f 100644 --- a/ydb/library/yql/utils/backtrace/CMakeLists.darwin.txt +++ b/ydb/library/yql/utils/backtrace/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/backtrace/CMakeLists.linux-aarch64.txt b/ydb/library/yql/utils/backtrace/CMakeLists.linux-aarch64.txt index 5a4c807bb1..b777923ea3 100644 --- a/ydb/library/yql/utils/backtrace/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/utils/backtrace/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/backtrace/CMakeLists.linux.txt b/ydb/library/yql/utils/backtrace/CMakeLists.linux.txt index 92de1cc1df..941290fc59 100644 --- a/ydb/library/yql/utils/backtrace/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/backtrace/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/backtrace/CMakeLists.txt b/ydb/library/yql/utils/backtrace/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/utils/backtrace/CMakeLists.txt +++ b/ydb/library/yql/utils/backtrace/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/failure_injector/CMakeLists.darwin.txt b/ydb/library/yql/utils/failure_injector/CMakeLists.darwin.txt index 0877b32a07..f97a70dd59 100644 --- a/ydb/library/yql/utils/failure_injector/CMakeLists.darwin.txt +++ b/ydb/library/yql/utils/failure_injector/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/failure_injector/CMakeLists.linux-aarch64.txt b/ydb/library/yql/utils/failure_injector/CMakeLists.linux-aarch64.txt index de7b6f4694..4de721142b 100644 --- a/ydb/library/yql/utils/failure_injector/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/utils/failure_injector/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/failure_injector/CMakeLists.linux.txt b/ydb/library/yql/utils/failure_injector/CMakeLists.linux.txt index de7b6f4694..4de721142b 100644 --- a/ydb/library/yql/utils/failure_injector/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/failure_injector/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/failure_injector/CMakeLists.txt b/ydb/library/yql/utils/failure_injector/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/utils/failure_injector/CMakeLists.txt +++ b/ydb/library/yql/utils/failure_injector/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/failure_injector/ut/CMakeLists.darwin.txt b/ydb/library/yql/utils/failure_injector/ut/CMakeLists.darwin.txt index 6164392223..8164ae8944 100644 --- a/ydb/library/yql/utils/failure_injector/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/utils/failure_injector/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/failure_injector/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/utils/failure_injector/ut/CMakeLists.linux-aarch64.txt index 94debe57c3..c7c8258b2f 100644 --- a/ydb/library/yql/utils/failure_injector/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/utils/failure_injector/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/failure_injector/ut/CMakeLists.linux.txt b/ydb/library/yql/utils/failure_injector/ut/CMakeLists.linux.txt index 209a34fbca..8dfc72477b 100644 --- a/ydb/library/yql/utils/failure_injector/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/failure_injector/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/failure_injector/ut/CMakeLists.txt b/ydb/library/yql/utils/failure_injector/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/utils/failure_injector/ut/CMakeLists.txt +++ b/ydb/library/yql/utils/failure_injector/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/fetch/CMakeLists.darwin.txt b/ydb/library/yql/utils/fetch/CMakeLists.darwin.txt index 7bda815245..8f28753f2c 100644 --- a/ydb/library/yql/utils/fetch/CMakeLists.darwin.txt +++ b/ydb/library/yql/utils/fetch/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/fetch/CMakeLists.linux-aarch64.txt b/ydb/library/yql/utils/fetch/CMakeLists.linux-aarch64.txt index 5edbb16415..7bd513f38d 100644 --- a/ydb/library/yql/utils/fetch/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/utils/fetch/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/fetch/CMakeLists.linux.txt b/ydb/library/yql/utils/fetch/CMakeLists.linux.txt index 5edbb16415..7bd513f38d 100644 --- a/ydb/library/yql/utils/fetch/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/fetch/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/fetch/CMakeLists.txt b/ydb/library/yql/utils/fetch/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/utils/fetch/CMakeLists.txt +++ b/ydb/library/yql/utils/fetch/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/log/CMakeLists.darwin.txt b/ydb/library/yql/utils/log/CMakeLists.darwin.txt index be1cdcefab..a50046760f 100644 --- a/ydb/library/yql/utils/log/CMakeLists.darwin.txt +++ b/ydb/library/yql/utils/log/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/log/CMakeLists.linux-aarch64.txt b/ydb/library/yql/utils/log/CMakeLists.linux-aarch64.txt index 4a0a4a99df..424601bfaf 100644 --- a/ydb/library/yql/utils/log/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/utils/log/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/log/CMakeLists.linux.txt b/ydb/library/yql/utils/log/CMakeLists.linux.txt index 4a0a4a99df..424601bfaf 100644 --- a/ydb/library/yql/utils/log/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/log/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/log/CMakeLists.txt b/ydb/library/yql/utils/log/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/utils/log/CMakeLists.txt +++ b/ydb/library/yql/utils/log/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/log/ut/CMakeLists.darwin.txt b/ydb/library/yql/utils/log/ut/CMakeLists.darwin.txt index acd1b6dfc2..90ff49ee5e 100644 --- a/ydb/library/yql/utils/log/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/utils/log/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/log/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/utils/log/ut/CMakeLists.linux-aarch64.txt index 276a080f1a..095d8c163c 100644 --- a/ydb/library/yql/utils/log/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/utils/log/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/log/ut/CMakeLists.linux.txt b/ydb/library/yql/utils/log/ut/CMakeLists.linux.txt index 3f05620bc4..92b6a358dc 100644 --- a/ydb/library/yql/utils/log/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/log/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/log/ut/CMakeLists.txt b/ydb/library/yql/utils/log/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/utils/log/ut/CMakeLists.txt +++ b/ydb/library/yql/utils/log/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/test_http_server/CMakeLists.darwin.txt b/ydb/library/yql/utils/test_http_server/CMakeLists.darwin.txt index 6bec57c9ad..cae5b436b0 100644 --- a/ydb/library/yql/utils/test_http_server/CMakeLists.darwin.txt +++ b/ydb/library/yql/utils/test_http_server/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/test_http_server/CMakeLists.linux-aarch64.txt b/ydb/library/yql/utils/test_http_server/CMakeLists.linux-aarch64.txt index 432e77126b..bd82cf3c9e 100644 --- a/ydb/library/yql/utils/test_http_server/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/utils/test_http_server/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/test_http_server/CMakeLists.linux.txt b/ydb/library/yql/utils/test_http_server/CMakeLists.linux.txt index 432e77126b..bd82cf3c9e 100644 --- a/ydb/library/yql/utils/test_http_server/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/test_http_server/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/test_http_server/CMakeLists.txt b/ydb/library/yql/utils/test_http_server/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/utils/test_http_server/CMakeLists.txt +++ b/ydb/library/yql/utils/test_http_server/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/threading/CMakeLists.darwin.txt b/ydb/library/yql/utils/threading/CMakeLists.darwin.txt index 114014399d..088417b3f9 100644 --- a/ydb/library/yql/utils/threading/CMakeLists.darwin.txt +++ b/ydb/library/yql/utils/threading/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/threading/CMakeLists.linux-aarch64.txt b/ydb/library/yql/utils/threading/CMakeLists.linux-aarch64.txt index 0b4b144dbf..b401781229 100644 --- a/ydb/library/yql/utils/threading/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/utils/threading/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/threading/CMakeLists.linux.txt b/ydb/library/yql/utils/threading/CMakeLists.linux.txt index 0b4b144dbf..b401781229 100644 --- a/ydb/library/yql/utils/threading/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/threading/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/threading/CMakeLists.txt b/ydb/library/yql/utils/threading/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/utils/threading/CMakeLists.txt +++ b/ydb/library/yql/utils/threading/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/ut/CMakeLists.darwin.txt b/ydb/library/yql/utils/ut/CMakeLists.darwin.txt index 603db14872..abad0e44c7 100644 --- a/ydb/library/yql/utils/ut/CMakeLists.darwin.txt +++ b/ydb/library/yql/utils/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/utils/ut/CMakeLists.linux-aarch64.txt index cab0fbba84..d4eb3851b8 100644 --- a/ydb/library/yql/utils/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/utils/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/ut/CMakeLists.linux.txt b/ydb/library/yql/utils/ut/CMakeLists.linux.txt index 9a52bab119..20fd052240 100644 --- a/ydb/library/yql/utils/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/library/yql/utils/ut/CMakeLists.txt b/ydb/library/yql/utils/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/library/yql/utils/ut/CMakeLists.txt +++ b/ydb/library/yql/utils/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/CMakeLists.txt b/ydb/public/CMakeLists.txt index e7a4fe2e5f..145ead31b6 100644 --- a/ydb/public/CMakeLists.txt +++ b/ydb/public/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/CMakeLists.txt b/ydb/public/api/CMakeLists.txt index 2b33828c9b..fbe59131a3 100644 --- a/ydb/public/api/CMakeLists.txt +++ b/ydb/public/api/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/CMakeLists.txt b/ydb/public/api/client/CMakeLists.txt index 7ab3660dae..08a19a7aa7 100644 --- a/ydb/public/api/client/CMakeLists.txt +++ b/ydb/public/api/client/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/CMakeLists.txt b/ydb/public/api/client/yc_private/CMakeLists.txt index 141f8a5cb2..cda763d3e1 100644 --- a/ydb/public/api/client/yc_private/CMakeLists.txt +++ b/ydb/public/api/client/yc_private/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/iam/CMakeLists.darwin.txt b/ydb/public/api/client/yc_private/iam/CMakeLists.darwin.txt index f0d86ee847..fe787d41ca 100644 --- a/ydb/public/api/client/yc_private/iam/CMakeLists.darwin.txt +++ b/ydb/public/api/client/yc_private/iam/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/iam/CMakeLists.linux-aarch64.txt b/ydb/public/api/client/yc_private/iam/CMakeLists.linux-aarch64.txt index 173641784c..912403f77b 100644 --- a/ydb/public/api/client/yc_private/iam/CMakeLists.linux-aarch64.txt +++ b/ydb/public/api/client/yc_private/iam/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/iam/CMakeLists.linux.txt b/ydb/public/api/client/yc_private/iam/CMakeLists.linux.txt index 173641784c..912403f77b 100644 --- a/ydb/public/api/client/yc_private/iam/CMakeLists.linux.txt +++ b/ydb/public/api/client/yc_private/iam/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/iam/CMakeLists.txt b/ydb/public/api/client/yc_private/iam/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/api/client/yc_private/iam/CMakeLists.txt +++ b/ydb/public/api/client/yc_private/iam/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/operation/CMakeLists.darwin.txt b/ydb/public/api/client/yc_private/operation/CMakeLists.darwin.txt index e528cdf4d5..2f6ff8550d 100644 --- a/ydb/public/api/client/yc_private/operation/CMakeLists.darwin.txt +++ b/ydb/public/api/client/yc_private/operation/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/operation/CMakeLists.linux-aarch64.txt b/ydb/public/api/client/yc_private/operation/CMakeLists.linux-aarch64.txt index df35206bc3..87a43bab80 100644 --- a/ydb/public/api/client/yc_private/operation/CMakeLists.linux-aarch64.txt +++ b/ydb/public/api/client/yc_private/operation/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/operation/CMakeLists.linux.txt b/ydb/public/api/client/yc_private/operation/CMakeLists.linux.txt index df35206bc3..87a43bab80 100644 --- a/ydb/public/api/client/yc_private/operation/CMakeLists.linux.txt +++ b/ydb/public/api/client/yc_private/operation/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/operation/CMakeLists.txt b/ydb/public/api/client/yc_private/operation/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/api/client/yc_private/operation/CMakeLists.txt +++ b/ydb/public/api/client/yc_private/operation/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.darwin.txt b/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.darwin.txt index b6b43d38d2..693f9b458c 100644 --- a/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.darwin.txt +++ b/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.linux-aarch64.txt b/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.linux-aarch64.txt index 4fae882299..aebc9a988b 100644 --- a/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.linux-aarch64.txt +++ b/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.linux.txt b/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.linux.txt index 4fae882299..aebc9a988b 100644 --- a/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.linux.txt +++ b/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.txt b/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.txt +++ b/ydb/public/api/client/yc_private/resourcemanager/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.darwin.txt b/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.darwin.txt index f3d6fe2ae4..d2bd85c9f2 100644 --- a/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.darwin.txt +++ b/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.linux-aarch64.txt b/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.linux-aarch64.txt index 8ccb23e14d..f037a17af6 100644 --- a/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.linux-aarch64.txt +++ b/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.linux.txt b/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.linux.txt index 8ccb23e14d..f037a17af6 100644 --- a/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.linux.txt +++ b/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.txt b/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.txt +++ b/ydb/public/api/client/yc_private/servicecontrol/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/CMakeLists.txt b/ydb/public/api/client/yc_public/CMakeLists.txt index 08fdd2ac50..04b73ea42a 100644 --- a/ydb/public/api/client/yc_public/CMakeLists.txt +++ b/ydb/public/api/client/yc_public/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/common/CMakeLists.darwin.txt b/ydb/public/api/client/yc_public/common/CMakeLists.darwin.txt index 80619e0736..97c9af0177 100644 --- a/ydb/public/api/client/yc_public/common/CMakeLists.darwin.txt +++ b/ydb/public/api/client/yc_public/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/common/CMakeLists.linux-aarch64.txt b/ydb/public/api/client/yc_public/common/CMakeLists.linux-aarch64.txt index 2b330b9fa0..e3e0b5f6c7 100644 --- a/ydb/public/api/client/yc_public/common/CMakeLists.linux-aarch64.txt +++ b/ydb/public/api/client/yc_public/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/common/CMakeLists.linux.txt b/ydb/public/api/client/yc_public/common/CMakeLists.linux.txt index 2b330b9fa0..e3e0b5f6c7 100644 --- a/ydb/public/api/client/yc_public/common/CMakeLists.linux.txt +++ b/ydb/public/api/client/yc_public/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/common/CMakeLists.txt b/ydb/public/api/client/yc_public/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/api/client/yc_public/common/CMakeLists.txt +++ b/ydb/public/api/client/yc_public/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/events/CMakeLists.darwin.txt b/ydb/public/api/client/yc_public/events/CMakeLists.darwin.txt index 8a85f9e72a..8ee48f07aa 100644 --- a/ydb/public/api/client/yc_public/events/CMakeLists.darwin.txt +++ b/ydb/public/api/client/yc_public/events/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/events/CMakeLists.linux-aarch64.txt b/ydb/public/api/client/yc_public/events/CMakeLists.linux-aarch64.txt index 006edee241..087d2b8ab6 100644 --- a/ydb/public/api/client/yc_public/events/CMakeLists.linux-aarch64.txt +++ b/ydb/public/api/client/yc_public/events/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/events/CMakeLists.linux.txt b/ydb/public/api/client/yc_public/events/CMakeLists.linux.txt index 006edee241..087d2b8ab6 100644 --- a/ydb/public/api/client/yc_public/events/CMakeLists.linux.txt +++ b/ydb/public/api/client/yc_public/events/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/events/CMakeLists.txt b/ydb/public/api/client/yc_public/events/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/api/client/yc_public/events/CMakeLists.txt +++ b/ydb/public/api/client/yc_public/events/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/iam/CMakeLists.darwin.txt b/ydb/public/api/client/yc_public/iam/CMakeLists.darwin.txt index 4771591364..69d0a61ad6 100644 --- a/ydb/public/api/client/yc_public/iam/CMakeLists.darwin.txt +++ b/ydb/public/api/client/yc_public/iam/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/iam/CMakeLists.linux-aarch64.txt b/ydb/public/api/client/yc_public/iam/CMakeLists.linux-aarch64.txt index d1ea27ae66..9607b65587 100644 --- a/ydb/public/api/client/yc_public/iam/CMakeLists.linux-aarch64.txt +++ b/ydb/public/api/client/yc_public/iam/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/iam/CMakeLists.linux.txt b/ydb/public/api/client/yc_public/iam/CMakeLists.linux.txt index d1ea27ae66..9607b65587 100644 --- a/ydb/public/api/client/yc_public/iam/CMakeLists.linux.txt +++ b/ydb/public/api/client/yc_public/iam/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/iam/CMakeLists.txt b/ydb/public/api/client/yc_public/iam/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/api/client/yc_public/iam/CMakeLists.txt +++ b/ydb/public/api/client/yc_public/iam/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/logging/CMakeLists.darwin.txt b/ydb/public/api/client/yc_public/logging/CMakeLists.darwin.txt index fdad3bf8d0..e314f886aa 100644 --- a/ydb/public/api/client/yc_public/logging/CMakeLists.darwin.txt +++ b/ydb/public/api/client/yc_public/logging/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/logging/CMakeLists.linux-aarch64.txt b/ydb/public/api/client/yc_public/logging/CMakeLists.linux-aarch64.txt index a581a1ee4b..5b9fa0e12c 100644 --- a/ydb/public/api/client/yc_public/logging/CMakeLists.linux-aarch64.txt +++ b/ydb/public/api/client/yc_public/logging/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/logging/CMakeLists.linux.txt b/ydb/public/api/client/yc_public/logging/CMakeLists.linux.txt index a581a1ee4b..5b9fa0e12c 100644 --- a/ydb/public/api/client/yc_public/logging/CMakeLists.linux.txt +++ b/ydb/public/api/client/yc_public/logging/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/client/yc_public/logging/CMakeLists.txt b/ydb/public/api/client/yc_public/logging/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/api/client/yc_public/logging/CMakeLists.txt +++ b/ydb/public/api/client/yc_public/logging/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/grpc/CMakeLists.darwin.txt b/ydb/public/api/grpc/CMakeLists.darwin.txt index a2744da2d9..26425806e7 100644 --- a/ydb/public/api/grpc/CMakeLists.darwin.txt +++ b/ydb/public/api/grpc/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/grpc/CMakeLists.linux-aarch64.txt b/ydb/public/api/grpc/CMakeLists.linux-aarch64.txt index 013ee43091..3c8827c394 100644 --- a/ydb/public/api/grpc/CMakeLists.linux-aarch64.txt +++ b/ydb/public/api/grpc/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/grpc/CMakeLists.linux.txt b/ydb/public/api/grpc/CMakeLists.linux.txt index 013ee43091..3c8827c394 100644 --- a/ydb/public/api/grpc/CMakeLists.linux.txt +++ b/ydb/public/api/grpc/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/grpc/CMakeLists.txt b/ydb/public/api/grpc/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/api/grpc/CMakeLists.txt +++ b/ydb/public/api/grpc/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/grpc/draft/CMakeLists.darwin.txt b/ydb/public/api/grpc/draft/CMakeLists.darwin.txt index c6ba93ed2f..59cb01e714 100644 --- a/ydb/public/api/grpc/draft/CMakeLists.darwin.txt +++ b/ydb/public/api/grpc/draft/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/grpc/draft/CMakeLists.linux-aarch64.txt b/ydb/public/api/grpc/draft/CMakeLists.linux-aarch64.txt index c86509cbca..09e5a65e30 100644 --- a/ydb/public/api/grpc/draft/CMakeLists.linux-aarch64.txt +++ b/ydb/public/api/grpc/draft/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/grpc/draft/CMakeLists.linux.txt b/ydb/public/api/grpc/draft/CMakeLists.linux.txt index c86509cbca..09e5a65e30 100644 --- a/ydb/public/api/grpc/draft/CMakeLists.linux.txt +++ b/ydb/public/api/grpc/draft/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/grpc/draft/CMakeLists.txt b/ydb/public/api/grpc/draft/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/api/grpc/draft/CMakeLists.txt +++ b/ydb/public/api/grpc/draft/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/protos/CMakeLists.darwin.txt b/ydb/public/api/protos/CMakeLists.darwin.txt index b910f14841..c7b262a8c9 100644 --- a/ydb/public/api/protos/CMakeLists.darwin.txt +++ b/ydb/public/api/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/protos/CMakeLists.linux-aarch64.txt b/ydb/public/api/protos/CMakeLists.linux-aarch64.txt index bd246e91ff..a2527907d1 100644 --- a/ydb/public/api/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/public/api/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/protos/CMakeLists.linux.txt b/ydb/public/api/protos/CMakeLists.linux.txt index bd246e91ff..a2527907d1 100644 --- a/ydb/public/api/protos/CMakeLists.linux.txt +++ b/ydb/public/api/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/protos/CMakeLists.txt b/ydb/public/api/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/api/protos/CMakeLists.txt +++ b/ydb/public/api/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/protos/annotations/CMakeLists.darwin.txt b/ydb/public/api/protos/annotations/CMakeLists.darwin.txt index db0117fa8c..1410593d87 100644 --- a/ydb/public/api/protos/annotations/CMakeLists.darwin.txt +++ b/ydb/public/api/protos/annotations/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/protos/annotations/CMakeLists.linux-aarch64.txt b/ydb/public/api/protos/annotations/CMakeLists.linux-aarch64.txt index 5b1ac35ef2..bfc291c5be 100644 --- a/ydb/public/api/protos/annotations/CMakeLists.linux-aarch64.txt +++ b/ydb/public/api/protos/annotations/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/protos/annotations/CMakeLists.linux.txt b/ydb/public/api/protos/annotations/CMakeLists.linux.txt index 5b1ac35ef2..bfc291c5be 100644 --- a/ydb/public/api/protos/annotations/CMakeLists.linux.txt +++ b/ydb/public/api/protos/annotations/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/protos/annotations/CMakeLists.txt b/ydb/public/api/protos/annotations/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/api/protos/annotations/CMakeLists.txt +++ b/ydb/public/api/protos/annotations/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/protos/out/CMakeLists.darwin.txt b/ydb/public/api/protos/out/CMakeLists.darwin.txt index c5754d5047..09f1a2240c 100644 --- a/ydb/public/api/protos/out/CMakeLists.darwin.txt +++ b/ydb/public/api/protos/out/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/protos/out/CMakeLists.linux-aarch64.txt b/ydb/public/api/protos/out/CMakeLists.linux-aarch64.txt index 84851b83c0..da29a4658e 100644 --- a/ydb/public/api/protos/out/CMakeLists.linux-aarch64.txt +++ b/ydb/public/api/protos/out/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/protos/out/CMakeLists.linux.txt b/ydb/public/api/protos/out/CMakeLists.linux.txt index 84851b83c0..da29a4658e 100644 --- a/ydb/public/api/protos/out/CMakeLists.linux.txt +++ b/ydb/public/api/protos/out/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/api/protos/out/CMakeLists.txt b/ydb/public/api/protos/out/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/api/protos/out/CMakeLists.txt +++ b/ydb/public/api/protos/out/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/CMakeLists.txt b/ydb/public/lib/CMakeLists.txt index 9e29537699..90a5fb4c19 100644 --- a/ydb/public/lib/CMakeLists.txt +++ b/ydb/public/lib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/base/CMakeLists.darwin.txt b/ydb/public/lib/base/CMakeLists.darwin.txt index 91e881d399..a00fef6402 100644 --- a/ydb/public/lib/base/CMakeLists.darwin.txt +++ b/ydb/public/lib/base/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/base/CMakeLists.linux-aarch64.txt b/ydb/public/lib/base/CMakeLists.linux-aarch64.txt index 55f00debc4..898f02c041 100644 --- a/ydb/public/lib/base/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/base/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/base/CMakeLists.linux.txt b/ydb/public/lib/base/CMakeLists.linux.txt index 55f00debc4..898f02c041 100644 --- a/ydb/public/lib/base/CMakeLists.linux.txt +++ b/ydb/public/lib/base/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/base/CMakeLists.txt b/ydb/public/lib/base/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/base/CMakeLists.txt +++ b/ydb/public/lib/base/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/deprecated/CMakeLists.txt b/ydb/public/lib/deprecated/CMakeLists.txt index e13c69715c..c6558dbb54 100644 --- a/ydb/public/lib/deprecated/CMakeLists.txt +++ b/ydb/public/lib/deprecated/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/deprecated/client/CMakeLists.darwin.txt b/ydb/public/lib/deprecated/client/CMakeLists.darwin.txt index 047b48cb6b..f113cd80ea 100644 --- a/ydb/public/lib/deprecated/client/CMakeLists.darwin.txt +++ b/ydb/public/lib/deprecated/client/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/deprecated/client/CMakeLists.linux-aarch64.txt b/ydb/public/lib/deprecated/client/CMakeLists.linux-aarch64.txt index 8c5513f29f..97272ed228 100644 --- a/ydb/public/lib/deprecated/client/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/deprecated/client/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/deprecated/client/CMakeLists.linux.txt b/ydb/public/lib/deprecated/client/CMakeLists.linux.txt index 8c5513f29f..97272ed228 100644 --- a/ydb/public/lib/deprecated/client/CMakeLists.linux.txt +++ b/ydb/public/lib/deprecated/client/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/deprecated/client/CMakeLists.txt b/ydb/public/lib/deprecated/client/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/deprecated/client/CMakeLists.txt +++ b/ydb/public/lib/deprecated/client/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/deprecated/kicli/CMakeLists.darwin.txt b/ydb/public/lib/deprecated/kicli/CMakeLists.darwin.txt index 44ca41f859..5c49ae22e1 100644 --- a/ydb/public/lib/deprecated/kicli/CMakeLists.darwin.txt +++ b/ydb/public/lib/deprecated/kicli/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/deprecated/kicli/CMakeLists.linux-aarch64.txt b/ydb/public/lib/deprecated/kicli/CMakeLists.linux-aarch64.txt index 375378cc9e..290faa8335 100644 --- a/ydb/public/lib/deprecated/kicli/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/deprecated/kicli/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/deprecated/kicli/CMakeLists.linux.txt b/ydb/public/lib/deprecated/kicli/CMakeLists.linux.txt index 375378cc9e..290faa8335 100644 --- a/ydb/public/lib/deprecated/kicli/CMakeLists.linux.txt +++ b/ydb/public/lib/deprecated/kicli/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/deprecated/kicli/CMakeLists.txt b/ydb/public/lib/deprecated/kicli/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/deprecated/kicli/CMakeLists.txt +++ b/ydb/public/lib/deprecated/kicli/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/deprecated/kicli/ut/CMakeLists.darwin.txt b/ydb/public/lib/deprecated/kicli/ut/CMakeLists.darwin.txt index 303a38ac60..9d5b1d950b 100644 --- a/ydb/public/lib/deprecated/kicli/ut/CMakeLists.darwin.txt +++ b/ydb/public/lib/deprecated/kicli/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/deprecated/kicli/ut/CMakeLists.linux-aarch64.txt b/ydb/public/lib/deprecated/kicli/ut/CMakeLists.linux-aarch64.txt index 3c6bf82379..3a045e9017 100644 --- a/ydb/public/lib/deprecated/kicli/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/deprecated/kicli/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/deprecated/kicli/ut/CMakeLists.linux.txt b/ydb/public/lib/deprecated/kicli/ut/CMakeLists.linux.txt index cab158633a..3c77b303c0 100644 --- a/ydb/public/lib/deprecated/kicli/ut/CMakeLists.linux.txt +++ b/ydb/public/lib/deprecated/kicli/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/deprecated/kicli/ut/CMakeLists.txt b/ydb/public/lib/deprecated/kicli/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/deprecated/kicli/ut/CMakeLists.txt +++ b/ydb/public/lib/deprecated/kicli/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/experimental/CMakeLists.darwin.txt b/ydb/public/lib/experimental/CMakeLists.darwin.txt index 044dbe35d6..da9305bb1e 100644 --- a/ydb/public/lib/experimental/CMakeLists.darwin.txt +++ b/ydb/public/lib/experimental/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/experimental/CMakeLists.linux-aarch64.txt b/ydb/public/lib/experimental/CMakeLists.linux-aarch64.txt index b6de54fe14..655ff7dc3f 100644 --- a/ydb/public/lib/experimental/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/experimental/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/experimental/CMakeLists.linux.txt b/ydb/public/lib/experimental/CMakeLists.linux.txt index b6de54fe14..655ff7dc3f 100644 --- a/ydb/public/lib/experimental/CMakeLists.linux.txt +++ b/ydb/public/lib/experimental/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/experimental/CMakeLists.txt b/ydb/public/lib/experimental/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/experimental/CMakeLists.txt +++ b/ydb/public/lib/experimental/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/fq/CMakeLists.darwin.txt b/ydb/public/lib/fq/CMakeLists.darwin.txt index 06d407b7d9..4690812914 100644 --- a/ydb/public/lib/fq/CMakeLists.darwin.txt +++ b/ydb/public/lib/fq/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/fq/CMakeLists.linux-aarch64.txt b/ydb/public/lib/fq/CMakeLists.linux-aarch64.txt index a9156f7862..652d8d5a5e 100644 --- a/ydb/public/lib/fq/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/fq/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/fq/CMakeLists.linux.txt b/ydb/public/lib/fq/CMakeLists.linux.txt index a9156f7862..652d8d5a5e 100644 --- a/ydb/public/lib/fq/CMakeLists.linux.txt +++ b/ydb/public/lib/fq/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/fq/CMakeLists.txt b/ydb/public/lib/fq/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/fq/CMakeLists.txt +++ b/ydb/public/lib/fq/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/idx_test/CMakeLists.darwin.txt b/ydb/public/lib/idx_test/CMakeLists.darwin.txt index 8e1e89668d..057a149170 100644 --- a/ydb/public/lib/idx_test/CMakeLists.darwin.txt +++ b/ydb/public/lib/idx_test/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/idx_test/CMakeLists.linux-aarch64.txt b/ydb/public/lib/idx_test/CMakeLists.linux-aarch64.txt index 8e6bca8833..6211e86453 100644 --- a/ydb/public/lib/idx_test/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/idx_test/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/idx_test/CMakeLists.linux.txt b/ydb/public/lib/idx_test/CMakeLists.linux.txt index 8e6bca8833..6211e86453 100644 --- a/ydb/public/lib/idx_test/CMakeLists.linux.txt +++ b/ydb/public/lib/idx_test/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/idx_test/CMakeLists.txt b/ydb/public/lib/idx_test/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/idx_test/CMakeLists.txt +++ b/ydb/public/lib/idx_test/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/idx_test/ut/CMakeLists.darwin.txt b/ydb/public/lib/idx_test/ut/CMakeLists.darwin.txt index b2a05177f1..ec7ebf6dbe 100644 --- a/ydb/public/lib/idx_test/ut/CMakeLists.darwin.txt +++ b/ydb/public/lib/idx_test/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/idx_test/ut/CMakeLists.linux-aarch64.txt b/ydb/public/lib/idx_test/ut/CMakeLists.linux-aarch64.txt index 7d2bfbffd1..1d0aa30134 100644 --- a/ydb/public/lib/idx_test/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/idx_test/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/idx_test/ut/CMakeLists.linux.txt b/ydb/public/lib/idx_test/ut/CMakeLists.linux.txt index b8203dc35c..1e5d04e03c 100644 --- a/ydb/public/lib/idx_test/ut/CMakeLists.linux.txt +++ b/ydb/public/lib/idx_test/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/idx_test/ut/CMakeLists.txt b/ydb/public/lib/idx_test/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/idx_test/ut/CMakeLists.txt +++ b/ydb/public/lib/idx_test/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/json_value/CMakeLists.darwin.txt b/ydb/public/lib/json_value/CMakeLists.darwin.txt index 704967228b..90c26f006f 100644 --- a/ydb/public/lib/json_value/CMakeLists.darwin.txt +++ b/ydb/public/lib/json_value/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/json_value/CMakeLists.linux-aarch64.txt b/ydb/public/lib/json_value/CMakeLists.linux-aarch64.txt index 7d134572ea..d795b25344 100644 --- a/ydb/public/lib/json_value/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/json_value/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/json_value/CMakeLists.linux.txt b/ydb/public/lib/json_value/CMakeLists.linux.txt index 7d134572ea..d795b25344 100644 --- a/ydb/public/lib/json_value/CMakeLists.linux.txt +++ b/ydb/public/lib/json_value/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/json_value/CMakeLists.txt b/ydb/public/lib/json_value/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/json_value/CMakeLists.txt +++ b/ydb/public/lib/json_value/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/json_value/ut/CMakeLists.darwin.txt b/ydb/public/lib/json_value/ut/CMakeLists.darwin.txt index c0c5b7be77..0bd0e13020 100644 --- a/ydb/public/lib/json_value/ut/CMakeLists.darwin.txt +++ b/ydb/public/lib/json_value/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/json_value/ut/CMakeLists.linux-aarch64.txt b/ydb/public/lib/json_value/ut/CMakeLists.linux-aarch64.txt index 2361a1eaa7..3b6b85a4a1 100644 --- a/ydb/public/lib/json_value/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/json_value/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/json_value/ut/CMakeLists.linux.txt b/ydb/public/lib/json_value/ut/CMakeLists.linux.txt index 177282e1c4..65c09a5941 100644 --- a/ydb/public/lib/json_value/ut/CMakeLists.linux.txt +++ b/ydb/public/lib/json_value/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/json_value/ut/CMakeLists.txt b/ydb/public/lib/json_value/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/json_value/ut/CMakeLists.txt +++ b/ydb/public/lib/json_value/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/jwt/CMakeLists.darwin.txt b/ydb/public/lib/jwt/CMakeLists.darwin.txt index 40aa029740..a8da4b49f7 100644 --- a/ydb/public/lib/jwt/CMakeLists.darwin.txt +++ b/ydb/public/lib/jwt/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/jwt/CMakeLists.linux-aarch64.txt b/ydb/public/lib/jwt/CMakeLists.linux-aarch64.txt index 66252cf67a..276c34d4fb 100644 --- a/ydb/public/lib/jwt/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/jwt/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/jwt/CMakeLists.linux.txt b/ydb/public/lib/jwt/CMakeLists.linux.txt index 66252cf67a..276c34d4fb 100644 --- a/ydb/public/lib/jwt/CMakeLists.linux.txt +++ b/ydb/public/lib/jwt/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/jwt/CMakeLists.txt b/ydb/public/lib/jwt/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/jwt/CMakeLists.txt +++ b/ydb/public/lib/jwt/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/operation_id/CMakeLists.darwin.txt b/ydb/public/lib/operation_id/CMakeLists.darwin.txt index f1618439af..b10c999db5 100644 --- a/ydb/public/lib/operation_id/CMakeLists.darwin.txt +++ b/ydb/public/lib/operation_id/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/operation_id/CMakeLists.linux-aarch64.txt b/ydb/public/lib/operation_id/CMakeLists.linux-aarch64.txt index 0fc4430805..72e8660020 100644 --- a/ydb/public/lib/operation_id/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/operation_id/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/operation_id/CMakeLists.linux.txt b/ydb/public/lib/operation_id/CMakeLists.linux.txt index 0fc4430805..72e8660020 100644 --- a/ydb/public/lib/operation_id/CMakeLists.linux.txt +++ b/ydb/public/lib/operation_id/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/operation_id/CMakeLists.txt b/ydb/public/lib/operation_id/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/operation_id/CMakeLists.txt +++ b/ydb/public/lib/operation_id/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/operation_id/protos/CMakeLists.darwin.txt b/ydb/public/lib/operation_id/protos/CMakeLists.darwin.txt index a497bff482..13046b415d 100644 --- a/ydb/public/lib/operation_id/protos/CMakeLists.darwin.txt +++ b/ydb/public/lib/operation_id/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/operation_id/protos/CMakeLists.linux-aarch64.txt b/ydb/public/lib/operation_id/protos/CMakeLists.linux-aarch64.txt index 1ffc92599e..9b7839b680 100644 --- a/ydb/public/lib/operation_id/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/operation_id/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/operation_id/protos/CMakeLists.linux.txt b/ydb/public/lib/operation_id/protos/CMakeLists.linux.txt index 1ffc92599e..9b7839b680 100644 --- a/ydb/public/lib/operation_id/protos/CMakeLists.linux.txt +++ b/ydb/public/lib/operation_id/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/operation_id/protos/CMakeLists.txt b/ydb/public/lib/operation_id/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/operation_id/protos/CMakeLists.txt +++ b/ydb/public/lib/operation_id/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/operation_id/ut/CMakeLists.darwin.txt b/ydb/public/lib/operation_id/ut/CMakeLists.darwin.txt index cc4bd33d8f..ffb14b48fa 100644 --- a/ydb/public/lib/operation_id/ut/CMakeLists.darwin.txt +++ b/ydb/public/lib/operation_id/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/operation_id/ut/CMakeLists.linux-aarch64.txt b/ydb/public/lib/operation_id/ut/CMakeLists.linux-aarch64.txt index 4af5454359..dfeaa5b535 100644 --- a/ydb/public/lib/operation_id/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/operation_id/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/operation_id/ut/CMakeLists.linux.txt b/ydb/public/lib/operation_id/ut/CMakeLists.linux.txt index 294067d9cd..808737719d 100644 --- a/ydb/public/lib/operation_id/ut/CMakeLists.linux.txt +++ b/ydb/public/lib/operation_id/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/operation_id/ut/CMakeLists.txt b/ydb/public/lib/operation_id/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/operation_id/ut/CMakeLists.txt +++ b/ydb/public/lib/operation_id/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/scheme_types/CMakeLists.darwin.txt b/ydb/public/lib/scheme_types/CMakeLists.darwin.txt index 489aec2930..80504edf48 100644 --- a/ydb/public/lib/scheme_types/CMakeLists.darwin.txt +++ b/ydb/public/lib/scheme_types/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/scheme_types/CMakeLists.linux-aarch64.txt b/ydb/public/lib/scheme_types/CMakeLists.linux-aarch64.txt index 549cd938a6..48f32db022 100644 --- a/ydb/public/lib/scheme_types/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/scheme_types/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/scheme_types/CMakeLists.linux.txt b/ydb/public/lib/scheme_types/CMakeLists.linux.txt index 549cd938a6..48f32db022 100644 --- a/ydb/public/lib/scheme_types/CMakeLists.linux.txt +++ b/ydb/public/lib/scheme_types/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/scheme_types/CMakeLists.txt b/ydb/public/lib/scheme_types/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/scheme_types/CMakeLists.txt +++ b/ydb/public/lib/scheme_types/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/validation/CMakeLists.darwin.txt b/ydb/public/lib/validation/CMakeLists.darwin.txt index 1919b69f25..85eb93cca0 100644 --- a/ydb/public/lib/validation/CMakeLists.darwin.txt +++ b/ydb/public/lib/validation/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/validation/CMakeLists.linux-aarch64.txt b/ydb/public/lib/validation/CMakeLists.linux-aarch64.txt index bee478fd5a..500f1f1479 100644 --- a/ydb/public/lib/validation/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/validation/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/validation/CMakeLists.linux.txt b/ydb/public/lib/validation/CMakeLists.linux.txt index 743b02dc60..a420db7428 100644 --- a/ydb/public/lib/validation/CMakeLists.linux.txt +++ b/ydb/public/lib/validation/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/validation/CMakeLists.txt b/ydb/public/lib/validation/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/validation/CMakeLists.txt +++ b/ydb/public/lib/validation/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/validation/ut/CMakeLists.darwin.txt b/ydb/public/lib/validation/ut/CMakeLists.darwin.txt index da7292ea50..6cebc2d7d3 100644 --- a/ydb/public/lib/validation/ut/CMakeLists.darwin.txt +++ b/ydb/public/lib/validation/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/validation/ut/CMakeLists.linux-aarch64.txt b/ydb/public/lib/validation/ut/CMakeLists.linux-aarch64.txt index 2d1154e5d5..c8cca377ea 100644 --- a/ydb/public/lib/validation/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/validation/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/validation/ut/CMakeLists.linux.txt b/ydb/public/lib/validation/ut/CMakeLists.linux.txt index 385ad65ead..99ddb68be6 100644 --- a/ydb/public/lib/validation/ut/CMakeLists.linux.txt +++ b/ydb/public/lib/validation/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/validation/ut/CMakeLists.txt b/ydb/public/lib/validation/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/validation/ut/CMakeLists.txt +++ b/ydb/public/lib/validation/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/validation/ut/protos/CMakeLists.darwin.txt b/ydb/public/lib/validation/ut/protos/CMakeLists.darwin.txt index b2d55367d3..2fcf511013 100644 --- a/ydb/public/lib/validation/ut/protos/CMakeLists.darwin.txt +++ b/ydb/public/lib/validation/ut/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/validation/ut/protos/CMakeLists.linux-aarch64.txt b/ydb/public/lib/validation/ut/protos/CMakeLists.linux-aarch64.txt index eaea4fed1f..4d141d7023 100644 --- a/ydb/public/lib/validation/ut/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/validation/ut/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/validation/ut/protos/CMakeLists.linux.txt b/ydb/public/lib/validation/ut/protos/CMakeLists.linux.txt index eaea4fed1f..4d141d7023 100644 --- a/ydb/public/lib/validation/ut/protos/CMakeLists.linux.txt +++ b/ydb/public/lib/validation/ut/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/validation/ut/protos/CMakeLists.txt b/ydb/public/lib/validation/ut/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/validation/ut/protos/CMakeLists.txt +++ b/ydb/public/lib/validation/ut/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/value/CMakeLists.darwin.txt b/ydb/public/lib/value/CMakeLists.darwin.txt index 50e7125445..bf3d5862d7 100644 --- a/ydb/public/lib/value/CMakeLists.darwin.txt +++ b/ydb/public/lib/value/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/value/CMakeLists.linux-aarch64.txt b/ydb/public/lib/value/CMakeLists.linux-aarch64.txt index d77df46d22..bb738d2d13 100644 --- a/ydb/public/lib/value/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/value/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/value/CMakeLists.linux.txt b/ydb/public/lib/value/CMakeLists.linux.txt index d77df46d22..bb738d2d13 100644 --- a/ydb/public/lib/value/CMakeLists.linux.txt +++ b/ydb/public/lib/value/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/value/CMakeLists.txt b/ydb/public/lib/value/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/value/CMakeLists.txt +++ b/ydb/public/lib/value/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/CMakeLists.txt b/ydb/public/lib/ydb_cli/CMakeLists.txt index f7a1456c01..3e09b73dc8 100644 --- a/ydb/public/lib/ydb_cli/CMakeLists.txt +++ b/ydb/public/lib/ydb_cli/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/commands/CMakeLists.darwin.txt b/ydb/public/lib/ydb_cli/commands/CMakeLists.darwin.txt index 01ecb9370c..aad6af1fb5 100644 --- a/ydb/public/lib/ydb_cli/commands/CMakeLists.darwin.txt +++ b/ydb/public/lib/ydb_cli/commands/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/commands/CMakeLists.linux-aarch64.txt b/ydb/public/lib/ydb_cli/commands/CMakeLists.linux-aarch64.txt index 5f4ce57b47..5fdb197584 100644 --- a/ydb/public/lib/ydb_cli/commands/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/ydb_cli/commands/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/commands/CMakeLists.linux.txt b/ydb/public/lib/ydb_cli/commands/CMakeLists.linux.txt index 5f4ce57b47..5fdb197584 100644 --- a/ydb/public/lib/ydb_cli/commands/CMakeLists.linux.txt +++ b/ydb/public/lib/ydb_cli/commands/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/commands/CMakeLists.txt b/ydb/public/lib/ydb_cli/commands/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/ydb_cli/commands/CMakeLists.txt +++ b/ydb/public/lib/ydb_cli/commands/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/common/CMakeLists.darwin.txt b/ydb/public/lib/ydb_cli/common/CMakeLists.darwin.txt index 5085bc0b28..3c4fd1eb8b 100644 --- a/ydb/public/lib/ydb_cli/common/CMakeLists.darwin.txt +++ b/ydb/public/lib/ydb_cli/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/common/CMakeLists.linux-aarch64.txt b/ydb/public/lib/ydb_cli/common/CMakeLists.linux-aarch64.txt index 730c5f6f55..82949275ba 100644 --- a/ydb/public/lib/ydb_cli/common/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/ydb_cli/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/common/CMakeLists.linux.txt b/ydb/public/lib/ydb_cli/common/CMakeLists.linux.txt index 730c5f6f55..82949275ba 100644 --- a/ydb/public/lib/ydb_cli/common/CMakeLists.linux.txt +++ b/ydb/public/lib/ydb_cli/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/common/CMakeLists.txt b/ydb/public/lib/ydb_cli/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/ydb_cli/common/CMakeLists.txt +++ b/ydb/public/lib/ydb_cli/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/common/ut/CMakeLists.darwin.txt b/ydb/public/lib/ydb_cli/common/ut/CMakeLists.darwin.txt index 30036ff7e4..ad8089657c 100644 --- a/ydb/public/lib/ydb_cli/common/ut/CMakeLists.darwin.txt +++ b/ydb/public/lib/ydb_cli/common/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/common/ut/CMakeLists.linux-aarch64.txt b/ydb/public/lib/ydb_cli/common/ut/CMakeLists.linux-aarch64.txt index 2001e90d25..9ee6cee718 100644 --- a/ydb/public/lib/ydb_cli/common/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/ydb_cli/common/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/common/ut/CMakeLists.linux.txt b/ydb/public/lib/ydb_cli/common/ut/CMakeLists.linux.txt index 21ae2fd234..daa4d8bbc3 100644 --- a/ydb/public/lib/ydb_cli/common/ut/CMakeLists.linux.txt +++ b/ydb/public/lib/ydb_cli/common/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/common/ut/CMakeLists.txt b/ydb/public/lib/ydb_cli/common/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/ydb_cli/common/ut/CMakeLists.txt +++ b/ydb/public/lib/ydb_cli/common/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/dump/CMakeLists.darwin.txt b/ydb/public/lib/ydb_cli/dump/CMakeLists.darwin.txt index 3d9e360472..a502b52604 100644 --- a/ydb/public/lib/ydb_cli/dump/CMakeLists.darwin.txt +++ b/ydb/public/lib/ydb_cli/dump/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/dump/CMakeLists.linux-aarch64.txt b/ydb/public/lib/ydb_cli/dump/CMakeLists.linux-aarch64.txt index b6293ef76c..73057a885c 100644 --- a/ydb/public/lib/ydb_cli/dump/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/ydb_cli/dump/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/dump/CMakeLists.linux.txt b/ydb/public/lib/ydb_cli/dump/CMakeLists.linux.txt index b6293ef76c..73057a885c 100644 --- a/ydb/public/lib/ydb_cli/dump/CMakeLists.linux.txt +++ b/ydb/public/lib/ydb_cli/dump/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/dump/CMakeLists.txt b/ydb/public/lib/ydb_cli/dump/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/ydb_cli/dump/CMakeLists.txt +++ b/ydb/public/lib/ydb_cli/dump/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/dump/util/CMakeLists.darwin.txt b/ydb/public/lib/ydb_cli/dump/util/CMakeLists.darwin.txt index 87a12a6e69..c8ce5a5267 100644 --- a/ydb/public/lib/ydb_cli/dump/util/CMakeLists.darwin.txt +++ b/ydb/public/lib/ydb_cli/dump/util/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/dump/util/CMakeLists.linux-aarch64.txt b/ydb/public/lib/ydb_cli/dump/util/CMakeLists.linux-aarch64.txt index bacc1a3b69..312f9ebe0c 100644 --- a/ydb/public/lib/ydb_cli/dump/util/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/ydb_cli/dump/util/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/dump/util/CMakeLists.linux.txt b/ydb/public/lib/ydb_cli/dump/util/CMakeLists.linux.txt index bacc1a3b69..312f9ebe0c 100644 --- a/ydb/public/lib/ydb_cli/dump/util/CMakeLists.linux.txt +++ b/ydb/public/lib/ydb_cli/dump/util/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/dump/util/CMakeLists.txt b/ydb/public/lib/ydb_cli/dump/util/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/ydb_cli/dump/util/CMakeLists.txt +++ b/ydb/public/lib/ydb_cli/dump/util/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/import/CMakeLists.darwin.txt b/ydb/public/lib/ydb_cli/import/CMakeLists.darwin.txt index 8febe5a8f0..1dad1b91e6 100644 --- a/ydb/public/lib/ydb_cli/import/CMakeLists.darwin.txt +++ b/ydb/public/lib/ydb_cli/import/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/import/CMakeLists.linux-aarch64.txt b/ydb/public/lib/ydb_cli/import/CMakeLists.linux-aarch64.txt index df15e4f250..4a2102b575 100644 --- a/ydb/public/lib/ydb_cli/import/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/ydb_cli/import/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/import/CMakeLists.linux.txt b/ydb/public/lib/ydb_cli/import/CMakeLists.linux.txt index df15e4f250..4a2102b575 100644 --- a/ydb/public/lib/ydb_cli/import/CMakeLists.linux.txt +++ b/ydb/public/lib/ydb_cli/import/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/import/CMakeLists.txt b/ydb/public/lib/ydb_cli/import/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/ydb_cli/import/CMakeLists.txt +++ b/ydb/public/lib/ydb_cli/import/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/topic/CMakeLists.darwin.txt b/ydb/public/lib/ydb_cli/topic/CMakeLists.darwin.txt index 3406061b07..7cc8f649ec 100644 --- a/ydb/public/lib/ydb_cli/topic/CMakeLists.darwin.txt +++ b/ydb/public/lib/ydb_cli/topic/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/topic/CMakeLists.linux-aarch64.txt b/ydb/public/lib/ydb_cli/topic/CMakeLists.linux-aarch64.txt index b108319add..cacdef0be3 100644 --- a/ydb/public/lib/ydb_cli/topic/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/ydb_cli/topic/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/topic/CMakeLists.linux.txt b/ydb/public/lib/ydb_cli/topic/CMakeLists.linux.txt index b108319add..cacdef0be3 100644 --- a/ydb/public/lib/ydb_cli/topic/CMakeLists.linux.txt +++ b/ydb/public/lib/ydb_cli/topic/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/topic/CMakeLists.txt b/ydb/public/lib/ydb_cli/topic/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/ydb_cli/topic/CMakeLists.txt +++ b/ydb/public/lib/ydb_cli/topic/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.darwin.txt b/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.darwin.txt index 972cd905bd..af36f788c8 100644 --- a/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.darwin.txt +++ b/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.linux-aarch64.txt b/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.linux-aarch64.txt index b5593367d9..8c6aecca09 100644 --- a/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.linux.txt b/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.linux.txt index db24898a9a..cc85414ff4 100644 --- a/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.linux.txt +++ b/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.txt b/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.txt +++ b/ydb/public/lib/ydb_cli/topic/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/yq/CMakeLists.darwin.txt b/ydb/public/lib/yq/CMakeLists.darwin.txt index dd0644b535..458d878479 100644 --- a/ydb/public/lib/yq/CMakeLists.darwin.txt +++ b/ydb/public/lib/yq/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/yq/CMakeLists.linux-aarch64.txt b/ydb/public/lib/yq/CMakeLists.linux-aarch64.txt index 185c38e6e0..b679e42518 100644 --- a/ydb/public/lib/yq/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/yq/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/yq/CMakeLists.linux.txt b/ydb/public/lib/yq/CMakeLists.linux.txt index 185c38e6e0..b679e42518 100644 --- a/ydb/public/lib/yq/CMakeLists.linux.txt +++ b/ydb/public/lib/yq/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/yq/CMakeLists.txt b/ydb/public/lib/yq/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/yq/CMakeLists.txt +++ b/ydb/public/lib/yq/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/yson_value/CMakeLists.darwin.txt b/ydb/public/lib/yson_value/CMakeLists.darwin.txt index 737b594745..269315ffd4 100644 --- a/ydb/public/lib/yson_value/CMakeLists.darwin.txt +++ b/ydb/public/lib/yson_value/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/yson_value/CMakeLists.linux-aarch64.txt b/ydb/public/lib/yson_value/CMakeLists.linux-aarch64.txt index 690fb03b3e..c7fea117db 100644 --- a/ydb/public/lib/yson_value/CMakeLists.linux-aarch64.txt +++ b/ydb/public/lib/yson_value/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/yson_value/CMakeLists.linux.txt b/ydb/public/lib/yson_value/CMakeLists.linux.txt index 690fb03b3e..c7fea117db 100644 --- a/ydb/public/lib/yson_value/CMakeLists.linux.txt +++ b/ydb/public/lib/yson_value/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/lib/yson_value/CMakeLists.txt b/ydb/public/lib/yson_value/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/lib/yson_value/CMakeLists.txt +++ b/ydb/public/lib/yson_value/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/CMakeLists.txt b/ydb/public/sdk/CMakeLists.txt index 48e888c46d..95ff6b8ebf 100644 --- a/ydb/public/sdk/CMakeLists.txt +++ b/ydb/public/sdk/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/CMakeLists.txt b/ydb/public/sdk/cpp/CMakeLists.txt index 823e8c453c..d96280795b 100644 --- a/ydb/public/sdk/cpp/CMakeLists.txt +++ b/ydb/public/sdk/cpp/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/CMakeLists.txt b/ydb/public/sdk/cpp/client/CMakeLists.txt index 8a2d3e5db5..7aabf17e6d 100644 --- a/ydb/public/sdk/cpp/client/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/draft/CMakeLists.darwin.txt index 88788ca375..5697958846 100644 --- a/ydb/public/sdk/cpp/client/draft/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/draft/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/draft/CMakeLists.linux-aarch64.txt index 1d43bb8918..a3c961c33e 100644 --- a/ydb/public/sdk/cpp/client/draft/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/draft/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/draft/CMakeLists.linux.txt index 1d43bb8918..a3c961c33e 100644 --- a/ydb/public/sdk/cpp/client/draft/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/draft/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/CMakeLists.txt b/ydb/public/sdk/cpp/client/draft/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/draft/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/draft/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.darwin.txt index 11a7b8af18..add20db9a7 100644 --- a/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.linux-aarch64.txt index 5c805dff18..9c543e1f5a 100644 --- a/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.linux.txt index a7c42139e1..41e649f144 100644 --- a/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.txt b/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.darwin.txt index d436332b10..0e98117100 100644 --- a/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.linux-aarch64.txt index 49ec853da9..178851bea1 100644 --- a/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.linux.txt index 49ec853da9..178851bea1 100644 --- a/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.txt b/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/draft/ydb_query/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.darwin.txt index 4e2c3d0522..edd1d71816 100644 --- a/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.linux-aarch64.txt index b9530d4d0b..d378e511ba 100644 --- a/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.linux.txt index b9530d4d0b..d378e511ba 100644 --- a/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.txt b/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/draft/ydb_query/impl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/extensions/CMakeLists.txt b/ydb/public/sdk/cpp/client/extensions/CMakeLists.txt index dc2684d9aa..a4112e4e26 100644 --- a/ydb/public/sdk/cpp/client/extensions/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/extensions/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.darwin.txt index ca9fb73f0b..c683afa9d9 100644 --- a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.linux-aarch64.txt index ad7eeba14e..a25c3f2565 100644 --- a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.linux.txt index ad7eeba14e..a25c3f2565 100644 --- a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.txt b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.darwin.txt index a749fc852e..5497431acf 100644 --- a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.linux-aarch64.txt index 9c4bac7e83..301b2a8779 100644 --- a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.linux.txt index 4521710e85..ebc1b7bad0 100644 --- a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.txt b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.darwin.txt index 54c85f1cbb..6ceecbe3fa 100644 --- a/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.linux-aarch64.txt index 89c31cca8a..d44b58e4a0 100644 --- a/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.linux.txt index 89c31cca8a..d44b58e4a0 100644 --- a/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.txt b/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/extensions/solomon_stats/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/iam/CMakeLists.darwin.txt index ce20d4fa57..62be1875e8 100644 --- a/ydb/public/sdk/cpp/client/iam/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/iam/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/iam/CMakeLists.linux-aarch64.txt index 4166be702f..e24b5fee8c 100644 --- a/ydb/public/sdk/cpp/client/iam/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/iam/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/iam/CMakeLists.linux.txt index 4166be702f..e24b5fee8c 100644 --- a/ydb/public/sdk/cpp/client/iam/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/iam/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam/CMakeLists.txt b/ydb/public/sdk/cpp/client/iam/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/iam/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/iam/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam/common/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/iam/common/CMakeLists.darwin.txt index 82884daaf9..6023cc4d7a 100644 --- a/ydb/public/sdk/cpp/client/iam/common/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/iam/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam/common/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/iam/common/CMakeLists.linux-aarch64.txt index 55d39dca75..0cbd8338cc 100644 --- a/ydb/public/sdk/cpp/client/iam/common/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/iam/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam/common/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/iam/common/CMakeLists.linux.txt index 55d39dca75..0cbd8338cc 100644 --- a/ydb/public/sdk/cpp/client/iam/common/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/iam/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam/common/CMakeLists.txt b/ydb/public/sdk/cpp/client/iam/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/iam/common/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/iam/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.darwin.txt index 5383a33327..120ee49bc0 100644 --- a/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.linux-aarch64.txt index 451b34bfc7..8935e26790 100644 --- a/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.linux.txt index 451b34bfc7..8935e26790 100644 --- a/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.txt b/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/iam/impl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam_private/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/iam_private/CMakeLists.darwin.txt index 59a9b5347c..808529d050 100644 --- a/ydb/public/sdk/cpp/client/iam_private/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/iam_private/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam_private/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/iam_private/CMakeLists.linux-aarch64.txt index 60ec4f4382..ab0d5cb257 100644 --- a/ydb/public/sdk/cpp/client/iam_private/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/iam_private/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam_private/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/iam_private/CMakeLists.linux.txt index 60ec4f4382..ab0d5cb257 100644 --- a/ydb/public/sdk/cpp/client/iam_private/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/iam_private/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/iam_private/CMakeLists.txt b/ydb/public/sdk/cpp/client/iam_private/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/iam_private/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/iam_private/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/CMakeLists.txt b/ydb/public/sdk/cpp/client/impl/CMakeLists.txt index 0e890f05d5..04b9fd9a8e 100644 --- a/ydb/public/sdk/cpp/client/impl/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/impl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.darwin.txt index cea98992c0..38f3925add 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.linux-aarch64.txt index 1a14f842be..97783b6720 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.linux.txt index 1a14f842be..97783b6720 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.txt b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.darwin.txt index 9187f5e2f6..153635c55f 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.linux-aarch64.txt index 4dc3e6af99..5ebe9de067 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.linux.txt index 103f407e60..adaae01bb8 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.txt b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/CMakeLists.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/CMakeLists.txt index 4102395cf3..7eb8172a98 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.darwin.txt index 5dad53d7ff..db531056fe 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.linux-aarch64.txt index 9cf7d80c4c..bcc55005d5 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.linux.txt index 9cf7d80c4c..bcc55005d5 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.darwin.txt index dc2db1dc8b..5648c5c60d 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.linux-aarch64.txt index 22b1e0aa4b..76c76abf6b 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.linux.txt index 22b1e0aa4b..76c76abf6b 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/db_driver_state/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.darwin.txt index fd5a310808..3b38b5dd05 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.linux-aarch64.txt index 0d283974c6..22b944a099 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.linux.txt index 0d283974c6..22b944a099 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/grpc_connections/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.darwin.txt index bebf883697..5516de05f2 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.linux-aarch64.txt index 4bcb3a602e..72bbb9c3fb 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.linux.txt index 4bcb3a602e..72bbb9c3fb 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/logger/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.darwin.txt index 446e0cb7d3..7e1a72acfd 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.linux-aarch64.txt index 853e165c29..811ad6329b 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.linux.txt index 853e165c29..811ad6329b 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/make_request/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.darwin.txt index 297855e187..af63d87c19 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.linux-aarch64.txt index 5e9847f832..b4e0edcb00 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.linux.txt index 5e9847f832..b4e0edcb00 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/plain_status/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.darwin.txt index e151f7965d..32bdede6c3 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.linux-aarch64.txt index 242c3dfab4..1b6ec7ae97 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.linux.txt index 242c3dfab4..1b6ec7ae97 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/thread_pool/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.darwin.txt index 746159a98b..66ef8dd6be 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.linux-aarch64.txt index fb180656dd..5b74a125f0 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.linux.txt index fb180656dd..5b74a125f0 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.txt b/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_internal/value_helpers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.darwin.txt index 594c5fd20d..a0f265545a 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.linux-aarch64.txt index a378722308..faf260cc0d 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.linux.txt index a378722308..faf260cc0d 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.txt b/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_stats/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/resources/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/resources/CMakeLists.darwin.txt index c4797f5819..06571cfac8 100644 --- a/ydb/public/sdk/cpp/client/resources/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/resources/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/resources/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/resources/CMakeLists.linux-aarch64.txt index 74945f4306..bb279af142 100644 --- a/ydb/public/sdk/cpp/client/resources/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/resources/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/resources/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/resources/CMakeLists.linux.txt index 74945f4306..bb279af142 100644 --- a/ydb/public/sdk/cpp/client/resources/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/resources/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/resources/CMakeLists.txt b/ydb/public/sdk/cpp/client/resources/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/resources/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/resources/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.darwin.txt index 6897269667..6a76525e38 100644 --- a/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.linux-aarch64.txt index c653bc375d..173988d3f1 100644 --- a/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.linux.txt index c653bc375d..173988d3f1 100644 --- a/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_common_client/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.darwin.txt index 0bc1d8533b..31eac1ee59 100644 --- a/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.linux-aarch64.txt index 1873812841..82f0fea6c1 100644 --- a/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.linux.txt index 1873812841..82f0fea6c1 100644 --- a/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_common_client/impl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.darwin.txt index 363aa8aaab..d9a6c08597 100644 --- a/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.linux-aarch64.txt index 58518e5656..7e9d9e936d 100644 --- a/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.linux.txt index 58518e5656..7e9d9e936d 100644 --- a/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_coordination/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.darwin.txt index c7d9242693..64a5bf8d84 100644 --- a/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.linux-aarch64.txt index b82b934787..c730cc6c8d 100644 --- a/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.linux.txt index f9a9680e72..c49f56d783 100644 --- a/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.darwin.txt index 7f30a5539a..158789e802 100644 --- a/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.linux-aarch64.txt index d698d42c20..c86ca4271f 100644 --- a/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.linux.txt index d698d42c20..c86ca4271f 100644 --- a/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_datastreams/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.darwin.txt index 796fc061c2..94a3588bae 100644 --- a/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.linux-aarch64.txt index 75eef75b02..5bee3a26ca 100644 --- a/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.linux.txt index 75eef75b02..5bee3a26ca 100644 --- a/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_discovery/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.darwin.txt index 6043aa41a9..a2ddf89edc 100644 --- a/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.linux-aarch64.txt index b62acccd9e..f126d65a8a 100644 --- a/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.linux.txt index b62acccd9e..f126d65a8a 100644 --- a/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_driver/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.darwin.txt index 5c22809ac7..ebe05a07db 100644 --- a/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.linux-aarch64.txt index d95c688919..d68eef82e5 100644 --- a/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.linux.txt index e01e07fde5..352bebcabc 100644 --- a/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.darwin.txt index 1e0fbdc689..3fce1d2787 100644 --- a/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.linux-aarch64.txt index 67129b6f32..cdfdacdb8b 100644 --- a/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.linux.txt index 67129b6f32..cdfdacdb8b 100644 --- a/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_export/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.darwin.txt index 4c1c4a4221..73c9f6df79 100644 --- a/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.linux-aarch64.txt index c8f57cc276..51e68871ee 100644 --- a/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.linux.txt index c8f57cc276..51e68871ee 100644 --- a/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_extension/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.darwin.txt index 2e1549f9b2..851a08ac8c 100644 --- a/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.linux-aarch64.txt index 32bc887b04..31b8e6a384 100644 --- a/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.linux.txt index 32bc887b04..31b8e6a384 100644 --- a/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_import/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.darwin.txt index b094d5fe1e..1fc6faf0fd 100644 --- a/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.linux-aarch64.txt index 9a1caac9bf..8838d06fd1 100644 --- a/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.linux.txt index 9a1caac9bf..8838d06fd1 100644 --- a/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_monitoring/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.darwin.txt index 85cd9fac3f..00f201a783 100644 --- a/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.linux-aarch64.txt index bcdf601289..753eb0a4a0 100644 --- a/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.linux.txt index bcdf601289..753eb0a4a0 100644 --- a/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_operation/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.darwin.txt index 6fee2c8111..6e0baafca0 100644 --- a/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.linux-aarch64.txt index 61b95cf481..0f4a911f12 100644 --- a/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.linux.txt index 61b95cf481..0f4a911f12 100644 --- a/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_params/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.darwin.txt index 69974649ae..03e90ec7de 100644 --- a/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.linux-aarch64.txt index 42c2e76c89..c58f55e03d 100644 --- a/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.linux.txt index 5e57773e86..f4c950a2c6 100644 --- a/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.darwin.txt index 17b5b202e0..66715d405f 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.linux-aarch64.txt index e0bba95fdb..9a59fdccc5 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.linux.txt index e0bba95fdb..9a59fdccc5 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.darwin.txt index b5d67ca599..ed9156bb8a 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.linux-aarch64.txt index 75e1a2a09e..27ae8ed56a 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.linux.txt index 75e1a2a09e..27ae8ed56a 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.darwin.txt index 94ca427b33..51b0228eba 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.linux-aarch64.txt index cd40893692..b819315be5 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.linux.txt index 925a45c098..612ab44c81 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.darwin.txt index 802507fc68..8dd05584d2 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.linux-aarch64.txt index 0b42f0e45f..77be59e122 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.linux.txt index 0b42f0e45f..77be59e122 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/ut_utils/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.darwin.txt index 099d7fe3b3..3c6aabf105 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.linux-aarch64.txt index 750f595b3d..b7119a9933 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.linux.txt index 07a4d1a77e..6f294fcf10 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.darwin.txt index b05f102af3..4d63969baa 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.linux-aarch64.txt index 49fe9d63d8..66a951e2cf 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.linux.txt index 49fe9d63d8..66a951e2cf 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_public/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.darwin.txt index ace9fc7214..06fc4a13eb 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.linux-aarch64.txt index 3da1ee1ed5..47a2fe8b31 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.linux.txt index 3da1ee1ed5..47a2fe8b31 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_public/codecs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.darwin.txt index 6dd0b54f95..430476e7ca 100644 --- a/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.linux-aarch64.txt index 1599271265..c44add7675 100644 --- a/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.linux.txt index 1599271265..c44add7675 100644 --- a/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_proto/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.darwin.txt index 6cb21e4424..32ed89c22f 100644 --- a/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.linux-aarch64.txt index 16e03ae07a..fd6c181ed0 100644 --- a/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.linux.txt index 16e03ae07a..fd6c181ed0 100644 --- a/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_rate_limiter/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.darwin.txt index a657e836a7..5fbb5097dd 100644 --- a/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.linux-aarch64.txt index 5656bb2408..daa99400b3 100644 --- a/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.linux.txt index 5656bb2408..daa99400b3 100644 --- a/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_result/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.darwin.txt index 0cd52012b8..c1a4dbbf60 100644 --- a/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.linux-aarch64.txt index cb4aa074dc..05360fdbb5 100644 --- a/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.linux.txt index 74a457760f..46e39d782b 100644 --- a/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.darwin.txt index 4dab11b134..14d1981daa 100644 --- a/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.linux-aarch64.txt index e96373c21b..4511da0b9b 100644 --- a/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.linux.txt index e96373c21b..4511da0b9b 100644 --- a/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_scheme/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.darwin.txt index d333a8dcfc..7ba935e927 100644 --- a/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.linux-aarch64.txt index 1f03541a1f..0211cc4ec3 100644 --- a/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.linux.txt index 1f03541a1f..0211cc4ec3 100644 --- a/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_table/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.darwin.txt index 600bc92591..50213bcb6f 100644 --- a/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.linux-aarch64.txt index fbb2041381..70b0b70fea 100644 --- a/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.linux.txt index fbb2041381..70b0b70fea 100644 --- a/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_table/impl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.darwin.txt index 5d12d2def4..15f141ce6c 100644 --- a/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.linux-aarch64.txt index 91e1f05d38..093bc872cc 100644 --- a/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.linux.txt index 91e1f05d38..093bc872cc 100644 --- a/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_table/query_stats/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.darwin.txt index 24274dcbee..cd3086e0ac 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.linux-aarch64.txt index 9e53ac0583..a3b7db21bd 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.linux.txt index 9e53ac0583..a3b7db21bd 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.darwin.txt index 7bbe814799..a417b3b9cd 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.linux-aarch64.txt index 460025b6e3..fe17569b4f 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.linux.txt index 460025b6e3..fe17569b4f 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/codecs/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.darwin.txt index 8e8d6bdb14..5ecc4a1483 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.linux-aarch64.txt index b39d1b55aa..85e3be9d82 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.linux.txt index b39d1b55aa..85e3be9d82 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/impl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.darwin.txt index 8699300a9b..2683f1f0b6 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.linux-aarch64.txt index 9c7fc5bcff..24552968ad 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.linux.txt index dc3c095432..5b9812b0d9 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_topic/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.darwin.txt index 6c77e0dfcc..742fc74401 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.linux-aarch64.txt index 8f961bc1d8..89005eb50e 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.linux.txt index 8f961bc1d8..89005eb50e 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.darwin.txt index e8098b93d0..184183b011 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.linux-aarch64.txt index 859b6abc39..49a91133f4 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.linux.txt index 859b6abc39..49a91133f4 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/credentials/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.darwin.txt index ce99236626..c2547bed27 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.linux-aarch64.txt index a30b78a4a6..b1f1f97bc6 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.linux.txt index a30b78a4a6..b1f1f97bc6 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/credentials/login/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.darwin.txt index 3d33b20fae..5ef919ffb1 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.linux-aarch64.txt index c03d1067fb..018121da8c 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.linux.txt index c03d1067fb..018121da8c 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/exceptions/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.darwin.txt index a2a58b44f2..49bdf0c926 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.linux-aarch64.txt index 728f5688e2..f72ba5ae39 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.linux.txt index 728f5688e2..f72ba5ae39 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/fatal_error_handlers/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.darwin.txt index f35ad1201d..a026d246d6 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.linux-aarch64.txt index de398eab5d..15a7c8f444 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.linux.txt index de398eab5d..15a7c8f444 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/operation/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.darwin.txt index 5f0f4383ee..2d15ee09be 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.linux-aarch64.txt index 40d7d05f04..34d6c9ca5f 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.linux.txt index 40d7d05f04..34d6c9ca5f 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_types/status/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.darwin.txt index 5e1a1bd390..8c4f45e101 100644 --- a/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.linux-aarch64.txt index 778e3d7787..69331e23bf 100644 --- a/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.linux.txt index 778e3d7787..69331e23bf 100644 --- a/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_value/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.darwin.txt index 89db1b9a0a..beb4332c36 100644 --- a/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.linux-aarch64.txt index 5b1f87c399..7ab4aa5892 100644 --- a/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.linux.txt index f6215ad65a..b67fde1ea3 100644 --- a/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.txt b/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.txt +++ b/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/CMakeLists.txt b/ydb/public/sdk/cpp/examples/CMakeLists.txt index 44b40cc9ea..35434afb09 100644 --- a/ydb/public/sdk/cpp/examples/CMakeLists.txt +++ b/ydb/public/sdk/cpp/examples/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.darwin.txt index 8f82dd03d2..9274e4baa7 100644 --- a/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.linux-aarch64.txt index 779736db3f..97f9990509 100644 --- a/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.linux.txt b/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.linux.txt index 255bb2ebdd..7d2c6cbaad 100644 --- a/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.txt b/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.txt +++ b/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.darwin.txt index 1ff8a2c7fe..b7790563d7 100644 --- a/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.linux-aarch64.txt index 577ebe9c3f..c50303fa95 100644 --- a/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.linux.txt b/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.linux.txt index b0d06f8150..08665a69e4 100644 --- a/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.txt b/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.txt +++ b/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/pagination/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/examples/pagination/CMakeLists.darwin.txt index e57c8a523d..dd78701bce 100644 --- a/ydb/public/sdk/cpp/examples/pagination/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/examples/pagination/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/pagination/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/examples/pagination/CMakeLists.linux-aarch64.txt index 92339665bb..16adf12d61 100644 --- a/ydb/public/sdk/cpp/examples/pagination/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/examples/pagination/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/pagination/CMakeLists.linux.txt b/ydb/public/sdk/cpp/examples/pagination/CMakeLists.linux.txt index 1037f5fb23..d123135d35 100644 --- a/ydb/public/sdk/cpp/examples/pagination/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/examples/pagination/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/pagination/CMakeLists.txt b/ydb/public/sdk/cpp/examples/pagination/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/examples/pagination/CMakeLists.txt +++ b/ydb/public/sdk/cpp/examples/pagination/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.darwin.txt index 653bc86787..8da9139560 100644 --- a/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.linux-aarch64.txt index 281869adae..604dfdb25d 100644 --- a/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.linux.txt b/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.linux.txt index 30fea37115..6f51ec1d82 100644 --- a/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.txt b/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.txt +++ b/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.darwin.txt index 65024156c2..5b881eec98 100644 --- a/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.linux-aarch64.txt index 11049b4346..24d96b8c37 100644 --- a/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.linux.txt b/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.linux.txt index 8949c71a27..076cd9d5ed 100644 --- a/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.txt b/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.txt +++ b/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/topic_reader/CMakeLists.txt b/ydb/public/sdk/cpp/examples/topic_reader/CMakeLists.txt index 7fb13037a8..7ecdd84ed6 100644 --- a/ydb/public/sdk/cpp/examples/topic_reader/CMakeLists.txt +++ b/ydb/public/sdk/cpp/examples/topic_reader/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.darwin.txt index 900ee09290..152c2584ad 100644 --- a/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.linux-aarch64.txt index 8600fe19ba..61bc8ce0ac 100644 --- a/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.linux.txt b/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.linux.txt index 700531715b..6b6c090261 100644 --- a/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.txt b/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.txt +++ b/ydb/public/sdk/cpp/examples/topic_reader/eventloop/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.darwin.txt index 9e544c49c2..a17041632a 100644 --- a/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.linux-aarch64.txt index 9eddca3266..ad0ccbb97e 100644 --- a/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.linux.txt b/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.linux.txt index d542ce7f3a..e7d38c64ed 100644 --- a/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.txt b/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.txt +++ b/ydb/public/sdk/cpp/examples/topic_reader/simple/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/ttl/CMakeLists.darwin.txt b/ydb/public/sdk/cpp/examples/ttl/CMakeLists.darwin.txt index 8e1a94a4e0..29add2a61e 100644 --- a/ydb/public/sdk/cpp/examples/ttl/CMakeLists.darwin.txt +++ b/ydb/public/sdk/cpp/examples/ttl/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/ttl/CMakeLists.linux-aarch64.txt b/ydb/public/sdk/cpp/examples/ttl/CMakeLists.linux-aarch64.txt index 9be0301658..defd1771df 100644 --- a/ydb/public/sdk/cpp/examples/ttl/CMakeLists.linux-aarch64.txt +++ b/ydb/public/sdk/cpp/examples/ttl/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/ttl/CMakeLists.linux.txt b/ydb/public/sdk/cpp/examples/ttl/CMakeLists.linux.txt index 48352cb5a8..e008bcdb20 100644 --- a/ydb/public/sdk/cpp/examples/ttl/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/examples/ttl/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/public/sdk/cpp/examples/ttl/CMakeLists.txt b/ydb/public/sdk/cpp/examples/ttl/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/public/sdk/cpp/examples/ttl/CMakeLists.txt +++ b/ydb/public/sdk/cpp/examples/ttl/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/CMakeLists.txt b/ydb/services/CMakeLists.txt index f21cbb406c..764b3c3ebf 100644 --- a/ydb/services/CMakeLists.txt +++ b/ydb/services/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/auth/CMakeLists.darwin.txt b/ydb/services/auth/CMakeLists.darwin.txt index c418ab8479..76acb24ce6 100644 --- a/ydb/services/auth/CMakeLists.darwin.txt +++ b/ydb/services/auth/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/auth/CMakeLists.linux-aarch64.txt b/ydb/services/auth/CMakeLists.linux-aarch64.txt index 66082349ba..ebffcaf3b2 100644 --- a/ydb/services/auth/CMakeLists.linux-aarch64.txt +++ b/ydb/services/auth/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/auth/CMakeLists.linux.txt b/ydb/services/auth/CMakeLists.linux.txt index 66082349ba..ebffcaf3b2 100644 --- a/ydb/services/auth/CMakeLists.linux.txt +++ b/ydb/services/auth/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/auth/CMakeLists.txt b/ydb/services/auth/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/auth/CMakeLists.txt +++ b/ydb/services/auth/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/CMakeLists.darwin.txt b/ydb/services/bg_tasks/CMakeLists.darwin.txt index 500fe42638..e2cdd8fbf4 100644 --- a/ydb/services/bg_tasks/CMakeLists.darwin.txt +++ b/ydb/services/bg_tasks/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/CMakeLists.linux-aarch64.txt b/ydb/services/bg_tasks/CMakeLists.linux-aarch64.txt index f3721a754b..9989b2b98d 100644 --- a/ydb/services/bg_tasks/CMakeLists.linux-aarch64.txt +++ b/ydb/services/bg_tasks/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/CMakeLists.linux.txt b/ydb/services/bg_tasks/CMakeLists.linux.txt index f3721a754b..9989b2b98d 100644 --- a/ydb/services/bg_tasks/CMakeLists.linux.txt +++ b/ydb/services/bg_tasks/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/CMakeLists.txt b/ydb/services/bg_tasks/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/bg_tasks/CMakeLists.txt +++ b/ydb/services/bg_tasks/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/abstract/CMakeLists.darwin.txt b/ydb/services/bg_tasks/abstract/CMakeLists.darwin.txt index 871806f32d..b0488020e3 100644 --- a/ydb/services/bg_tasks/abstract/CMakeLists.darwin.txt +++ b/ydb/services/bg_tasks/abstract/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/abstract/CMakeLists.linux-aarch64.txt b/ydb/services/bg_tasks/abstract/CMakeLists.linux-aarch64.txt index 896edba4e8..b4abb4f223 100644 --- a/ydb/services/bg_tasks/abstract/CMakeLists.linux-aarch64.txt +++ b/ydb/services/bg_tasks/abstract/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/abstract/CMakeLists.linux.txt b/ydb/services/bg_tasks/abstract/CMakeLists.linux.txt index 896edba4e8..b4abb4f223 100644 --- a/ydb/services/bg_tasks/abstract/CMakeLists.linux.txt +++ b/ydb/services/bg_tasks/abstract/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/abstract/CMakeLists.txt b/ydb/services/bg_tasks/abstract/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/bg_tasks/abstract/CMakeLists.txt +++ b/ydb/services/bg_tasks/abstract/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/ds_table/CMakeLists.darwin.txt b/ydb/services/bg_tasks/ds_table/CMakeLists.darwin.txt index a689fcd413..06ef95a09c 100644 --- a/ydb/services/bg_tasks/ds_table/CMakeLists.darwin.txt +++ b/ydb/services/bg_tasks/ds_table/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/ds_table/CMakeLists.linux-aarch64.txt b/ydb/services/bg_tasks/ds_table/CMakeLists.linux-aarch64.txt index 6dd0b379cc..e2ff9b84df 100644 --- a/ydb/services/bg_tasks/ds_table/CMakeLists.linux-aarch64.txt +++ b/ydb/services/bg_tasks/ds_table/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/ds_table/CMakeLists.linux.txt b/ydb/services/bg_tasks/ds_table/CMakeLists.linux.txt index 6dd0b379cc..e2ff9b84df 100644 --- a/ydb/services/bg_tasks/ds_table/CMakeLists.linux.txt +++ b/ydb/services/bg_tasks/ds_table/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/ds_table/CMakeLists.txt b/ydb/services/bg_tasks/ds_table/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/bg_tasks/ds_table/CMakeLists.txt +++ b/ydb/services/bg_tasks/ds_table/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/protos/CMakeLists.darwin.txt b/ydb/services/bg_tasks/protos/CMakeLists.darwin.txt index 94a58a1da9..31d3f0539a 100644 --- a/ydb/services/bg_tasks/protos/CMakeLists.darwin.txt +++ b/ydb/services/bg_tasks/protos/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/protos/CMakeLists.linux-aarch64.txt b/ydb/services/bg_tasks/protos/CMakeLists.linux-aarch64.txt index 7c5eef1dfb..a1c4b4d699 100644 --- a/ydb/services/bg_tasks/protos/CMakeLists.linux-aarch64.txt +++ b/ydb/services/bg_tasks/protos/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/protos/CMakeLists.linux.txt b/ydb/services/bg_tasks/protos/CMakeLists.linux.txt index 7c5eef1dfb..a1c4b4d699 100644 --- a/ydb/services/bg_tasks/protos/CMakeLists.linux.txt +++ b/ydb/services/bg_tasks/protos/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/protos/CMakeLists.txt b/ydb/services/bg_tasks/protos/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/bg_tasks/protos/CMakeLists.txt +++ b/ydb/services/bg_tasks/protos/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/ut/CMakeLists.darwin.txt b/ydb/services/bg_tasks/ut/CMakeLists.darwin.txt index 74df8ceb91..acf1da8446 100644 --- a/ydb/services/bg_tasks/ut/CMakeLists.darwin.txt +++ b/ydb/services/bg_tasks/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/ut/CMakeLists.linux-aarch64.txt b/ydb/services/bg_tasks/ut/CMakeLists.linux-aarch64.txt index 1df89993e9..c95093edb6 100644 --- a/ydb/services/bg_tasks/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/services/bg_tasks/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/ut/CMakeLists.linux.txt b/ydb/services/bg_tasks/ut/CMakeLists.linux.txt index 1e22bce0f7..aaa6177800 100644 --- a/ydb/services/bg_tasks/ut/CMakeLists.linux.txt +++ b/ydb/services/bg_tasks/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/bg_tasks/ut/CMakeLists.txt b/ydb/services/bg_tasks/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/bg_tasks/ut/CMakeLists.txt +++ b/ydb/services/bg_tasks/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/cms/CMakeLists.darwin.txt b/ydb/services/cms/CMakeLists.darwin.txt index b32ca5c50e..e30816acba 100644 --- a/ydb/services/cms/CMakeLists.darwin.txt +++ b/ydb/services/cms/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/cms/CMakeLists.linux-aarch64.txt b/ydb/services/cms/CMakeLists.linux-aarch64.txt index db512afde6..d1435f6812 100644 --- a/ydb/services/cms/CMakeLists.linux-aarch64.txt +++ b/ydb/services/cms/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/cms/CMakeLists.linux.txt b/ydb/services/cms/CMakeLists.linux.txt index db512afde6..d1435f6812 100644 --- a/ydb/services/cms/CMakeLists.linux.txt +++ b/ydb/services/cms/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/cms/CMakeLists.txt b/ydb/services/cms/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/cms/CMakeLists.txt +++ b/ydb/services/cms/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/cms/ut/CMakeLists.darwin.txt b/ydb/services/cms/ut/CMakeLists.darwin.txt index 68b26c408c..122c2fb3ad 100644 --- a/ydb/services/cms/ut/CMakeLists.darwin.txt +++ b/ydb/services/cms/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/cms/ut/CMakeLists.linux-aarch64.txt b/ydb/services/cms/ut/CMakeLists.linux-aarch64.txt index bfcb5db478..d4241d201a 100644 --- a/ydb/services/cms/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/services/cms/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/cms/ut/CMakeLists.linux.txt b/ydb/services/cms/ut/CMakeLists.linux.txt index e11a71d9ed..b77b61a40b 100644 --- a/ydb/services/cms/ut/CMakeLists.linux.txt +++ b/ydb/services/cms/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/cms/ut/CMakeLists.txt b/ydb/services/cms/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/cms/ut/CMakeLists.txt +++ b/ydb/services/cms/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/datastreams/CMakeLists.darwin.txt b/ydb/services/datastreams/CMakeLists.darwin.txt index 2d53ba2318..4164eb9cc5 100644 --- a/ydb/services/datastreams/CMakeLists.darwin.txt +++ b/ydb/services/datastreams/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/datastreams/CMakeLists.linux-aarch64.txt b/ydb/services/datastreams/CMakeLists.linux-aarch64.txt index 591d876700..d4b992031e 100644 --- a/ydb/services/datastreams/CMakeLists.linux-aarch64.txt +++ b/ydb/services/datastreams/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/datastreams/CMakeLists.linux.txt b/ydb/services/datastreams/CMakeLists.linux.txt index 591d876700..d4b992031e 100644 --- a/ydb/services/datastreams/CMakeLists.linux.txt +++ b/ydb/services/datastreams/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/datastreams/CMakeLists.txt b/ydb/services/datastreams/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/datastreams/CMakeLists.txt +++ b/ydb/services/datastreams/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/datastreams/ut/CMakeLists.darwin.txt b/ydb/services/datastreams/ut/CMakeLists.darwin.txt index f19d57819f..dc400fe703 100644 --- a/ydb/services/datastreams/ut/CMakeLists.darwin.txt +++ b/ydb/services/datastreams/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/datastreams/ut/CMakeLists.linux-aarch64.txt b/ydb/services/datastreams/ut/CMakeLists.linux-aarch64.txt index 313162289c..17457c9a46 100644 --- a/ydb/services/datastreams/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/services/datastreams/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/datastreams/ut/CMakeLists.linux.txt b/ydb/services/datastreams/ut/CMakeLists.linux.txt index b7d943dc44..11b838d236 100644 --- a/ydb/services/datastreams/ut/CMakeLists.linux.txt +++ b/ydb/services/datastreams/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/datastreams/ut/CMakeLists.txt b/ydb/services/datastreams/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/datastreams/ut/CMakeLists.txt +++ b/ydb/services/datastreams/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/discovery/CMakeLists.darwin.txt b/ydb/services/discovery/CMakeLists.darwin.txt index 76b5831ec2..74cf45c696 100644 --- a/ydb/services/discovery/CMakeLists.darwin.txt +++ b/ydb/services/discovery/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/discovery/CMakeLists.linux-aarch64.txt b/ydb/services/discovery/CMakeLists.linux-aarch64.txt index 3c5a0d5420..d1f17dc660 100644 --- a/ydb/services/discovery/CMakeLists.linux-aarch64.txt +++ b/ydb/services/discovery/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/discovery/CMakeLists.linux.txt b/ydb/services/discovery/CMakeLists.linux.txt index 3c5a0d5420..d1f17dc660 100644 --- a/ydb/services/discovery/CMakeLists.linux.txt +++ b/ydb/services/discovery/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/discovery/CMakeLists.txt b/ydb/services/discovery/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/discovery/CMakeLists.txt +++ b/ydb/services/discovery/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/fq/CMakeLists.darwin.txt b/ydb/services/fq/CMakeLists.darwin.txt index 629fdbf26d..c67ad93dea 100644 --- a/ydb/services/fq/CMakeLists.darwin.txt +++ b/ydb/services/fq/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/fq/CMakeLists.linux-aarch64.txt b/ydb/services/fq/CMakeLists.linux-aarch64.txt index f32eadba3a..4d3b83da14 100644 --- a/ydb/services/fq/CMakeLists.linux-aarch64.txt +++ b/ydb/services/fq/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/fq/CMakeLists.linux.txt b/ydb/services/fq/CMakeLists.linux.txt index f32eadba3a..4d3b83da14 100644 --- a/ydb/services/fq/CMakeLists.linux.txt +++ b/ydb/services/fq/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/fq/CMakeLists.txt b/ydb/services/fq/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/fq/CMakeLists.txt +++ b/ydb/services/fq/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/fq/ut_integration/CMakeLists.darwin.txt b/ydb/services/fq/ut_integration/CMakeLists.darwin.txt index 42b2074788..8cf0a62198 100644 --- a/ydb/services/fq/ut_integration/CMakeLists.darwin.txt +++ b/ydb/services/fq/ut_integration/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/fq/ut_integration/CMakeLists.linux-aarch64.txt b/ydb/services/fq/ut_integration/CMakeLists.linux-aarch64.txt index 674d2f2130..8f01134aeb 100644 --- a/ydb/services/fq/ut_integration/CMakeLists.linux-aarch64.txt +++ b/ydb/services/fq/ut_integration/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/fq/ut_integration/CMakeLists.linux.txt b/ydb/services/fq/ut_integration/CMakeLists.linux.txt index 81014e4259..0d99d419eb 100644 --- a/ydb/services/fq/ut_integration/CMakeLists.linux.txt +++ b/ydb/services/fq/ut_integration/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/fq/ut_integration/CMakeLists.txt b/ydb/services/fq/ut_integration/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/fq/ut_integration/CMakeLists.txt +++ b/ydb/services/fq/ut_integration/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/kesus/CMakeLists.darwin.txt b/ydb/services/kesus/CMakeLists.darwin.txt index 24101c42c3..68fe7d7a7b 100644 --- a/ydb/services/kesus/CMakeLists.darwin.txt +++ b/ydb/services/kesus/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/kesus/CMakeLists.linux-aarch64.txt b/ydb/services/kesus/CMakeLists.linux-aarch64.txt index e03c16ee74..49d5397f10 100644 --- a/ydb/services/kesus/CMakeLists.linux-aarch64.txt +++ b/ydb/services/kesus/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/kesus/CMakeLists.linux.txt b/ydb/services/kesus/CMakeLists.linux.txt index e03c16ee74..49d5397f10 100644 --- a/ydb/services/kesus/CMakeLists.linux.txt +++ b/ydb/services/kesus/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/kesus/CMakeLists.txt b/ydb/services/kesus/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/kesus/CMakeLists.txt +++ b/ydb/services/kesus/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/lib/CMakeLists.txt b/ydb/services/lib/CMakeLists.txt index da7bde9e83..7b3a52be78 100644 --- a/ydb/services/lib/CMakeLists.txt +++ b/ydb/services/lib/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/lib/actors/CMakeLists.darwin.txt b/ydb/services/lib/actors/CMakeLists.darwin.txt index 893dd07437..43f92f2ff0 100644 --- a/ydb/services/lib/actors/CMakeLists.darwin.txt +++ b/ydb/services/lib/actors/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/lib/actors/CMakeLists.linux-aarch64.txt b/ydb/services/lib/actors/CMakeLists.linux-aarch64.txt index 76ba21140e..0c6cdd98c9 100644 --- a/ydb/services/lib/actors/CMakeLists.linux-aarch64.txt +++ b/ydb/services/lib/actors/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/lib/actors/CMakeLists.linux.txt b/ydb/services/lib/actors/CMakeLists.linux.txt index 76ba21140e..0c6cdd98c9 100644 --- a/ydb/services/lib/actors/CMakeLists.linux.txt +++ b/ydb/services/lib/actors/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/lib/actors/CMakeLists.txt b/ydb/services/lib/actors/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/lib/actors/CMakeLists.txt +++ b/ydb/services/lib/actors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/lib/sharding/CMakeLists.darwin.txt b/ydb/services/lib/sharding/CMakeLists.darwin.txt index bbc4215836..c9402ccce0 100644 --- a/ydb/services/lib/sharding/CMakeLists.darwin.txt +++ b/ydb/services/lib/sharding/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/lib/sharding/CMakeLists.linux-aarch64.txt b/ydb/services/lib/sharding/CMakeLists.linux-aarch64.txt index da128e95fe..1d3a7bf20b 100644 --- a/ydb/services/lib/sharding/CMakeLists.linux-aarch64.txt +++ b/ydb/services/lib/sharding/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/lib/sharding/CMakeLists.linux.txt b/ydb/services/lib/sharding/CMakeLists.linux.txt index da128e95fe..1d3a7bf20b 100644 --- a/ydb/services/lib/sharding/CMakeLists.linux.txt +++ b/ydb/services/lib/sharding/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/lib/sharding/CMakeLists.txt b/ydb/services/lib/sharding/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/lib/sharding/CMakeLists.txt +++ b/ydb/services/lib/sharding/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/local_discovery/CMakeLists.darwin.txt b/ydb/services/local_discovery/CMakeLists.darwin.txt index 439926c1d3..961750ce61 100644 --- a/ydb/services/local_discovery/CMakeLists.darwin.txt +++ b/ydb/services/local_discovery/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/local_discovery/CMakeLists.linux-aarch64.txt b/ydb/services/local_discovery/CMakeLists.linux-aarch64.txt index 759481244b..a04f5b1db7 100644 --- a/ydb/services/local_discovery/CMakeLists.linux-aarch64.txt +++ b/ydb/services/local_discovery/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/local_discovery/CMakeLists.linux.txt b/ydb/services/local_discovery/CMakeLists.linux.txt index 759481244b..a04f5b1db7 100644 --- a/ydb/services/local_discovery/CMakeLists.linux.txt +++ b/ydb/services/local_discovery/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/local_discovery/CMakeLists.txt b/ydb/services/local_discovery/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/local_discovery/CMakeLists.txt +++ b/ydb/services/local_discovery/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/CMakeLists.darwin.txt b/ydb/services/metadata/CMakeLists.darwin.txt index e25aecd950..442b5d20d0 100644 --- a/ydb/services/metadata/CMakeLists.darwin.txt +++ b/ydb/services/metadata/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/CMakeLists.linux-aarch64.txt b/ydb/services/metadata/CMakeLists.linux-aarch64.txt index 85b1781192..85e5dadaf1 100644 --- a/ydb/services/metadata/CMakeLists.linux-aarch64.txt +++ b/ydb/services/metadata/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/CMakeLists.linux.txt b/ydb/services/metadata/CMakeLists.linux.txt index 85b1781192..85e5dadaf1 100644 --- a/ydb/services/metadata/CMakeLists.linux.txt +++ b/ydb/services/metadata/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/CMakeLists.txt b/ydb/services/metadata/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/metadata/CMakeLists.txt +++ b/ydb/services/metadata/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/abstract/CMakeLists.darwin.txt b/ydb/services/metadata/abstract/CMakeLists.darwin.txt index e5a4dac22f..7f4c1df8a7 100644 --- a/ydb/services/metadata/abstract/CMakeLists.darwin.txt +++ b/ydb/services/metadata/abstract/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/abstract/CMakeLists.linux-aarch64.txt b/ydb/services/metadata/abstract/CMakeLists.linux-aarch64.txt index 2b1df938a7..14d19487fd 100644 --- a/ydb/services/metadata/abstract/CMakeLists.linux-aarch64.txt +++ b/ydb/services/metadata/abstract/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/abstract/CMakeLists.linux.txt b/ydb/services/metadata/abstract/CMakeLists.linux.txt index 2b1df938a7..14d19487fd 100644 --- a/ydb/services/metadata/abstract/CMakeLists.linux.txt +++ b/ydb/services/metadata/abstract/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/abstract/CMakeLists.txt b/ydb/services/metadata/abstract/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/metadata/abstract/CMakeLists.txt +++ b/ydb/services/metadata/abstract/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/common/CMakeLists.darwin.txt b/ydb/services/metadata/common/CMakeLists.darwin.txt index 49675e7c46..51b3c639ae 100644 --- a/ydb/services/metadata/common/CMakeLists.darwin.txt +++ b/ydb/services/metadata/common/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/common/CMakeLists.linux-aarch64.txt b/ydb/services/metadata/common/CMakeLists.linux-aarch64.txt index 065335b4ba..85d0145326 100644 --- a/ydb/services/metadata/common/CMakeLists.linux-aarch64.txt +++ b/ydb/services/metadata/common/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/common/CMakeLists.linux.txt b/ydb/services/metadata/common/CMakeLists.linux.txt index 065335b4ba..85d0145326 100644 --- a/ydb/services/metadata/common/CMakeLists.linux.txt +++ b/ydb/services/metadata/common/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/common/CMakeLists.txt b/ydb/services/metadata/common/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/metadata/common/CMakeLists.txt +++ b/ydb/services/metadata/common/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/ds_table/CMakeLists.darwin.txt b/ydb/services/metadata/ds_table/CMakeLists.darwin.txt index 7570d4c6c5..fb3012d69e 100644 --- a/ydb/services/metadata/ds_table/CMakeLists.darwin.txt +++ b/ydb/services/metadata/ds_table/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/ds_table/CMakeLists.linux-aarch64.txt b/ydb/services/metadata/ds_table/CMakeLists.linux-aarch64.txt index 0d795abd0d..f6e60135e8 100644 --- a/ydb/services/metadata/ds_table/CMakeLists.linux-aarch64.txt +++ b/ydb/services/metadata/ds_table/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/ds_table/CMakeLists.linux.txt b/ydb/services/metadata/ds_table/CMakeLists.linux.txt index 0d795abd0d..f6e60135e8 100644 --- a/ydb/services/metadata/ds_table/CMakeLists.linux.txt +++ b/ydb/services/metadata/ds_table/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/ds_table/CMakeLists.txt b/ydb/services/metadata/ds_table/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/metadata/ds_table/CMakeLists.txt +++ b/ydb/services/metadata/ds_table/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/initializer/CMakeLists.darwin.txt b/ydb/services/metadata/initializer/CMakeLists.darwin.txt index 59114a76a5..fef7600420 100644 --- a/ydb/services/metadata/initializer/CMakeLists.darwin.txt +++ b/ydb/services/metadata/initializer/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/initializer/CMakeLists.linux-aarch64.txt b/ydb/services/metadata/initializer/CMakeLists.linux-aarch64.txt index 9f55d88a25..2623584897 100644 --- a/ydb/services/metadata/initializer/CMakeLists.linux-aarch64.txt +++ b/ydb/services/metadata/initializer/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/initializer/CMakeLists.linux.txt b/ydb/services/metadata/initializer/CMakeLists.linux.txt index 9f55d88a25..2623584897 100644 --- a/ydb/services/metadata/initializer/CMakeLists.linux.txt +++ b/ydb/services/metadata/initializer/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/initializer/CMakeLists.txt b/ydb/services/metadata/initializer/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/metadata/initializer/CMakeLists.txt +++ b/ydb/services/metadata/initializer/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/initializer/ut/CMakeLists.darwin.txt b/ydb/services/metadata/initializer/ut/CMakeLists.darwin.txt index 38930a3f12..b6094e8083 100644 --- a/ydb/services/metadata/initializer/ut/CMakeLists.darwin.txt +++ b/ydb/services/metadata/initializer/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/initializer/ut/CMakeLists.linux-aarch64.txt b/ydb/services/metadata/initializer/ut/CMakeLists.linux-aarch64.txt index 72035b65e4..90f25fbb0a 100644 --- a/ydb/services/metadata/initializer/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/services/metadata/initializer/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/initializer/ut/CMakeLists.linux.txt b/ydb/services/metadata/initializer/ut/CMakeLists.linux.txt index 70d7c98acd..889bcf913d 100644 --- a/ydb/services/metadata/initializer/ut/CMakeLists.linux.txt +++ b/ydb/services/metadata/initializer/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/initializer/ut/CMakeLists.txt b/ydb/services/metadata/initializer/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/metadata/initializer/ut/CMakeLists.txt +++ b/ydb/services/metadata/initializer/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/manager/CMakeLists.darwin.txt b/ydb/services/metadata/manager/CMakeLists.darwin.txt index 98e723bf8f..37c8775f6a 100644 --- a/ydb/services/metadata/manager/CMakeLists.darwin.txt +++ b/ydb/services/metadata/manager/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/manager/CMakeLists.linux-aarch64.txt b/ydb/services/metadata/manager/CMakeLists.linux-aarch64.txt index b7b15605f3..c055ff678d 100644 --- a/ydb/services/metadata/manager/CMakeLists.linux-aarch64.txt +++ b/ydb/services/metadata/manager/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/manager/CMakeLists.linux.txt b/ydb/services/metadata/manager/CMakeLists.linux.txt index b7b15605f3..c055ff678d 100644 --- a/ydb/services/metadata/manager/CMakeLists.linux.txt +++ b/ydb/services/metadata/manager/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/manager/CMakeLists.txt b/ydb/services/metadata/manager/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/metadata/manager/CMakeLists.txt +++ b/ydb/services/metadata/manager/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/request/CMakeLists.darwin.txt b/ydb/services/metadata/request/CMakeLists.darwin.txt index fe88f4b7c8..378762b122 100644 --- a/ydb/services/metadata/request/CMakeLists.darwin.txt +++ b/ydb/services/metadata/request/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/request/CMakeLists.linux-aarch64.txt b/ydb/services/metadata/request/CMakeLists.linux-aarch64.txt index 79561f74fa..dcb34e402b 100644 --- a/ydb/services/metadata/request/CMakeLists.linux-aarch64.txt +++ b/ydb/services/metadata/request/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/request/CMakeLists.linux.txt b/ydb/services/metadata/request/CMakeLists.linux.txt index 79561f74fa..dcb34e402b 100644 --- a/ydb/services/metadata/request/CMakeLists.linux.txt +++ b/ydb/services/metadata/request/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/request/CMakeLists.txt b/ydb/services/metadata/request/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/metadata/request/CMakeLists.txt +++ b/ydb/services/metadata/request/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/secret/CMakeLists.darwin.txt b/ydb/services/metadata/secret/CMakeLists.darwin.txt index 424f97388e..7659c8ae97 100644 --- a/ydb/services/metadata/secret/CMakeLists.darwin.txt +++ b/ydb/services/metadata/secret/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/secret/CMakeLists.linux-aarch64.txt b/ydb/services/metadata/secret/CMakeLists.linux-aarch64.txt index ce8839a251..afee708308 100644 --- a/ydb/services/metadata/secret/CMakeLists.linux-aarch64.txt +++ b/ydb/services/metadata/secret/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/secret/CMakeLists.linux.txt b/ydb/services/metadata/secret/CMakeLists.linux.txt index ce8839a251..afee708308 100644 --- a/ydb/services/metadata/secret/CMakeLists.linux.txt +++ b/ydb/services/metadata/secret/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/secret/CMakeLists.txt b/ydb/services/metadata/secret/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/metadata/secret/CMakeLists.txt +++ b/ydb/services/metadata/secret/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/secret/ut/CMakeLists.darwin.txt b/ydb/services/metadata/secret/ut/CMakeLists.darwin.txt index f3e186b34c..51bfee63cb 100644 --- a/ydb/services/metadata/secret/ut/CMakeLists.darwin.txt +++ b/ydb/services/metadata/secret/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/secret/ut/CMakeLists.linux-aarch64.txt b/ydb/services/metadata/secret/ut/CMakeLists.linux-aarch64.txt index e6b2af85c7..b3dd4a4a71 100644 --- a/ydb/services/metadata/secret/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/services/metadata/secret/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/secret/ut/CMakeLists.linux.txt b/ydb/services/metadata/secret/ut/CMakeLists.linux.txt index 26a8474df0..46558884ff 100644 --- a/ydb/services/metadata/secret/ut/CMakeLists.linux.txt +++ b/ydb/services/metadata/secret/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/metadata/secret/ut/CMakeLists.txt b/ydb/services/metadata/secret/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/metadata/secret/ut/CMakeLists.txt +++ b/ydb/services/metadata/secret/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/monitoring/CMakeLists.darwin.txt b/ydb/services/monitoring/CMakeLists.darwin.txt index 59f8ebc3ad..d788e414ac 100644 --- a/ydb/services/monitoring/CMakeLists.darwin.txt +++ b/ydb/services/monitoring/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/monitoring/CMakeLists.linux-aarch64.txt b/ydb/services/monitoring/CMakeLists.linux-aarch64.txt index ad381e707a..a4f761c24d 100644 --- a/ydb/services/monitoring/CMakeLists.linux-aarch64.txt +++ b/ydb/services/monitoring/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/monitoring/CMakeLists.linux.txt b/ydb/services/monitoring/CMakeLists.linux.txt index ad381e707a..a4f761c24d 100644 --- a/ydb/services/monitoring/CMakeLists.linux.txt +++ b/ydb/services/monitoring/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/monitoring/CMakeLists.txt b/ydb/services/monitoring/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/monitoring/CMakeLists.txt +++ b/ydb/services/monitoring/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_cluster_discovery/CMakeLists.darwin.txt b/ydb/services/persqueue_cluster_discovery/CMakeLists.darwin.txt index b39314d234..39d1af5bf5 100644 --- a/ydb/services/persqueue_cluster_discovery/CMakeLists.darwin.txt +++ b/ydb/services/persqueue_cluster_discovery/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_cluster_discovery/CMakeLists.linux-aarch64.txt b/ydb/services/persqueue_cluster_discovery/CMakeLists.linux-aarch64.txt index 563f41e9a6..943ee24692 100644 --- a/ydb/services/persqueue_cluster_discovery/CMakeLists.linux-aarch64.txt +++ b/ydb/services/persqueue_cluster_discovery/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_cluster_discovery/CMakeLists.linux.txt b/ydb/services/persqueue_cluster_discovery/CMakeLists.linux.txt index 563f41e9a6..943ee24692 100644 --- a/ydb/services/persqueue_cluster_discovery/CMakeLists.linux.txt +++ b/ydb/services/persqueue_cluster_discovery/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_cluster_discovery/CMakeLists.txt b/ydb/services/persqueue_cluster_discovery/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/persqueue_cluster_discovery/CMakeLists.txt +++ b/ydb/services/persqueue_cluster_discovery/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.darwin.txt b/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.darwin.txt index cccdfbff80..d7ebeadd29 100644 --- a/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.darwin.txt +++ b/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.linux-aarch64.txt b/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.linux-aarch64.txt index 9fb2d52902..34a534c1fe 100644 --- a/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.linux-aarch64.txt +++ b/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.linux.txt b/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.linux.txt index 9fb2d52902..34a534c1fe 100644 --- a/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.linux.txt +++ b/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.txt b/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.txt +++ b/ydb/services/persqueue_cluster_discovery/cluster_ordering/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.darwin.txt b/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.darwin.txt index a35056c834..5eb5c8de88 100644 --- a/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.darwin.txt +++ b/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.linux-aarch64.txt b/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.linux-aarch64.txt index fc8dd27024..f26c255a0d 100644 --- a/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.linux.txt b/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.linux.txt index c8787645e5..de3306c2fa 100644 --- a/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.linux.txt +++ b/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.txt b/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.txt +++ b/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/CMakeLists.darwin.txt b/ydb/services/persqueue_v1/CMakeLists.darwin.txt index 08b555ef5c..60e563ec2e 100644 --- a/ydb/services/persqueue_v1/CMakeLists.darwin.txt +++ b/ydb/services/persqueue_v1/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/CMakeLists.linux-aarch64.txt b/ydb/services/persqueue_v1/CMakeLists.linux-aarch64.txt index d70140a778..35c5bb019b 100644 --- a/ydb/services/persqueue_v1/CMakeLists.linux-aarch64.txt +++ b/ydb/services/persqueue_v1/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/CMakeLists.linux.txt b/ydb/services/persqueue_v1/CMakeLists.linux.txt index d70140a778..35c5bb019b 100644 --- a/ydb/services/persqueue_v1/CMakeLists.linux.txt +++ b/ydb/services/persqueue_v1/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/CMakeLists.txt b/ydb/services/persqueue_v1/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/persqueue_v1/CMakeLists.txt +++ b/ydb/services/persqueue_v1/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/actors/CMakeLists.darwin.txt b/ydb/services/persqueue_v1/actors/CMakeLists.darwin.txt index 182006ca30..abc9a2c625 100644 --- a/ydb/services/persqueue_v1/actors/CMakeLists.darwin.txt +++ b/ydb/services/persqueue_v1/actors/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/actors/CMakeLists.linux-aarch64.txt b/ydb/services/persqueue_v1/actors/CMakeLists.linux-aarch64.txt index be5980b588..7dfbde6a5a 100644 --- a/ydb/services/persqueue_v1/actors/CMakeLists.linux-aarch64.txt +++ b/ydb/services/persqueue_v1/actors/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/actors/CMakeLists.linux.txt b/ydb/services/persqueue_v1/actors/CMakeLists.linux.txt index be5980b588..7dfbde6a5a 100644 --- a/ydb/services/persqueue_v1/actors/CMakeLists.linux.txt +++ b/ydb/services/persqueue_v1/actors/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/actors/CMakeLists.txt b/ydb/services/persqueue_v1/actors/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/persqueue_v1/actors/CMakeLists.txt +++ b/ydb/services/persqueue_v1/actors/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/ut/CMakeLists.darwin.txt b/ydb/services/persqueue_v1/ut/CMakeLists.darwin.txt index b74a1fde91..a26665cd0b 100644 --- a/ydb/services/persqueue_v1/ut/CMakeLists.darwin.txt +++ b/ydb/services/persqueue_v1/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/ut/CMakeLists.linux-aarch64.txt b/ydb/services/persqueue_v1/ut/CMakeLists.linux-aarch64.txt index 4671d58d38..e3e412d671 100644 --- a/ydb/services/persqueue_v1/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/services/persqueue_v1/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/ut/CMakeLists.linux.txt b/ydb/services/persqueue_v1/ut/CMakeLists.linux.txt index 9853ebec60..68027c3979 100644 --- a/ydb/services/persqueue_v1/ut/CMakeLists.linux.txt +++ b/ydb/services/persqueue_v1/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/ut/CMakeLists.txt b/ydb/services/persqueue_v1/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/persqueue_v1/ut/CMakeLists.txt +++ b/ydb/services/persqueue_v1/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.darwin.txt b/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.darwin.txt index 63e933b854..969f56832f 100644 --- a/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.darwin.txt +++ b/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.linux-aarch64.txt b/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.linux-aarch64.txt index 70b2bb17bc..719cfa584b 100644 --- a/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.linux-aarch64.txt +++ b/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.linux.txt b/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.linux.txt index 32fc359248..3bbed77e8c 100644 --- a/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.linux.txt +++ b/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.txt b/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.txt +++ b/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/rate_limiter/CMakeLists.darwin.txt b/ydb/services/rate_limiter/CMakeLists.darwin.txt index b3abfd0ff3..51bafd9703 100644 --- a/ydb/services/rate_limiter/CMakeLists.darwin.txt +++ b/ydb/services/rate_limiter/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/rate_limiter/CMakeLists.linux-aarch64.txt b/ydb/services/rate_limiter/CMakeLists.linux-aarch64.txt index 252dae20d1..c00cdc1258 100644 --- a/ydb/services/rate_limiter/CMakeLists.linux-aarch64.txt +++ b/ydb/services/rate_limiter/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/rate_limiter/CMakeLists.linux.txt b/ydb/services/rate_limiter/CMakeLists.linux.txt index 252dae20d1..c00cdc1258 100644 --- a/ydb/services/rate_limiter/CMakeLists.linux.txt +++ b/ydb/services/rate_limiter/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/rate_limiter/CMakeLists.txt b/ydb/services/rate_limiter/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/rate_limiter/CMakeLists.txt +++ b/ydb/services/rate_limiter/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/rate_limiter/ut/CMakeLists.darwin.txt b/ydb/services/rate_limiter/ut/CMakeLists.darwin.txt index d5fcf8b5cf..a570c77e69 100644 --- a/ydb/services/rate_limiter/ut/CMakeLists.darwin.txt +++ b/ydb/services/rate_limiter/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/rate_limiter/ut/CMakeLists.linux-aarch64.txt b/ydb/services/rate_limiter/ut/CMakeLists.linux-aarch64.txt index 5677508c47..05414c46b3 100644 --- a/ydb/services/rate_limiter/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/services/rate_limiter/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/rate_limiter/ut/CMakeLists.linux.txt b/ydb/services/rate_limiter/ut/CMakeLists.linux.txt index 956acc2699..cbff6adec4 100644 --- a/ydb/services/rate_limiter/ut/CMakeLists.linux.txt +++ b/ydb/services/rate_limiter/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/rate_limiter/ut/CMakeLists.txt b/ydb/services/rate_limiter/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/rate_limiter/ut/CMakeLists.txt +++ b/ydb/services/rate_limiter/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/CMakeLists.darwin.txt b/ydb/services/ydb/CMakeLists.darwin.txt index 9ae9e8c513..752e3a41a0 100644 --- a/ydb/services/ydb/CMakeLists.darwin.txt +++ b/ydb/services/ydb/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/CMakeLists.linux-aarch64.txt b/ydb/services/ydb/CMakeLists.linux-aarch64.txt index a609f4dece..1920136eb1 100644 --- a/ydb/services/ydb/CMakeLists.linux-aarch64.txt +++ b/ydb/services/ydb/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/CMakeLists.linux.txt b/ydb/services/ydb/CMakeLists.linux.txt index a609f4dece..1920136eb1 100644 --- a/ydb/services/ydb/CMakeLists.linux.txt +++ b/ydb/services/ydb/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/CMakeLists.txt b/ydb/services/ydb/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/ydb/CMakeLists.txt +++ b/ydb/services/ydb/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/index_ut/CMakeLists.darwin.txt b/ydb/services/ydb/index_ut/CMakeLists.darwin.txt index ccb63930a8..b0d1ab4976 100644 --- a/ydb/services/ydb/index_ut/CMakeLists.darwin.txt +++ b/ydb/services/ydb/index_ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/index_ut/CMakeLists.linux-aarch64.txt b/ydb/services/ydb/index_ut/CMakeLists.linux-aarch64.txt index f0dbe629e7..50b9e8fc25 100644 --- a/ydb/services/ydb/index_ut/CMakeLists.linux-aarch64.txt +++ b/ydb/services/ydb/index_ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/index_ut/CMakeLists.linux.txt b/ydb/services/ydb/index_ut/CMakeLists.linux.txt index c27263bc2d..9ea824b009 100644 --- a/ydb/services/ydb/index_ut/CMakeLists.linux.txt +++ b/ydb/services/ydb/index_ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/index_ut/CMakeLists.txt b/ydb/services/ydb/index_ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/ydb/index_ut/CMakeLists.txt +++ b/ydb/services/ydb/index_ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.darwin.txt b/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.darwin.txt index 0c7751320e..3a5380cac9 100644 --- a/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.darwin.txt +++ b/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.linux-aarch64.txt b/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.linux-aarch64.txt index 21227f7679..89342c6a39 100644 --- a/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.linux-aarch64.txt +++ b/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.linux.txt b/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.linux.txt index 5e94525f6f..e247009de6 100644 --- a/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.linux.txt +++ b/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.txt b/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.txt +++ b/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/ut/CMakeLists.darwin.txt b/ydb/services/ydb/ut/CMakeLists.darwin.txt index 0c8f9bd290..24e0f7696b 100644 --- a/ydb/services/ydb/ut/CMakeLists.darwin.txt +++ b/ydb/services/ydb/ut/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/ut/CMakeLists.linux-aarch64.txt b/ydb/services/ydb/ut/CMakeLists.linux-aarch64.txt index 99779a4839..522e6795a0 100644 --- a/ydb/services/ydb/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/services/ydb/ut/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/ut/CMakeLists.linux.txt b/ydb/services/ydb/ut/CMakeLists.linux.txt index ff2a124d31..293bbe7d98 100644 --- a/ydb/services/ydb/ut/CMakeLists.linux.txt +++ b/ydb/services/ydb/ut/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/ydb/ut/CMakeLists.txt b/ydb/services/ydb/ut/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/ydb/ut/CMakeLists.txt +++ b/ydb/services/ydb/ut/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/yq/CMakeLists.darwin.txt b/ydb/services/yq/CMakeLists.darwin.txt index 8845e60911..c43b046e76 100644 --- a/ydb/services/yq/CMakeLists.darwin.txt +++ b/ydb/services/yq/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/yq/CMakeLists.linux-aarch64.txt b/ydb/services/yq/CMakeLists.linux-aarch64.txt index dff96c096f..1b28a9ba1b 100644 --- a/ydb/services/yq/CMakeLists.linux-aarch64.txt +++ b/ydb/services/yq/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/yq/CMakeLists.linux.txt b/ydb/services/yq/CMakeLists.linux.txt index dff96c096f..1b28a9ba1b 100644 --- a/ydb/services/yq/CMakeLists.linux.txt +++ b/ydb/services/yq/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/yq/CMakeLists.txt b/ydb/services/yq/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/yq/CMakeLists.txt +++ b/ydb/services/yq/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/yq/ut_integration/CMakeLists.darwin.txt b/ydb/services/yq/ut_integration/CMakeLists.darwin.txt index abb861ed7c..d5e59ea999 100644 --- a/ydb/services/yq/ut_integration/CMakeLists.darwin.txt +++ b/ydb/services/yq/ut_integration/CMakeLists.darwin.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/yq/ut_integration/CMakeLists.linux-aarch64.txt b/ydb/services/yq/ut_integration/CMakeLists.linux-aarch64.txt index 3f55445142..f74b11031d 100644 --- a/ydb/services/yq/ut_integration/CMakeLists.linux-aarch64.txt +++ b/ydb/services/yq/ut_integration/CMakeLists.linux-aarch64.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/yq/ut_integration/CMakeLists.linux.txt b/ydb/services/yq/ut_integration/CMakeLists.linux.txt index 18fe0c17de..3169816315 100644 --- a/ydb/services/yq/ut_integration/CMakeLists.linux.txt +++ b/ydb/services/yq/ut_integration/CMakeLists.linux.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 diff --git a/ydb/services/yq/ut_integration/CMakeLists.txt b/ydb/services/yq/ut_integration/CMakeLists.txt index 3e0811fb22..bede1861df 100644 --- a/ydb/services/yq/ut_integration/CMakeLists.txt +++ b/ydb/services/yq/ut_integration/CMakeLists.txt @@ -1,5 +1,5 @@ -# This file was gererated by the build system used internally in the Yandex monorepo. +# 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 |