7 lines
176 B
Rust
7 lines
176 B
Rust
fn main() {
|
|
if std::env::var_os("CARGO_CFG_UNIX").is_some() {
|
|
cc::Build::new()
|
|
.file("src/sys/unix/cmsghdr.c")
|
|
.compile("cmsghdr");
|
|
}
|
|
}
|