From 9e13ac23e23b68ed877ad6f26f35545f406226a9 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Mon, 28 Dec 2020 18:19:00 -0600 Subject: [PATCH] CMake: Fix Ginkgo linkage We also have to the "ginkgo" library itself... In reference to #11413 --- cmake/modules/FindGINKGO.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/modules/FindGINKGO.cmake b/cmake/modules/FindGINKGO.cmake index 2ab3fa18da..b3c030e325 100644 --- a/cmake/modules/FindGINKGO.cmake +++ b/cmake/modules/FindGINKGO.cmake @@ -49,7 +49,7 @@ unset(GINKGO_CXX_COMPILER) # the full path: # SET(_libraries "") -FOREACH(_library ${GINKGO_INTERFACE_LINK_LIBRARIES}) +FOREACH(_library ginkgo ${GINKGO_INTERFACE_LINK_LIBRARIES}) LIST(APPEND _libraries GINKGO_LIBRARY_${_library}) DEAL_II_FIND_LIBRARY(GINKGO_LIBRARY_${_library} NAMES ${_library} -- 2.39.5