Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions agglomeration_poisson/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Set the name of the project and target:
SET(TARGET "agglomeration_poisson")

# Declare all source files the target consists of.
FILE(GLOB TARGET_SRC CONFIGURE_DEPENDS ${TARGET}.cc ${CMAKE_CURRENT_SOURCE_DIR}/source/*.cc)

CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4)

FIND_PACKAGE(deal.II 9.6.0
HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR}
)
IF(NOT ${deal.II_FOUND})
MESSAGE(FATAL_ERROR "\n"
"*** Could not locate a (sufficiently recent) version of deal.II. ***\n\n"
"You may want to either pass a flag -DDEAL_II_DIR=/path/to/deal.II to cmake\n"
"or set an environment variable \"DEAL_II_DIR\" that contains this path."
)
ENDIF()

DEAL_II_INITIALIZE_CACHED_VARIABLES()
PROJECT(${TARGET})
DEAL_II_INVOKE_AUTOPILOT()

TARGET_INCLUDE_DIRECTORIES(${TARGET} PRIVATE include)
TARGET_COMPILE_DEFINITIONS(${TARGET} PRIVATE MESH_DIR="${CMAKE_SOURCE_DIR}/mesh")
371 changes: 371 additions & 0 deletions agglomeration_poisson/README.md

Large diffs are not rendered by default.

Loading