Skip to content

Commit 7e0a226

Browse files
committed
bump required dune to 2.11
1 parent 8cb1da3 commit 7e0a226

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ macro(opm-grid_prereqs_hook)
4343
target_link_libraries(opmgrid PUBLIC MPI::MPI_C MPI::MPI_CXX)
4444
endif()
4545

46-
target_link_libraries(opmgrid PUBLIC dunecommon dunegrid)
46+
target_link_libraries(opmgrid PUBLIC Dune::Grid)
4747

4848
if(TARGET Dune::ISTL)
4949
target_link_libraries(opmgrid PUBLIC Dune::ISTL)
5050
endif()
5151

52-
if(TARGET duneuggrid)
53-
target_link_libraries(opmgrid PUBLIC duneuggrid)
52+
if(TARGET Dune::UGGrid)
53+
target_link_libraries(opmgrid PUBLIC Dune::UGGrid)
5454
endif()
5555

5656
if(TARGET Zoltan::Zoltan)

dune.module

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ Label: 2026.10-pre
1010
Maintainer: atgeirr@sintef.no
1111
MaintainerName: Atgeirr F. Rasmussen
1212
Url: http://opm-project.org
13-
Depends: dune-common (>= 2.9) dune-geometry (>= 2.9) dune-grid (>= 2.9) opm-common
14-
Suggests: dune-istl (>= 2.9)
13+
Depends: dune-common (>= 2.11) dune-geometry (>= 2.11) dune-grid (>= 2.11) opm-common
14+
Suggests: dune-istl (>= 2.11)

opm-grid-prereqs.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if(TARGET opmgrid)
1010
if(opm-grid_LIBS MATCHES MPI::MPI)
1111
find_package(MPI REQUIRED)
1212
endif()
13-
if(opm-grid_LIBS MATCHES duneistl)
13+
if(opm-grid_LIBS MATCHES Dune::ISTL)
1414
find_package(dune-istl REQUIRED)
1515
endif()
1616
if(opm-grid_LIBS MATCHES Zoltan::Zoltan)
@@ -19,7 +19,7 @@ if(TARGET opmgrid)
1919
if(opm-grid_LIBS MATCHES METIS::METIS)
2020
find_package(METIS REQUIRED)
2121
endif()
22-
if(opm-grid_LIBS MATCHES duneuggrid)
22+
if(opm-grid_LIBS MATCHES Dune::UGGrid)
2323
find_package(dune-uggrid REQUIRED)
2424
endif()
2525
else()

0 commit comments

Comments
 (0)