Pull in bcrypt dep on Windows

This commit is contained in:
Joshua Ashton 2020-08-07 01:31:56 +01:00
parent 7b7b0e4941
commit 44b0c34687
1 changed files with 2 additions and 1 deletions

View File

@ -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 ]