Mercurial > hg
view rust/chg/build.rs @ 43181:5ff32fdf0b0b
help: adding a help category to narrow and remotefilelog commands
Differential Revision: https://phab.mercurial-scm.org/D6998
author | Rodrigo Damazio <rdamazio@google.com> |
---|---|
date | Sun, 06 Oct 2019 03:30:00 -0400 |
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"); }