view rust/chg/build.rs @ 48139:ab5a7fdbf75c

dirstate-v2: Store a bitfield on disk instead of v1-like state Differential Revision: https://phab.mercurial-scm.org/D11558
author Simon Sapin <simon.sapin@octobus.net>
date Fri, 01 Oct 2021 18:49:33 +0200
parents 1f5ab1a9363d
children
line wrap: on
line source

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