windows use the wrong slashes

This commit is contained in:
Colin Sherratt
2015-07-03 01:13:18 -04:00
parent 4bf9ea59bf
commit a5f86b43a5

View File

@ -12,5 +12,5 @@ fn main() {
#[cfg(target_os="windows")] #[cfg(target_os="windows")]
fn main() { fn main() {
println!("cargo:rustc-link-search={}/../../openvr/bin/win64", env!("CARGO_MANIFEST_DIR")); println!("cargo:rustc-link-search={}\\..\\..\\openvr\\bin\\win64", env!("CARGO_MANIFEST_DIR"));
} }