We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f679545 commit d0eae73Copy full SHA for d0eae73
generator/src/subcommands/gen_cmake/platform.rs
@@ -41,6 +41,10 @@ impl Platform {
41
libs.extend_from_slice(&["shell32".to_string(), "kernel32".to_string()]);
42
}
43
44
+ if version >= &Version::parse("1.57.0").unwrap() {
45
+ libs.extend_from_slice(&["bcrypt".to_string()]);
46
+ }
47
+
48
(libs, libs_debug, libs_release)
49
50
OS::MacOS => (
0 commit comments