dal/binding.gyp
Anton Nesterov c665c1c2fb
[feat] nodejs bindings
Signed-off-by: Anton Nesterov <anton@demiurg.io>
2024-08-20 13:09:35 +02:00

16 lines
329 B
Python

{
'targets': [
{
'target_name': 'dal',
'sources': [
'binding/dal.h',
'binding/dal.cc'
],
'libraries': [ '../binding/dal.a' ],
'defines': [ 'NAPI_DISABLE_CPP_EXCEPTIONS' ],
"include_dirs": [
"<!@(node -p \"require('node-addon-api').include\")"
],
}
]
}