diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
commit | bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch) | |
tree | 1d1df72c0541a59a81439842f46d95396d3e7189 /contrib/restricted/dragonbox | |
parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
download | ydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz |
add ymake export to ydb
Diffstat (limited to 'contrib/restricted/dragonbox')
-rw-r--r-- | contrib/restricted/dragonbox/ya.make | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/contrib/restricted/dragonbox/ya.make b/contrib/restricted/dragonbox/ya.make new file mode 100644 index 0000000000..2ccff2fdf1 --- /dev/null +++ b/contrib/restricted/dragonbox/ya.make @@ -0,0 +1,31 @@ +LIBRARY(dragonbox) + +# git repository: https://github.com/ClickHouse-Extras/dragonbox.git +# fork of: https://github.com/jk-jeon/dragonbox.git +# revision: b2751c65c0592c0239aec3becd53d0ea2fde9329 + +VERSION(2020-12-14-b2751c65c0592c0239aec3becd53d0ea2fde9329) + +LICENSE( + "(BSL-1.0 OR Apache-2.0)" AND + Apache-2.0 AND + Apache-2.0 WITH LLVM-exception AND + BSL-1.0 AND + MIT +) + +LICENSE_TEXTS(.yandex_meta/licenses.list.txt) + +NO_UTIL() + +NO_COMPILER_WARNINGS() + +ADDINCL( + GLOBAL contrib/restricted/dragonbox/include +) + +SRCS( + source/dragonbox_to_chars.cpp +) + +END() |