From 1e9da451727656384374b9273b9e03240f6c7086 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 2 Jul 2026 11:43:52 +0200 Subject: [PATCH] modules: make ShaderTools component dependencies explicitly empty. The library doesn't depend on anything else from Magnum, but while for others that's explicitly listed, here it was somehow omitted until now. --- modules/FindMagnum.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/FindMagnum.cmake b/modules/FindMagnum.cmake index 538467f5c..e0b61a362 100644 --- a/modules/FindMagnum.cmake +++ b/modules/FindMagnum.cmake @@ -512,6 +512,8 @@ if(MAGNUM_TARGET_GL) list(APPEND _MAGNUM_Shaders_DEPENDENCIES GL) endif() +set(_MAGNUM_ShaderTools_DEPENDENCIES ) + set(_MAGNUM_Text_DEPENDENCIES TextureTools) if(MAGNUM_TARGET_GL) list(APPEND _MAGNUM_Text_DEPENDENCIES GL)