From 466d9b31cebb8fee7a22e6e68a6cd02151179c4d Mon Sep 17 00:00:00 2001 From: Leaf Garland Date: Sun, 24 May 2020 21:25:52 +1200 Subject: [PATCH] Add project.janet for numarray --- examples/numarray/project.janet | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 examples/numarray/project.janet diff --git a/examples/numarray/project.janet b/examples/numarray/project.janet new file mode 100644 index 00000000..6cf5f327 --- /dev/null +++ b/examples/numarray/project.janet @@ -0,0 +1,7 @@ +(declare-project + :name "numarray" + :description "Example c lib with abstract type") + +(declare-native + :name "numarray" + :source @["numarray.c"])