From 93b68d7fe2172439ccf759171289722549fe9bbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= Date: Mon, 15 Dec 2025 02:45:13 +0100 Subject: [PATCH] meson: remove png icons from win32 resource depend They are not used, everything is already packed in mpv-icon.ico. --- meson.build | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/meson.build b/meson.build index e37564b034..fb10be5078 100644 --- a/meson.build +++ b/meson.build @@ -1768,11 +1768,7 @@ if win32 # Hence, these includes are needed. res_includes = [source_root, build_root] - resources = ['etc/mpv-icon-8bit-16x16.png', - 'etc/mpv-icon-8bit-32x32.png', - 'etc/mpv-icon-8bit-64x64.png', - 'etc/mpv-icon-8bit-128x128.png', - 'etc/mpv-icon.ico', + resources = ['etc/mpv-icon.ico', 'osdep/mpv.exe.manifest'] sources += windows.compile_resources('osdep/mpv.rc', args: res_flags, depend_files: resources,