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.make18
2 files changed, 27 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..87b3a6420ac
--- /dev/null
+++ b/library/cpp/malloc/mimalloc/ya.make
@@ -0,0 +1,18 @@
+LIBRARY()
+
+NO_UTIL()
+
+PEERDIR(
+ library/cpp/malloc/api
+ contrib/libs/mimalloc
+)
+
+SRCS(
+ info.cpp
+)
+
+END()
+
+RECURSE(
+ link_test
+)