From 819714b68424bc9df4451c2597ece39d420e0f0f Mon Sep 17 00:00:00 2001
From: Dominic Kempf <dominic.r.kempf@gmail.com>
Date: Tue, 16 Dec 2014 14:10:32 +0100
Subject: [PATCH] Link all libraries to targets in add_dune_all_flags

The libraries are taken from DUNE_LIBS and from the
global property ALL_PKG_LIBS. This change is necessary
to drop the add_dune_*_flags macros in the future.
---
 cmake/modules/DuneMacros.cmake | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/cmake/modules/DuneMacros.cmake b/cmake/modules/DuneMacros.cmake
index d657ceb2a..03f2b3798 100644
--- a/cmake/modules/DuneMacros.cmake
+++ b/cmake/modules/DuneMacros.cmake
@@ -1157,5 +1157,7 @@ macro(add_dune_all_flags targets)
     set_property(TARGET ${target}
           APPEND_STRING
           PROPERTY COMPILE_FLAGS ${FLAGSTR})
+    get_property(libs GLOBAL PROPERTY ALL_PKG_LIBS)
+    target_link_libraries(${target} ${DUNE_LIBS} ${libs})
   endforeach()
 endmacro(add_dune_all_flags targets)
-- 
GitLab