aboutsummaryrefslogtreecommitdiff
path: root/binding.gyp
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-09-28 03:44:06 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-09-28 03:44:52 +0200
commit94b1b4ad12c8bb04fc9ff84b1b9c0a707ad675a6 (patch)
treef0e2bfad824935c2eb2e9fe22bec07164d038df2 /binding.gyp
Genesis commit
Diffstat (limited to 'binding.gyp')
-rw-r--r--binding.gyp19
1 files changed, 19 insertions, 0 deletions
diff --git a/binding.gyp b/binding.gyp
new file mode 100644
index 0000000..6ae7c31
--- /dev/null
+++ b/binding.gyp
@@ -0,0 +1,19 @@
+{
+ "targets": [
+ {
+ "target_name": "tree_sitter_gsp_binding",
+ "include_dirs": [
+ "<!(node -e \"require('nan')\")",
+ "src"
+ ],
+ "sources": [
+ "bindings/node/binding.cc",
+ "src/parser.c",
+ # If your language uses an external scanner, add it here.
+ ],
+ "cflags_c": [
+ "-std=c99",
+ ]
+ }
+ ]
+}