summaryrefslogtreecommitdiffstats
path: root/vendor/signal-hook/build.rs
blob: 82545f1eccb0e1cf13882ef89d42a91fae4d1fd1 (plain)
1
2
3
4
5
6
7
8
9
#[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() {}