Files
tree-sitter-jhcl/binding.gyp
2021-06-07 20:50:00 +02:00

20 lines
389 B
Python

{
"targets": [
{
"target_name": "tree_sitter_YOUR_LANGUAGE_NAME_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",
]
}
]
}