rust/code/native/build.rs

8 lines
144 B
Rust
Raw Normal View History

2018-07-30 20:58:49 +02:00
extern crate neon_build;
fn main() {
neon_build::setup(); // must be called in build.rs
// add project-specific build logic here...
}