Skip to content

Commit 8363bf4

Browse files
author
Rene Eichhorn
committed
added binaries
1 parent 439cb27 commit 8363bf4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openvr_sys"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = [
55
"Colin Sherratt",
66
"Erick Tryzelaar",

build.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@
33
#[cfg(target_os="macos")]
44
fn main() {
55
println!("cargo:rustc-link-search={}/openvr/lib/osx32", env!("CARGO_MANIFEST_DIR"));
6+
println!("cargo:rustc-link-search={}/openvr/bin/osx32", env!("CARGO_MANIFEST_DIR"));
67
}
78

89
#[cfg(target_os="linux")]
910
fn main() {
1011
println!("cargo:rustc-link-search={}/openvr/lib/linux64", env!("CARGO_MANIFEST_DIR"));
12+
println!("cargo:rustc-link-search={}/openvr/bin/linux64", env!("CARGO_MANIFEST_DIR"));
1113
}
1214

1315
#[cfg(target_os="windows")]
1416
fn main() {
1517
println!("cargo:rustc-link-search={}/openvr/lib/win64", env!("CARGO_MANIFEST_DIR"));
18+
println!("cargo:rustc-link-search={}/openvr/bin/win64", env!("CARGO_MANIFEST_DIR"));
1619
}

0 commit comments

Comments
 (0)