view rust/chg/build.rs @ 42098:5753e5949b51

py3: add b'' prefixes to new doctests in match.py # skip-blame as just b'' prefixes Differential Revision: https://phab.mercurial-scm.org/D6221
author Pulkit Goyal <pulkit@yandex-team.ru>
date Wed, 10 Apr 2019 03:10:53 +0530
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");
}