summaryrefslogtreecommitdiffstats
path: root/library/cpp/containers/stack_array
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/containers/stack_array')
-rw-r--r--library/cpp/containers/stack_array/ut/ya.make7
-rw-r--r--library/cpp/containers/stack_array/ya.make12
2 files changed, 19 insertions, 0 deletions
diff --git a/library/cpp/containers/stack_array/ut/ya.make b/library/cpp/containers/stack_array/ut/ya.make
new file mode 100644
index 00000000000..fdd5b8cdbac
--- /dev/null
+++ b/library/cpp/containers/stack_array/ut/ya.make
@@ -0,0 +1,7 @@
+UNITTEST_FOR(library/cpp/containers/stack_array)
+
+SRCS(
+ tests_ut.cpp
+)
+
+END()
diff --git a/library/cpp/containers/stack_array/ya.make b/library/cpp/containers/stack_array/ya.make
new file mode 100644
index 00000000000..8bce0023e32
--- /dev/null
+++ b/library/cpp/containers/stack_array/ya.make
@@ -0,0 +1,12 @@
+LIBRARY()
+
+SRCS(
+ range_ops.cpp
+ stack_array.cpp
+)
+
+END()
+
+RECURSE_FOR_TESTS(
+ ut
+)