10 lines
223 B
Rust
10 lines
223 B
Rust
use std::process::Command;
|
|
|
|
fn main() {
|
|
// Compile Gresource
|
|
Command::new("glib-compile-resources")
|
|
.args(&["--generate", "resources.xml"])
|
|
.current_dir("res")
|
|
.status()
|
|
.unwrap();
|
|
}
|