attempt to add windows to vr-rs

This commit is contained in:
Colin Sherratt
2015-07-03 01:10:03 -04:00
parent 78e675261f
commit 4bf9ea59bf

View File

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