vpncloud/build.rs

10 lines
259 B
Rust
Raw Normal View History

2017-07-22 14:49:53 +00:00
// VpnCloud - Peer-to-Peer VPN
// Copyright (C) 2015-2017 Dennis Schwerdel
// This software is licensed under GPL-3 or newer (see LICENSE.md)
2019-01-01 23:35:14 +00:00
extern crate cc;
2015-11-19 15:34:20 +00:00
fn main() {
2019-01-01 23:35:14 +00:00
cc::Build::new().file("src/c/tuntap.c").include("src").compile("libtuntap.a");
2015-11-21 16:06:57 +00:00
}