File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33#[ cfg( target_os="macos" ) ]
44fn 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" ) ) ;
76}
87
98#[ cfg( target_os="linux" ) ]
109fn main ( ) {
1110 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" ) ) ;
1311}
1412
1513#[ cfg( target_os="windows" ) ]
1614fn main ( ) {
1715 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" ) ) ;
1916}
Original file line number Diff line number Diff line change 1+ // This header is used for bindgen to automatically generate the openvr c binding
2+ // bindgen -match openvr_capi.h scripts/binding.h -o binding.rs
3+
4+ #include <stdbool.h>
5+ #include "../openvr/headers/openvr_capi.h"
You can’t perform that action at this time.
0 commit comments