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()); }