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 /library/cpp/int128 | |
parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
download | ydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz |
add ymake export to ydb
Diffstat (limited to 'library/cpp/int128')
-rw-r--r-- | library/cpp/int128/bench/ya.make | 11 | ||||
-rw-r--r-- | library/cpp/int128/ut/ya.make | 18 | ||||
-rw-r--r-- | library/cpp/int128/ya.make | 13 |
3 files changed, 42 insertions, 0 deletions
diff --git a/library/cpp/int128/bench/ya.make b/library/cpp/int128/bench/ya.make new file mode 100644 index 0000000000..0dbc45e21f --- /dev/null +++ b/library/cpp/int128/bench/ya.make @@ -0,0 +1,11 @@ +Y_BENCHMARK() + +SRCS( + main.cpp +) + +PEERDIR( + library/cpp/int128 +) + +END() diff --git a/library/cpp/int128/ut/ya.make b/library/cpp/int128/ut/ya.make new file mode 100644 index 0000000000..22ef97d566 --- /dev/null +++ b/library/cpp/int128/ut/ya.make @@ -0,0 +1,18 @@ +UNITTEST_FOR(library/cpp/int128) + +SRCS( + int128_ut_helpers.cpp + int128_ut_helpers.h + int128_ut.cpp + int128_typetraits_ut.cpp + int128_old_ut.cpp + int128_via_intrinsic_ut.cpp + i128_ut.cpp + i128_and_intrinsic_identity_ut.cpp + i128_comparison_ut.cpp + i128_division_ut.cpp + i128_type_traits_ut.cpp + ui128_division_ut.cpp +) + +END() diff --git a/library/cpp/int128/ya.make b/library/cpp/int128/ya.make new file mode 100644 index 0000000000..095d7e3cb6 --- /dev/null +++ b/library/cpp/int128/ya.make @@ -0,0 +1,13 @@ +LIBRARY() + +SRCS( + int128.cpp + int128.h +) + +END() + +RECURSE( + bench + ut +) |