2025-04-28 12:25:20 +08:00

25 lines
719 B
Python

{
'targets': [{
'target_name': 'binding',
'sources': [ 'src/binding.cc' ],
'include_dirs': [
"<!@(node -p \"require('node-addon-api').include\")",
"<!@(node -p \"require('get-symbol-from-current-process-h').include\")",
"<!@(node -p \"require('./lib/get-paths').include\")",
],
'dependencies': [
"<!(node -p \"require('node-addon-api').gyp\")"
],
'cflags!': [ '-fno-exceptions' ],
'cflags_cc!': [ '-fno-exceptions' ],
'xcode_settings': {
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
'CLANG_CXX_LIBRARY': 'libc++',
'MACOSX_DEPLOYMENT_TARGET': '10.7',
},
'msvs_settings': {
'VCCLCompilerTool': { 'ExceptionHandling': 1 },
},
}]
}