We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7787b21 commit ff5478cCopy full SHA for ff5478c
ports/geckolib/build.rs
@@ -41,6 +41,10 @@ fn main() {
41
let geckolib_dir = Path::new(file!()).parent().unwrap();
42
let top_dir = geckolib_dir.join("..").join("..");
43
44
+ let properties_dir = top_dir.join("components").join("style").join("properties");
45
+ println!("cargo:rerun-if-changed={}", properties_dir.to_str().unwrap());
46
+ println!("cargo:rerun-if-changed={}", geckolib_dir.join("properties.mako.rs").to_str().unwrap());
47
+
48
let style_template = Path::new("components/style/properties/properties.mako.rs");
49
let geckolib_template = Path::new("ports/geckolib/properties.mako.rs");
50
let mako = Path::new("components/style/properties/Mako-0.9.1.zip");
0 commit comments