From 44b0c34687c00508fbf90e98c7b64cb78b839496 Mon Sep 17 00:00:00 2001 From: Joshua Ashton Date: Fri, 7 Aug 2020 01:31:56 +0100 Subject: [PATCH] Pull in bcrypt dep on Windows --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 844ecf4..7302207 100644 --- a/meson.build +++ b/meson.build @@ -57,8 +57,9 @@ feather_deps = [ if feather_platform == 'windows' ws2_32_dep = feather_compiler.find_library('ws2_32') iphlpapi_dep = feather_compiler.find_library('iphlpapi') + bcrypt_dep = feather_compiler.find_library('bcrypt') - feather_deps += [ ws2_32_dep, iphlpapi_dep ] + feather_deps += [ ws2_32_dep, iphlpapi_dep, bcrypt_dep ] else libevent_pthreads_dep = libevent_proj.dependency('event_pthreads_static') feather_deps += [ libevent_pthreads_dep ]