mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 12:57:38 +03:00
Merge pull request #226 from dtolnay/windows
Support OUT_DIR located in `\\?\` path on Windows
This commit is contained in:
commit
e18f5c3ad1
2 changed files with 12 additions and 0 deletions
6
build.rs
6
build.rs
|
@ -5,6 +5,7 @@ use std::path::PathBuf;
|
|||
fn main() {
|
||||
println!("cargo:rerun-if-changed=build.rs");
|
||||
println!("cargo:rustc-check-cfg=cfg(exhaustive)");
|
||||
println!("cargo:rustc-check-cfg=cfg(host_os, values(\"windows\"))");
|
||||
|
||||
let prettyplease_version = match env::var("DEP_PRETTYPLEASE02_VERSION") {
|
||||
Ok(prettyplease_version) => format!(r#"Some("{}")"#, prettyplease_version.escape_debug()),
|
||||
|
@ -14,4 +15,9 @@ fn main() {
|
|||
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
|
||||
let prettyplease_version_file = out_dir.join("prettyplease.version");
|
||||
fs::write(prettyplease_version_file, prettyplease_version).unwrap();
|
||||
|
||||
let host = env::var_os("HOST").unwrap();
|
||||
if let Some("windows") = host.to_str().unwrap().split('-').nth(2) {
|
||||
println!("cargo:rustc-cfg=host_os=\"windows\"");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,9 +1,15 @@
|
|||
use std::fmt::{self, Display};
|
||||
|
||||
const CARGO_EXPAND_VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||
|
||||
#[cfg(not(host_os = "windows"))]
|
||||
const PRETTYPLEASE_VERSION: Option<&str> =
|
||||
include!(concat!(env!("OUT_DIR"), "/prettyplease.version"));
|
||||
|
||||
#[cfg(host_os = "windows")]
|
||||
const PRETTYPLEASE_VERSION: Option<&str> =
|
||||
include!(concat!(env!("OUT_DIR"), "\\prettyplease.version"));
|
||||
|
||||
pub(crate) struct Version {
|
||||
pub verbose: bool,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue