dal/binding.gyp
Anton Nesterov 07a61af8e5
[feat] test nodejs bindings
Signed-off-by: Anton Nesterov <anton@demiurg.io>
2024-08-20 03:36:41 +02:00

16 lines
317 B
Python

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