Skip to content

Commit 0841d43

Browse files
committed
Make example compatible with v9.6.0 + update copyright notice
1 parent 6b762d3 commit 0841d43

File tree

11 files changed

+1075
-941
lines changed

11 files changed

+1075
-941
lines changed

agglomeration_poisson/CMakeLists.txt

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,20 @@
1-
##
2-
# CMake script for the step-8 tutorial program:
3-
##
4-
51
# Set the name of the project and target:
6-
SET(TARGET "poisson")
2+
SET(TARGET "agglomeration_poisson")
73

8-
# Declare all source files the target consists of. Here, this is only
9-
# the one step-X.cc file, but as you expand your project you may wish
10-
# to add other source files as well. If your project becomes much larger,
11-
# you may want to either replace the following statement by something like
12-
# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc")
13-
# FILE(GLOB_RECURSE TARGET_INC "include/*.h")
14-
# SET(TARGET_SRC ${TARGET_SRC} ${TARGET_INC})
15-
# or switch altogether to the large project CMakeLists.txt file discussed
16-
# in the "CMake in user projects" page accessible from the "User info"
17-
# page of the documentation.
4+
# Declare all source files the target consists of.
185
SET(TARGET_SRC
196
${TARGET}.cc
207
source/agglomeration_handler.cc
218
source/mapping_box.cc
22-
)
9+
)
2310

2411
# Add include directory
2512
INCLUDE_DIRECTORIES(include)
2613

27-
# Usually, you will not need to modify anything beyond this point...
2814

2915
CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4)
3016

31-
FIND_PACKAGE(deal.II 9.7.0
17+
FIND_PACKAGE(deal.II 9.6.0
3218
HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR}
3319
)
3420
IF(NOT ${deal.II_FOUND})

0 commit comments

Comments
 (0)