Compare commits

..

No commits in common. "diagnostics" and "main" have entirely different histories.

1 changed files with 5 additions and 27 deletions

View File

@ -1,29 +1,7 @@
use std::{env, path::Path, process::Command};
fn main() { fn main() {
let source_dirs: Vec<String> = vec!["/build/source".to_owned()]; glib_build_tools::compile_resources::<String>(
let gresource = "/build/source/gresources.xml"; &[],
let target = "com.luminescent-dreams.resources-demo"; "gresources.xml",
"com.luminescent-dreams.resources-demo",
let out_dir = env::var("OUT_DIR").unwrap(); );
let out_dir = Path::new(&out_dir);
let mut command = Command::new("glib-compile-resources");
for source_dir in source_dirs {
command.arg("--sourcedir").arg(&source_dir);
}
let cmd = command.arg("--target").arg(out_dir.join(target)).arg(gresource);
eprintln!("[Program ] {}", cmd.get_program().to_string_lossy().to_owned());
for arg in cmd.get_args() {
eprintln!("[arg ] {}", arg.to_string_lossy().to_owned());
}
eprintln!("[current dir] {:?}", cmd.get_current_dir());
let output = cmd.output().unwrap();
for line in String::from_utf8(output.stdout).unwrap().lines() {
eprintln!("{}", line);
}
} }