aboutsummaryrefslogtreecommitdiff
path: root/code/native/build.rs
blob: 687a6619460e768d374855902515d54e52d23a56 (plain)
1
2
3
4
5
6
7
extern crate neon_build;

fn main() {
    neon_build::setup(); // must be called in build.rs

    // add project-specific build logic here...
}