mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-25 05:09:04 +08:00
e6bf858ae1
Signed-off-by: fufesou <shuanglongchen@yeah.net>
36 lines
918 B
Rust
36 lines
918 B
Rust
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", "");
|
|
build.flag("-Zi");
|
|
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")]
|
|
build.compile("xxx");
|
|
|
|
#[cfg(target_os = "windows")]
|
|
println!("cargo:rerun-if-changed=src/win10/IddController.c");
|
|
}
|
|
|
|
fn main() {
|
|
build_c_impl();
|
|
}
|