summaryrefslogtreecommitdiff
path: root/subplotlib
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2022-04-02 09:50:39 +0300
committerLars Wirzenius <liw@liw.fi>2022-04-10 15:57:57 +0300
commit85212e8ddc54c6ede71912127eaf84aac403f10d (patch)
tree3d6a86f55231ace670ecdf1a6b42b237db2632f8 /subplotlib
parenta3d768162e70004d207a40d803f5d17eeea8593a (diff)
downloadsubplot-85212e8ddc54c6ede71912127eaf84aac403f10d.tar.gz
feat! treat warnings as errors by default
Add a --merciful option to subcommands for which this matters. Adjust tests to invoke subplot with that option as necessary. Sponsored-by: author
Diffstat (limited to 'subplotlib')
-rw-r--r--subplotlib/build.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/subplotlib/build.rs b/subplotlib/build.rs
index d1eeefd..5b02a27 100644
--- a/subplotlib/build.rs
+++ b/subplotlib/build.rs
@@ -28,6 +28,7 @@ fn main() {
panic!("missing include file: {}", inc.display());
}
println!("cargo:rerun-if-changed={}", inc.display());
+ println!("cargo:rerun-if-changed={}", entry.display());
subplot_build::codegen(Path::new(&entry)).expect("failed to generate code with Subplot");
}
}