10 lines
204 B
Rust
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();
|
|
}
|