third_party_rust_signal-hook/build.rs

10 lines
206 B
Rust
Raw Normal View History

#[cfg(feature = "extended-siginfo-raw")]
fn main() {
cc::Build::new()
.file("src/low_level/extract.c")
.compile("extract");
}
#[cfg(not(feature = "extended-siginfo-raw"))]
fn main() {}