binding.gyp 621 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "targets": [
  3. {
  4. "target_name": "segfault-handler",
  5. "sources": [
  6. "src/segfault-handler.cpp"
  7. ],
  8. "conditions": [
  9. ["OS=='win'", {
  10. "msvs_settings": {
  11. "VCCLCompilerTool": {
  12. "DisableSpecificWarnings": ["4996"]
  13. }
  14. },
  15. "sources": [
  16. "src/StackWalker.cpp",
  17. "includes/StackWalker.h"
  18. ]
  19. }]
  20. ],
  21. "cflags": [ "-O0" ],
  22. "xcode_settings": {
  23. "OTHER_CFLAGS": [ "-O0" ]
  24. },
  25. "include_dirs": [
  26. "<!(node -e \"require('nan')\")"
  27. ]
  28. }
  29. ]
  30. }