NodeJs native binding 추가

This commit is contained in:
freestrings
2019-03-14 22:30:42 +09:00
parent 1a3104c5db
commit 47e120f66d
69 changed files with 4967 additions and 1424 deletions

7
nodejs/native/build.rs Normal file
View File

@ -0,0 +1,7 @@
extern crate neon_build;
fn main() {
neon_build::setup(); // must be called in build.rs
// add project-specific build logic here...
}