From d8f4c245dbed1f99b7537b5cde306ba7e70a3559 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 29 Aug 2018 15:10:25 +0200 Subject: [PATCH] modules: fix MeshTools dependency setup. --- modules/FindMagnum.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/FindMagnum.cmake b/modules/FindMagnum.cmake index 076689328..fa0113ef5 100644 --- a/modules/FindMagnum.cmake +++ b/modules/FindMagnum.cmake @@ -369,7 +369,7 @@ endif() set(_MAGNUM_MeshTools_DEPENDENCIES ) if(MAGNUM_TARGET_GL) # Trade is used only in compile(), which needs GL as well - list(APPEND _MAGNUM_${_COMPONENT}_DEPENDENCIES Trade GL) + list(APPEND _MAGNUM_MeshTools_DEPENDENCIES Trade GL) endif() set(_MAGNUM_OpenGLTester_DEPENDENCIES GL)