On Apr 3, 9:37 am, Bradley Meck <[email protected]> wrote: > The one downside I have noted with node-gyp is how much of a pain it is to > bundle some package as a dependency that includes a different build manager > like cmake. Perhaps that is the situation here.
Well, you can either gypify the dependency (that's what I've done) or write a 'build.js' that is executed on `npm install` that executes cmake first and ensures it succeeds first before continuing with node- gyp? Or maybe you can use gyp command expansion to execute cmake and if a non-zero exit code occurs, gyp should fail. -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
