Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions glib-build-tools/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub fn compile_resources<P: AsRef<Path>>(source_dirs: &[P], gresource: &str, tar
String::from_utf8_lossy(&output.stderr)
);

println!("cargo:rerun-if-changed={gresource}");
println!("cargo::rerun-if-changed={gresource}");
let mut command = Command::new("glib-compile-resources");

for source_dir in source_dirs {
Expand All @@ -54,6 +54,6 @@ pub fn compile_resources<P: AsRef<Path>>(source_dirs: &[P], gresource: &str, tar
.stdout;
let output = String::from_utf8(output).unwrap();
for dep in output.split_whitespace() {
println!("cargo:rerun-if-changed={dep}");
println!("cargo::rerun-if-changed={dep}");
}
}
Loading