mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2025-12-30 08:08:50 +01:00
25 lines
481 B
Rust
25 lines
481 B
Rust
#[cfg(feature = "with-serde-codegen")]
|
|
mod inner {
|
|
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");
|
|
|
|
serde_codegen::expand(&src, &dst).unwrap();
|
|
}
|
|
}
|
|
|
|
#[cfg(not(feature = "with-serde-codegen"))]
|
|
mod inner {
|
|
pub fn main() {}
|
|
}
|
|
|
|
pub fn main() {
|
|
inner::main()
|
|
} |