podcasts/hammond-gtk/build.rs
2017-11-06 14:35:50 +02:00

10 lines
204 B
Rust

use std::process::Command;
fn main() {
Command::new("glib-compile-resources")
.args(&["--generate", "resources.xml"])
.current_dir("resources")
.status()
.unwrap();
}