imgui-rs/imgui-sys/build.rs
2019-06-27 23:05:44 +03:00

38 lines
1001 B
Rust

use std::fs;
use std::io;
const CPP_FILES: [&str; 5] = [
"third-party/cimgui/cimgui.cpp",
"third-party/cimgui/imgui/imgui.cpp",
"third-party/cimgui/imgui/imgui_demo.cpp",
"third-party/cimgui/imgui/imgui_draw.cpp",
"third-party/cimgui/imgui/imgui_widgets.cpp",
];
fn assert_file_exists(path: &str) -> io::Result<()> {
match fs::metadata(path) {
Ok(_) => Ok(()),
Err(ref e) if e.kind() == io::ErrorKind::NotFound => {
panic!(
"Can't access {}. Did you forget to fetch git submodules?",
path
);
}
Err(e) => Err(e),
}
}
fn main() -> io::Result<()> {
let mut build = cc::Build::new();
build.cpp(true);
for path in &CPP_FILES {
assert_file_exists(path)?;
build.file(path);
}
build.compile("libcimgui.a");
if std::env::var("TARGET").unwrap().contains("-apple") {
println!("cargo:rustc-link-lib=framework=CoreFoundation");
}
Ok(())
}