summaryrefslogtreecommitdiffstats
path: root/library/cpp/malloc/mimalloc
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/malloc/mimalloc')
-rw-r--r--library/cpp/malloc/mimalloc/link_test/ya.make9
-rw-r--r--library/cpp/malloc/mimalloc/ya.make19
2 files changed, 28 insertions, 0 deletions
diff --git a/library/cpp/malloc/mimalloc/link_test/ya.make b/library/cpp/malloc/mimalloc/link_test/ya.make
new file mode 100644
index 00000000000..1488b55072f
--- /dev/null
+++ b/library/cpp/malloc/mimalloc/link_test/ya.make
@@ -0,0 +1,9 @@
+PROGRAM()
+
+ALLOCATOR(MIM)
+
+SRCS(
+ main.cpp
+)
+
+END()
diff --git a/library/cpp/malloc/mimalloc/ya.make b/library/cpp/malloc/mimalloc/ya.make
new file mode 100644
index 00000000000..fe0f2fd0b52
--- /dev/null
+++ b/library/cpp/malloc/mimalloc/ya.make
@@ -0,0 +1,19 @@
+LIBRARY()
+
+NO_UTIL()
+ALLOCATOR_IMPL()
+
+PEERDIR(
+ library/cpp/malloc/api
+ contrib/libs/mimalloc
+)
+
+SRCS(
+ info.cpp
+)
+
+END()
+
+RECURSE(
+ link_test
+)