binding.gyp 549 B

12345678910111213141516171819202122232425
  1. {
  2. "targets": [
  3. {
  4. "target_name": "rdb",
  5. "sources": [
  6. "rdb.cc",
  7. "db_wrapper.cc",
  8. "db_wrapper.h"
  9. ],
  10. "cflags_cc!": [
  11. "-fno-exceptions"
  12. ],
  13. "cflags_cc+": [
  14. "-std=c++11",
  15. ],
  16. "include_dirs+": [
  17. "../../include"
  18. ],
  19. "libraries": [
  20. "../../../librocksdb.a",
  21. "-lsnappy"
  22. ],
  23. }
  24. ]
  25. }