rust/code/native/build.rs
Aleksey Kladov ac0d8c48f7 JS plugin
2018-07-30 21:58:49 +03:00

7 lines
144 B
Rust

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