diff options
author | dcherednik <dcherednik@ydb.tech> | 2022-10-26 16:40:35 +0300 |
---|---|---|
committer | dcherednik <dcherednik@ydb.tech> | 2022-10-26 16:40:35 +0300 |
commit | b981cca279190176740c3bf5c5b4fd03be51b599 (patch) | |
tree | f5ec6210fdce0e976cbbe4dc8ae78bb6509adf49 /util/charset/CMakeLists.linux.txt | |
parent | 6dc0de995652f7eeecdbdb88dc98b00bb0653a2f (diff) | |
download | ydb-b981cca279190176740c3bf5c5b4fd03be51b599.tar.gz |
Enable linux-arm platform.
Diffstat (limited to 'util/charset/CMakeLists.linux.txt')
-rw-r--r-- | util/charset/CMakeLists.linux.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/util/charset/CMakeLists.linux.txt b/util/charset/CMakeLists.linux.txt new file mode 100644 index 0000000000..81257887b3 --- /dev/null +++ b/util/charset/CMakeLists.linux.txt @@ -0,0 +1,29 @@ + +# 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. + + + +add_library(util-charset) +target_link_libraries(util-charset PUBLIC + contrib-libs-cxxsupp +) +target_joined_source(util-charset + all_charset.cpp + ${CMAKE_SOURCE_DIR}/util/charset/generated/unidata.cpp + ${CMAKE_SOURCE_DIR}/util/charset/recode_result.cpp + ${CMAKE_SOURCE_DIR}/util/charset/unicode_table.cpp + ${CMAKE_SOURCE_DIR}/util/charset/unidata.cpp + ${CMAKE_SOURCE_DIR}/util/charset/utf8.cpp + ${CMAKE_SOURCE_DIR}/util/charset/wide.cpp +) +target_sources_custom(util-charset + .sse41 + SRCS + ${CMAKE_SOURCE_DIR}/util/charset/wide_sse41.cpp + CUSTOM_FLAGS + -msse4.1 +) |