mirror of
https://github.com/bspeice/aeron-rs
synced 2024-12-21 21:38:09 -05:00
cargo fmt fixes
This commit is contained in:
parent
b1493fc0fd
commit
7041d928d6
@ -55,7 +55,10 @@ pub fn main() {
|
|||||||
// For Windows, the .lib file is in build/lib/{profile}, but the DLL
|
// For Windows, the .lib file is in build/lib/{profile}, but the DLL
|
||||||
// is shipped in build/binaries/{profile}
|
// is shipped in build/binaries/{profile}
|
||||||
let base_lib_dir = cmake_output.join("build");
|
let base_lib_dir = cmake_output.join("build");
|
||||||
println!("cargo:rustc-link-search=native={}", base_lib_dir.join("lib").display());
|
println!(
|
||||||
|
"cargo:rustc-link-search=native={}",
|
||||||
|
base_lib_dir.join("lib").display()
|
||||||
|
);
|
||||||
// Because the `cmake_output` path is different for debug/release, we're not worried
|
// Because the `cmake_output` path is different for debug/release, we're not worried
|
||||||
// about accidentally linking in the wrong library
|
// about accidentally linking in the wrong library
|
||||||
println!(
|
println!(
|
||||||
|
Loading…
Reference in New Issue
Block a user