2022-03-11 19:51:57 +08:00
|
|
|
use cc;
|
|
|
|
|
|
|
|
fn build_c_impl() {
|
|
|
|
let mut build = cc::Build::new();
|
|
|
|
|
|
|
|
#[cfg(target_os = "windows")]
|
|
|
|
build.file("src/win10/IddController.c");
|
|
|
|
|
|
|
|
build.flag_if_supported("-Wno-c++0x-extensions");
|
|
|
|
build.flag_if_supported("-Wno-return-type-c-linkage");
|
|
|
|
build.flag_if_supported("-Wno-invalid-offsetof");
|
|
|
|
build.flag_if_supported("-Wno-unused-parameter");
|
|
|
|
|
|
|
|
if build.get_compiler().is_like_msvc() {
|
|
|
|
build.define("WIN32", "");
|
2022-11-18 13:33:54 +08:00
|
|
|
build.flag("-Z7");
|
2022-03-11 19:51:57 +08:00
|
|
|
build.flag("-GR-");
|
|
|
|
// build.flag("-std:c++11");
|
|
|
|
} else {
|
|
|
|
build.flag("-fPIC");
|
|
|
|
// build.flag("-std=c++11");
|
|
|
|
// build.flag("-include");
|
|
|
|
// build.flag(&confdefs_path.to_string_lossy());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "windows")]
|
2022-11-18 13:33:54 +08:00
|
|
|
build.compile("win_virtual_display");
|
2022-03-11 19:51:57 +08:00
|
|
|
|
|
|
|
#[cfg(target_os = "windows")]
|
|
|
|
println!("cargo:rerun-if-changed=src/win10/IddController.c");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
build_c_impl();
|
|
|
|
}
|