diff options
author | ivanmorozov <ivanmorozov@yandex-team.com> | 2022-12-23 17:22:10 +0300 |
---|---|---|
committer | ivanmorozov <ivanmorozov@yandex-team.com> | 2022-12-23 17:22:10 +0300 |
commit | f6fd83a9bc9c2d6bb9502d3dd77adb4f5c31ceae (patch) | |
tree | cca463108bcf236b61344602b47f474ce42b1ff4 /library/cpp/string_utils/csv/CMakeLists.txt | |
parent | af6d4963aeec3543ef895865a0a24fa2e039efa3 (diff) | |
download | ydb-f6fd83a9bc9c2d6bb9502d3dd77adb4f5c31ceae.tar.gz |
parse line on deploy by option
Diffstat (limited to 'library/cpp/string_utils/csv/CMakeLists.txt')
-rw-r--r-- | library/cpp/string_utils/csv/CMakeLists.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/library/cpp/string_utils/csv/CMakeLists.txt b/library/cpp/string_utils/csv/CMakeLists.txt new file mode 100644 index 0000000000..3e0811fb22 --- /dev/null +++ b/library/cpp/string_utils/csv/CMakeLists.txt @@ -0,0 +1,15 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + +if (CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND UNIX AND NOT APPLE AND NOT ANDROID) + include(CMakeLists.linux-aarch64.txt) +elseif (APPLE) + include(CMakeLists.darwin.txt) +elseif (CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND UNIX AND NOT APPLE AND NOT ANDROID) + include(CMakeLists.linux.txt) +endif() |