mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-06-12 19:01:02 +00:00
Build using relative path in repo if Windows lost symlink
This commit is contained in:
@@ -0,0 +1,12 @@
|
|||||||
|
use std::path::Path;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
// Sometimes on Windows the git checkout does not correctly wire up the
|
||||||
|
// symlink from serde_derive_internals/src to serde_derive/src/internals.
|
||||||
|
// When this happens we'll just build based on relative paths within the git
|
||||||
|
// repo.
|
||||||
|
let mod_behind_symlink = Path::new("src/mod.rs");
|
||||||
|
if !mod_behind_symlink.exists() {
|
||||||
|
println!("cargo:rustc-cfg=serde_build_from_git");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -40,7 +40,8 @@ extern crate syn;
|
|||||||
extern crate proc_macro2;
|
extern crate proc_macro2;
|
||||||
extern crate quote;
|
extern crate quote;
|
||||||
|
|
||||||
#[path = "src/mod.rs"]
|
#[cfg_attr(serde_build_from_git, path = "../serde_derive/src/internals/mod.rs")]
|
||||||
|
#[cfg_attr(not(serde_build_from_git), path = "src/mod.rs")]
|
||||||
mod internals;
|
mod internals;
|
||||||
|
|
||||||
pub use internals::*;
|
pub use internals::*;
|
||||||
|
|||||||
Reference in New Issue
Block a user