2023-12-18 16:59:56 +00:00
|
|
|
fn main() {
|
2024-01-25 15:08:50 +00:00
|
|
|
let resources_path = std::env::var_os("PWD").unwrap().clone();
|
|
|
|
let resources_path = resources_path.to_string_lossy().to_owned();
|
|
|
|
let resources_path = resources_path + "/resources/gresources.xml";
|
|
|
|
eprintln!("resources: {}", resources_path);
|
|
|
|
|
2023-12-18 16:59:56 +00:00
|
|
|
glib_build_tools::compile_resources(
|
|
|
|
&["resources"],
|
2024-01-25 15:08:50 +00:00
|
|
|
resources_path.as_ref(),
|
2023-12-18 16:59:56 +00:00
|
|
|
"com.luminescent-dreams.fitnesstrax.gresource",
|
|
|
|
);
|
|
|
|
}
|