binding.gyp 537 B

123456789101112131415161718192021
  1. {
  2. "targets": [{
  3. "target_name": "deasync",
  4. "cflags!": [ "-fno-exceptions" ],
  5. "cflags_cc!": [ "-fno-exceptions" ],
  6. "xcode_settings": { "GCC_ENABLE_CPP_EXCEPTIONS": "YES",
  7. "CLANG_CXX_LIBRARY": "libc++",
  8. "MACOSX_DEPLOYMENT_TARGET": "10.7",
  9. },
  10. "msvs_settings": {
  11. "VCCLCompilerTool": { "ExceptionHandling": 1 },
  12. },
  13. "sources": [
  14. "src/deasync.cc"
  15. ],
  16. "include_dirs": [
  17. "<!@(node -p \"require('node-addon-api').include\")",
  18. ]
  19. }]
  20. }