rust/chg/build.rs
author Raphaël Gomès <rgomes@octobus.net>
Wed, 10 Jul 2019 10:16:28 +0200
changeset 42747 760a7851e9ba
parent 40118 cd490ac908c0
child 44688 1f5ab1a9363d
permissions -rw-r--r--
rust-parsers: move parser bindings to their own file and Python module This tidies up the Rust side while simplifying the Python side. Differential Revision: https://phab.mercurial-scm.org/D6627

extern crate cc;

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