// Copyright 2018 MaidSafe.net limited. // // This SAFE Network Software is licensed to you under the MIT license or the Modified BSD license , at your option. This file may not be copied, // modified, or distributed except according to those terms. Please review the Licences for the // specific language governing permissions and limitations relating to use of the SAFE Network // Software. extern crate gcc; use std::env; fn main() { let mut cfg = gcc::Build::new(); if env::var("TARGET").unwrap().contains("android") { cfg.include("native") .file("native/ifaddrs.c") .compile("libifaddrs.a"); } }