]> saetta.ns0.it Git - rust/zakform/commitdiff
Added script to re-build gettext catalogs on cargo build.
authorAndrea Zagli <azagli@libero.it>
Sat, 30 Sep 2023 10:02:45 +0000 (12:02 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 30 Sep 2023 10:02:45 +0000 (12:02 +0200)
build.rs [new file with mode: 0644]

diff --git a/build.rs b/build.rs
new file mode 100644 (file)
index 0000000..26d6f02
--- /dev/null
+++ b/build.rs
@@ -0,0 +1,7 @@
+use std::process::Command;
+
+fn main() {
+       println!("cargo:rerun-if-changed=po/it.po");
+
+       Command::new("msgfmt").args(&["po/it.po", "-o", "po/it.mo"]).status().unwrap();
+}