I\'m writing binding.gyp file for my new node.js module. I have all my source files under src/ subdirectory. I would like to use all of them while buil
binding.gyp
src/
If anyone wants to include all sub files and folders within a certain folder (defined at end of line, here as "sources"):
{ "targets": [ { "target_name": "addon", "sources": [ "
(based off, but not exactly: node.js fs.readdir recursive directory search)