Files
google-apis-rs/gen/dfareporting2d2/src/build.rs
Sebastian Thiel c6f9205758 chore(update): make regen-apis
Fixes #151
2016-05-30 08:38:10 +02:00

28 lines
612 B
Rust

#[cfg(feature = "with-syntex")]
mod inner {
extern crate syntex;
extern crate serde_codegen;
use std::env;
use std::path::Path;
pub fn main() {
let out_dir = env::var_os("OUT_DIR").unwrap();
let src = Path::new("src/lib.rs.in");
let dst = Path::new(&out_dir).join("lib.rs");
let mut registry = syntex::Registry::new();
serde_codegen::register(&mut registry);
registry.expand("google-dfareporting2d2", &src, &dst).unwrap();
}
}
#[cfg(not(feature = "with-syntex"))]
mod inner {
pub fn main() {}
}
pub fn main() {
inner::main()
}