style::properties : move generated file out of source tree, use new-style Cargo build script.

This commit is contained in:
Simon Sapin 2015-01-28 23:09:35 +01:00
parent d13d36f57f
commit 6e95bd8e50
7 changed files with 48 additions and 13 deletions

View file

@ -34,13 +34,18 @@ extern crate lazy_static;
extern crate util;
#[plugin] #[no_link] extern crate mod_path;
pub mod stylesheets;
pub mod parser;
pub mod selectors;
pub mod selector_matching;
#[macro_use] pub mod values;
#[macro_use] pub mod properties;
// Generated from the properties.mako.rs template by build.rs
mod_path! properties (concat!(env!("OUT_DIR"), "/properties.rs"));
pub mod node;
pub mod media_queries;
pub mod font_face;