Add extra Windows SDK static libs

pull/3/head
Bradlee Speice 2019-09-21 18:06:48 -04:00
parent 6312d9520d
commit 1d0e68a2da
1 changed files with 13 additions and 0 deletions

View File

@ -46,6 +46,19 @@ pub fn main() {
link_type.link_lib(),
link_type.target_name()
);
match link_type {
LinkType::Static => {
// On Windows, there are some extra libraries needed for static link
// that aren't included by Aeron.
if cfg!(target_os = "windows") {
println!("cargo:rustc-link-lib=shell32");
println!("cargo:rustc-link-lib=iphlpapi");
}
},
_ => ()
};
let cmake_output = Config::new(&aeron_path)
.build_target(link_type.target_name())
.build();