Fixed meson.build

This commit is contained in:
U-DELL-LAPTOP-VKI\nikol 2021-10-04 15:46:40 +03:00
parent 6b78fa517c
commit 9a7708ce4c
1 changed files with 2 additions and 2 deletions

View File

@ -63,8 +63,8 @@ if not get_option('source-only')
if host_machine.system() == 'windows'
# Note that we need to explicitly add the windows socket DLL because
# the pkg-config file from reproc does not include it.
lite_deps += meson.get_compiler('cpp').find_library('ws2_32', required: true)
lite_deps += meson.get_compiler('cpp').find_library('dwmapi', required: true)
lite_deps += meson.get_compiler('c').find_library('ws2_32', required: true)
lite_deps += meson.get_compiler('c').find_library('dwmapi', required: true)
endif
endif
#===============================================================================