diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2023-02-07 21:14:00 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2023-02-07 21:14:00 +0300 |
commit | 9f448c9c675e670d53bba7a8d74a995b2d9a3606 (patch) | |
tree | 81cb5c300de0ed2dd55497e5f21602556f255e5d /library/cpp/getopt | |
parent | 840348d6ec22ac423ac3bfb7f586936bdc5d7059 (diff) | |
download | ydb-9f448c9c675e670d53bba7a8d74a995b2d9a3606.tar.gz |
Intermediate changes
Diffstat (limited to 'library/cpp/getopt')
-rw-r--r-- | library/cpp/getopt/CMakeLists.darwin.txt | 2 | ||||
-rw-r--r-- | library/cpp/getopt/CMakeLists.linux-aarch64.txt | 2 | ||||
-rw-r--r-- | library/cpp/getopt/CMakeLists.linux.txt | 2 | ||||
-rw-r--r-- | library/cpp/getopt/small/CMakeLists.darwin.txt | 32 | ||||
-rw-r--r-- | library/cpp/getopt/small/CMakeLists.linux-aarch64.txt | 32 | ||||
-rw-r--r-- | library/cpp/getopt/small/CMakeLists.linux.txt | 32 |
6 files changed, 51 insertions, 51 deletions
diff --git a/library/cpp/getopt/CMakeLists.darwin.txt b/library/cpp/getopt/CMakeLists.darwin.txt index 6c10cc0d000..96041aa7d2b 100644 --- a/library/cpp/getopt/CMakeLists.darwin.txt +++ b/library/cpp/getopt/CMakeLists.darwin.txt @@ -26,5 +26,5 @@ target_link_libraries(library-cpp-getopt.global PUBLIC library-cpp-build_info ) target_sources(library-cpp-getopt.global PRIVATE - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/print.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/print.cpp ) diff --git a/library/cpp/getopt/CMakeLists.linux-aarch64.txt b/library/cpp/getopt/CMakeLists.linux-aarch64.txt index d5f14f60d58..7b7157919a0 100644 --- a/library/cpp/getopt/CMakeLists.linux-aarch64.txt +++ b/library/cpp/getopt/CMakeLists.linux-aarch64.txt @@ -28,5 +28,5 @@ target_link_libraries(library-cpp-getopt.global PUBLIC library-cpp-build_info ) target_sources(library-cpp-getopt.global PRIVATE - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/print.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/print.cpp ) diff --git a/library/cpp/getopt/CMakeLists.linux.txt b/library/cpp/getopt/CMakeLists.linux.txt index d5f14f60d58..7b7157919a0 100644 --- a/library/cpp/getopt/CMakeLists.linux.txt +++ b/library/cpp/getopt/CMakeLists.linux.txt @@ -28,5 +28,5 @@ target_link_libraries(library-cpp-getopt.global PUBLIC library-cpp-build_info ) target_sources(library-cpp-getopt.global PRIVATE - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/print.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/print.cpp ) diff --git a/library/cpp/getopt/small/CMakeLists.darwin.txt b/library/cpp/getopt/small/CMakeLists.darwin.txt index 551edc27394..04c5b67dda4 100644 --- a/library/cpp/getopt/small/CMakeLists.darwin.txt +++ b/library/cpp/getopt/small/CMakeLists.darwin.txt @@ -14,20 +14,20 @@ target_link_libraries(cpp-getopt-small PUBLIC library-cpp-colorizer ) target_sources(cpp-getopt-small PRIVATE - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completer.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completer_command.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completion_generator.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/formatted_output.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_easy_setup.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_opt.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_opts.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_parser.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_parse_result.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/modchooser.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/opt.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/opt2.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/posix_getopt.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/wrap.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/ygetopt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completer.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completer_command.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completion_generator.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/formatted_output.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_easy_setup.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_opt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_opts.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_parser.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_parse_result.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/modchooser.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/opt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/opt2.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/posix_getopt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/wrap.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/ygetopt.cpp ) diff --git a/library/cpp/getopt/small/CMakeLists.linux-aarch64.txt b/library/cpp/getopt/small/CMakeLists.linux-aarch64.txt index 7e32eac069f..5aabced8a31 100644 --- a/library/cpp/getopt/small/CMakeLists.linux-aarch64.txt +++ b/library/cpp/getopt/small/CMakeLists.linux-aarch64.txt @@ -15,20 +15,20 @@ target_link_libraries(cpp-getopt-small PUBLIC library-cpp-colorizer ) target_sources(cpp-getopt-small PRIVATE - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completer.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completer_command.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completion_generator.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/formatted_output.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_easy_setup.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_opt.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_opts.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_parser.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_parse_result.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/modchooser.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/opt.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/opt2.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/posix_getopt.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/wrap.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/ygetopt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completer.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completer_command.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completion_generator.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/formatted_output.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_easy_setup.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_opt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_opts.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_parser.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_parse_result.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/modchooser.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/opt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/opt2.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/posix_getopt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/wrap.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/ygetopt.cpp ) diff --git a/library/cpp/getopt/small/CMakeLists.linux.txt b/library/cpp/getopt/small/CMakeLists.linux.txt index 7e32eac069f..5aabced8a31 100644 --- a/library/cpp/getopt/small/CMakeLists.linux.txt +++ b/library/cpp/getopt/small/CMakeLists.linux.txt @@ -15,20 +15,20 @@ target_link_libraries(cpp-getopt-small PUBLIC library-cpp-colorizer ) target_sources(cpp-getopt-small PRIVATE - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completer.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completer_command.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completion_generator.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/formatted_output.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_easy_setup.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_opt.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_opts.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_parser.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_parse_result.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/modchooser.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/opt.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/opt2.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/posix_getopt.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/wrap.cpp - \${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/ygetopt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completer.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completer_command.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/completion_generator.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/formatted_output.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_easy_setup.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_opt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_opts.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_parser.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/last_getopt_parse_result.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/modchooser.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/opt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/opt2.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/posix_getopt.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/wrap.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/getopt/small/ygetopt.cpp ) |