Mercurial > hg
view rust/chg/build.rs @ 47951:cff41e168c25
rhg: Switch rhg.ignored-extensions config to Python-compatible list syntax
This includes the ability to have an extension name/path that contains a comma,
by double-quoting it.
Differential Revision: https://phab.mercurial-scm.org/D11390
author | Simon Sapin <simon.sapin@octobus.net> |
---|---|
date | Fri, 03 Sep 2021 16:32:35 +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"); }