diff options
author | snermolaev <snermolaev@yandex-team.com> | 2023-02-09 06:37:32 +0300 |
---|---|---|
committer | snermolaev <snermolaev@yandex-team.com> | 2023-02-09 06:37:32 +0300 |
commit | 9bd213d4ce35c341c1d58dc706611149688c296d (patch) | |
tree | ef5aefe04c9d0237622ab4b2e4a1d27f7d2c6348 /tools/enum_parser | |
parent | 4ee4d859c0655a601635f8042a1f0be1bba791e9 (diff) | |
download | ydb-9bd213d4ce35c341c1d58dc706611149688c296d.tar.gz |
remove enum_parser from the list of prebuilt tools
Diffstat (limited to 'tools/enum_parser')
-rw-r--r-- | tools/enum_parser/enum_parser/CMakeLists.darwin.txt (renamed from tools/enum_parser/enum_parser/bin/CMakeLists.darwin.txt) | 0 | ||||
-rw-r--r-- | tools/enum_parser/enum_parser/CMakeLists.linux-aarch64.txt (renamed from tools/enum_parser/enum_parser/bin/CMakeLists.linux-aarch64.txt) | 0 | ||||
-rw-r--r-- | tools/enum_parser/enum_parser/CMakeLists.linux.txt (renamed from tools/enum_parser/enum_parser/bin/CMakeLists.linux.txt) | 0 | ||||
-rw-r--r-- | tools/enum_parser/enum_parser/CMakeLists.txt | 8 | ||||
-rw-r--r-- | tools/enum_parser/enum_parser/bin/CMakeLists.txt | 15 |
5 files changed, 7 insertions, 16 deletions
diff --git a/tools/enum_parser/enum_parser/bin/CMakeLists.darwin.txt b/tools/enum_parser/enum_parser/CMakeLists.darwin.txt index 202ba5832d..202ba5832d 100644 --- a/tools/enum_parser/enum_parser/bin/CMakeLists.darwin.txt +++ b/tools/enum_parser/enum_parser/CMakeLists.darwin.txt diff --git a/tools/enum_parser/enum_parser/bin/CMakeLists.linux-aarch64.txt b/tools/enum_parser/enum_parser/CMakeLists.linux-aarch64.txt index 1c379eae21..1c379eae21 100644 --- a/tools/enum_parser/enum_parser/bin/CMakeLists.linux-aarch64.txt +++ b/tools/enum_parser/enum_parser/CMakeLists.linux-aarch64.txt diff --git a/tools/enum_parser/enum_parser/bin/CMakeLists.linux.txt b/tools/enum_parser/enum_parser/CMakeLists.linux.txt index 56e5139b67..56e5139b67 100644 --- a/tools/enum_parser/enum_parser/bin/CMakeLists.linux.txt +++ b/tools/enum_parser/enum_parser/CMakeLists.linux.txt diff --git a/tools/enum_parser/enum_parser/CMakeLists.txt b/tools/enum_parser/enum_parser/CMakeLists.txt index 94c55d2b57..5bb4faffb4 100644 --- a/tools/enum_parser/enum_parser/CMakeLists.txt +++ b/tools/enum_parser/enum_parser/CMakeLists.txt @@ -6,4 +6,10 @@ # original buildsystem will not be accepted. -add_subdirectory(bin) +if (CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND UNIX AND NOT APPLE AND NOT ANDROID) + include(CMakeLists.linux-aarch64.txt) +elseif (APPLE AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") + include(CMakeLists.darwin.txt) +elseif (CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND UNIX AND NOT APPLE AND NOT ANDROID) + include(CMakeLists.linux.txt) +endif() diff --git a/tools/enum_parser/enum_parser/bin/CMakeLists.txt b/tools/enum_parser/enum_parser/bin/CMakeLists.txt deleted file mode 100644 index 5bb4faffb4..0000000000 --- a/tools/enum_parser/enum_parser/bin/CMakeLists.txt +++ /dev/null @@ -1,15 +0,0 @@ - -# This file was generated by the build system used internally in the Yandex monorepo. -# Only simple modifications are allowed (adding source-files to targets, adding simple properties -# like target_include_directories). These modifications will be ported to original -# ya.make files by maintainers. Any complex modifications which can't be ported back to the -# original buildsystem will not be accepted. - - -if (CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND UNIX AND NOT APPLE AND NOT ANDROID) - include(CMakeLists.linux-aarch64.txt) -elseif (APPLE AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") - include(CMakeLists.darwin.txt) -elseif (CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND UNIX AND NOT APPLE AND NOT ANDROID) - include(CMakeLists.linux.txt) -endif() |