summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-08-14 14:27:52 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-08-14 14:27:52 +0800
commit8a6cf5eca130885821f34f50fec5986230aa2ed4 (patch)
tree9cd44e02102417ff114e953ab51a70b77b01cac8
parent31a23ff4d20d7b89d3284eaecd34cd794d9738c4 (diff)
Add support for creating node.js extension
-rw-r--r--.gitignore2
-rw-r--r--binding.gyp9
2 files changed, 10 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 8fe1b76..c76190a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,5 @@
*~
-*_wrap.c
+*_wrap.c**
*blib
*.bs
*.o
diff --git a/binding.gyp b/binding.gyp
new file mode 100644
index 0000000..907608e
--- /dev/null
+++ b/binding.gyp
@@ -0,0 +1,9 @@
+{
+ "targets": [
+ {
+ "target_name": "pikul",
+ "sources": [ "pikul.cxx", "pikul_wrap.cxx" ]
+ }
+ ]
+}
+