vpncloud/build.rs

6 lines
118 B
Rust
Raw Normal View History

2015-11-19 15:34:20 +00:00
extern crate gcc;
fn main() {
2015-11-21 16:06:57 +00:00
gcc::Config::new().file("src/c/tuntap.c").include("src").compile("libtuntap.a");
}