mirror of https://github.com/dswd/vpncloud.git
5 lines
117 B
Rust
5 lines
117 B
Rust
|
extern crate gcc;
|
||
|
|
||
|
fn main() {
|
||
|
gcc::Config::new().file("src/c/tapdev.c").include("src").compile("libtapdev.a");
|
||
|
}
|