binding.gyp 417 B

123456789101112131415161718192021
  1. {
  2. "targets": [
  3. { "target_name": "" }
  4. ],
  5. "conditions": [
  6. ['OS=="mac"', {
  7. "targets": [{
  8. "target_name": "fse",
  9. "sources": ["fsevents.cc"],
  10. "xcode_settings": {
  11. "OTHER_LDFLAGS": [
  12. "-framework CoreFoundation -framework CoreServices"
  13. ]
  14. },
  15. "include_dirs": [
  16. "<!(node -e \"require('nan')\")"
  17. ]
  18. }]
  19. }]
  20. ]
  21. }