From 0b2780f31af6d50dc3822d963b8712233cd22638 Mon Sep 17 00:00:00 2001 From: Alex_Mueller Date: Mon, 17 Jun 2024 12:21:45 +0200 Subject: [PATCH] Add Dune::Iga library --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e9197a02..58cf4f44 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,6 +38,11 @@ include(DuneMacros) # start a dune project with information from dune.module dune_project() +dune_add_library(duneiga INTERFACE + EXPORT_NAME Iga + LINK_LIBRARIES ${DUNE_LIBS}) + + if(ADD_SANDBOX_TARGET) add_subdirectory(sandbox) endif()