aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-12-09 11:17:13 -0800
committerEli Schwartz <eschwartz93@gmail.com>2021-12-09 15:57:45 -0500
commitf45a21af1e8c23478e5e4a6ef0e3ca0068ab0e39 (patch)
tree5f2ed19c2e282c4944950b148c1d75ad999415ca /test cases
parent8b5c6ab8f1dd30120c09f06ed20dda27dfb6e725 (diff)
downloadmeson-f45a21af1e8c23478e5e4a6ef0e3ca0068ab0e39.zip
meson-f45a21af1e8c23478e5e4a6ef0e3ca0068ab0e39.tar.gz
meson-f45a21af1e8c23478e5e4a6ef0e3ca0068ab0e39.tar.bz2
tests/rust polyglot: we need to link with bcrypt.lib as well
Diffstat (limited to 'test cases')
-rw-r--r--test cases/rust/5 polyglot static/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/rust/5 polyglot static/meson.build b/test cases/rust/5 polyglot static/meson.build
index a6e9550..b2a44da 100644
--- a/test cases/rust/5 polyglot static/meson.build
+++ b/test cases/rust/5 polyglot static/meson.build
@@ -6,7 +6,7 @@ deps = [
dependency('threads'),
]
-extra_winlibs = meson.get_compiler('c').get_id() in ['msvc', 'clang-cl'] ? ['userenv.lib', 'ws2_32.lib'] : []
+extra_winlibs = meson.get_compiler('c').get_id() in ['msvc', 'clang-cl'] ? ['userenv.lib', 'ws2_32.lib', 'bcrypt.lib'] : []
l = static_library('stuff', 'stuff.rs', rust_crate_type : 'staticlib', install : true)
e = executable('prog', 'prog.c',