diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2023-01-23 11:25:27 +0400 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2023-01-23 11:25:29 +0400 |
commit | a936bec84d92f0c6e572c77bb3a15fad2bf5813f (patch) | |
tree | 4bebf3e3c6afec8cbbc40a2f8f8b5211318ecb5b | |
parent | 89208ee729e6d0311b89f46930edd960d54516a8 (diff) |
meson: fix some lib check warnings on win32
WARNING: find_library('libws2_32') starting in "lib" only works by accident and is not portable
Library libws2_32 found: YES
WARNING: find_library('libgdi32') starting in "lib" only works by accident and is not portable
Library libgdi32 found: YES
WARNING: find_library('libcomctl32') starting in "lib" only works by accident and is not portable
Library libcomctl32 found: YES
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 3be1dac..5287029 100644 --- a/meson.build +++ b/meson.build @@ -119,7 +119,7 @@ endforeach deps = [] if host_machine.system() == 'windows' - deps += ['libws2_32', 'libgdi32', 'libcomctl32'] + deps += ['ws2_32', 'gdi32', 'comctl32'] endif foreach dep : deps |