mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 05:28:35 +00:00
39 lines
1.0 KiB
Rust
39 lines
1.0 KiB
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);
|
|
// Disabled due to linking issues
|
|
build
|
|
.define("IMGUI_DISABLE_WIN32_FUNCTIONS", None)
|
|
.define("IMGUI_DISABLE_OSX_FUNCTIONS", None);
|
|
for path in &CPP_FILES {
|
|
assert_file_exists(path)?;
|
|
build.file(path);
|
|
}
|
|
build.compile("libcimgui.a");
|
|
Ok(())
|
|
}
|