diff options
author | svidyuk <svidyuk@yandex-team.com> | 2023-08-30 20:31:54 +0300 |
---|---|---|
committer | svidyuk <svidyuk@yandex-team.com> | 2023-08-30 20:50:06 +0300 |
commit | c76aaf823d18acf064939d806427b39cea1bbe16 (patch) | |
tree | d85585d1cea05124f3f264965654164b38a0591e /library/cpp/http/fetch | |
parent | e7fbce1e36ca8d9a32abcc07805749d572a83dd3 (diff) | |
download | ydb-c76aaf823d18acf064939d806427b39cea1bbe16.tar.gz |
Fix input variable missprint
Diffstat (limited to 'library/cpp/http/fetch')
4 files changed, 24 insertions, 0 deletions
diff --git a/library/cpp/http/fetch/CMakeLists.darwin-x86_64.txt b/library/cpp/http/fetch/CMakeLists.darwin-x86_64.txt index c9af1a0150..b507fb8c2e 100644 --- a/library/cpp/http/fetch/CMakeLists.darwin-x86_64.txt +++ b/library/cpp/http/fetch/CMakeLists.darwin-x86_64.txt @@ -7,6 +7,12 @@ find_package(ZLIB REQUIRED) +get_built_tool_path( + TOOL_enum_parser_bin + TOOL_enum_parser_dependency + tools/enum_parser/enum_parser + enum_parser +) add_library(cpp-http-fetch) target_link_libraries(cpp-http-fetch PUBLIC diff --git a/library/cpp/http/fetch/CMakeLists.linux-aarch64.txt b/library/cpp/http/fetch/CMakeLists.linux-aarch64.txt index 8b2f6632b8..432831775a 100644 --- a/library/cpp/http/fetch/CMakeLists.linux-aarch64.txt +++ b/library/cpp/http/fetch/CMakeLists.linux-aarch64.txt @@ -7,6 +7,12 @@ find_package(ZLIB REQUIRED) +get_built_tool_path( + TOOL_enum_parser_bin + TOOL_enum_parser_dependency + tools/enum_parser/enum_parser + enum_parser +) add_library(cpp-http-fetch) target_link_libraries(cpp-http-fetch PUBLIC diff --git a/library/cpp/http/fetch/CMakeLists.linux-x86_64.txt b/library/cpp/http/fetch/CMakeLists.linux-x86_64.txt index 8b2f6632b8..432831775a 100644 --- a/library/cpp/http/fetch/CMakeLists.linux-x86_64.txt +++ b/library/cpp/http/fetch/CMakeLists.linux-x86_64.txt @@ -7,6 +7,12 @@ find_package(ZLIB REQUIRED) +get_built_tool_path( + TOOL_enum_parser_bin + TOOL_enum_parser_dependency + tools/enum_parser/enum_parser + enum_parser +) add_library(cpp-http-fetch) target_link_libraries(cpp-http-fetch PUBLIC diff --git a/library/cpp/http/fetch/CMakeLists.windows-x86_64.txt b/library/cpp/http/fetch/CMakeLists.windows-x86_64.txt index c9af1a0150..b507fb8c2e 100644 --- a/library/cpp/http/fetch/CMakeLists.windows-x86_64.txt +++ b/library/cpp/http/fetch/CMakeLists.windows-x86_64.txt @@ -7,6 +7,12 @@ find_package(ZLIB REQUIRED) +get_built_tool_path( + TOOL_enum_parser_bin + TOOL_enum_parser_dependency + tools/enum_parser/enum_parser + enum_parser +) add_library(cpp-http-fetch) target_link_libraries(cpp-http-fetch PUBLIC |