podcasts/hammond-gtk/build.rs
2017-11-06 12:19:10 +02:00

10 lines
208 B
Rust

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