librespot/build.rs
2017-01-29 12:50:18 +00:00

25 lines
550 B
Rust

extern crate vergen;
#[cfg(feature = "with-syntex")]
fn codegen() {
extern crate protobuf_macros;
extern crate serde_codegen;
use std::env;
use std::path::PathBuf;
let out = PathBuf::from(env::var("OUT_DIR").unwrap());
serde_codegen::expand("src/lib.in.rs", &out.join("lib.tmp0.rs")).unwrap();
protobuf_macros::expand(&out.join("lib.tmp0.rs"), &out.join("lib.rs")).unwrap();
}
#[cfg(not(feature = "with-syntex"))]
fn codegen() { }
fn main() {
vergen::vergen(vergen::OutputFns::all()).unwrap();
codegen();
}