Skip to content

Commit f9b649c

Browse files
taliseinkjellahl
authored andcommitted
Add bcrypt dependency. Fixes #64
1 parent 948fe04 commit f9b649c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

libxml++/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ if host_machine.system() == 'windows'
103103
extra_xmlxx_objects += xmlxx_res
104104

105105
if xml2_is_subproject
106-
xmlxx_all_deps += [winsock_dep]
106+
xmlxx_all_deps += [winsock_dep, bcrypt_dep]
107107
endif
108108
endif
109109

meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ if not xml2_dep.found()
129129
thread_dep = dependency('threads', required: false)
130130
zlib_dep = dependency('zlib', required: false)
131131
winsock_dep = cpp_compiler.find_library('ws2_32', required: false)
132+
bcrypt_dep = cpp_compiler.find_library('bcrypt', required: false)
132133
cmake_build_type = get_option('buildtype')
133134
if get_option('buildtype') == 'debugoptimized'
134135
cmake_build_type = 'RelWithDebInfo'

0 commit comments

Comments
 (0)