Move Mako-related files into a new sub-directory.

There’s gonna be more of them.
This commit is contained in:
Simon Sapin 2016-04-18 16:16:57 +02:00
parent b7eb720c74
commit 7787b21e30
8 changed files with 10 additions and 6 deletions

View file

@ -41,9 +41,9 @@ fn main() {
let geckolib_dir = Path::new(file!()).parent().unwrap();
let top_dir = geckolib_dir.join("..").join("..");
let style_template = Path::new("components/style/properties.mako.rs");
let style_template = Path::new("components/style/properties/properties.mako.rs");
let geckolib_template = Path::new("ports/geckolib/properties.mako.rs");
let mako = Path::new("components/style/Mako-0.9.1.zip");
let mako = Path::new("components/style/properties/Mako-0.9.1.zip");
let result = Command::new(python)
.current_dir(top_dir)