// Licensed under the Apache License, Version 2.0 // or the MIT license // // All files in the project carrying such notice may not be copied, modified, or distributed // except according to those terms. extern crate cc; #[cfg(not(windows))] fn main() {} #[cfg(windows)] fn main() { cc::Build::new() .cpp(true) .file("src/bindings.cpp") .compile("fwb"); }