snespatcher/build.rs

14 lines
497 B
Rust
Raw Normal View History

2021-06-27 15:42:21 -05:00
use std::process::Command;
fn main() {
// let _ = Command::new("sh")
// .args(&["-c", "cd resources && gtk4-builder-tool simplify --3to4 snespatcher.ui --replace"])
// .output()
// .expect("failed to execute process");
let _ = Command::new("sh")
.args(&["-c", "cd resources && glib-compile-resources resources.xml"])
.output()
.expect("failed to execute process");
}