rust/chg/build.rs
author Pulkit Goyal <pulkit@yandex-team.ru>
Wed, 10 Apr 2019 03:10:53 +0530
changeset 42098 5753e5949b51
parent 40118 cd490ac908c0
child 44688 1f5ab1a9363d
permissions -rw-r--r--
py3: add b'' prefixes to new doctests in match.py # skip-blame as just b'' prefixes Differential Revision: https://phab.mercurial-scm.org/D6221

extern crate cc;

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