From 9a7708ce4ccc6dc0993a7a97aaa21547e1459201 Mon Sep 17 00:00:00 2001 From: "U-DELL-LAPTOP-VKI\\nikol" Date: Mon, 4 Oct 2021 15:46:40 +0300 Subject: [PATCH] Fixed meson.build --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index deac47d6..b6e179c2 100644 --- a/meson.build +++ b/meson.build @@ -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 #===============================================================================