15 lines
391 B
Rust
15 lines
391 B
Rust
fn main() {
|
|
glib_build_tools::compile_resources(
|
|
&["resources"],
|
|
"gresources.xml",
|
|
"com.luminescent-dreams.kifu-gtk.gresource",
|
|
);
|
|
|
|
let messages = std::process::Command::new("codegen-rust")
|
|
.arg("messages/en.yaml")
|
|
.output()
|
|
.expect("Failed to execute command");
|
|
|
|
println!("{}", String::from_utf8(messages.stdout).unwrap());
|
|
}
|