view rust/chg/build.rs @ 44565:0af56d3ee24c

tests: make test-doctest.t automatically find files to run tests on Differential Revision: https://phab.mercurial-scm.org/D8294
author Kyle Lippincott <spectral@google.com>
date Thu, 12 Mar 2020 20:18:52 -0700
parents cd490ac908c0
children 1f5ab1a9363d
line wrap: on
line source

extern crate cc;

fn main() {
    cc::Build::new()
        .warnings(true)
        .file("src/sendfds.c")
        .file("src/sighandlers.c")
        .compile("procutil");
}