File: DOLFINX_MPCConfig.cmake.in

package info (click to toggle)
dolfinx-mpc 0.5.0.post0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,112 kB
  • sloc: python: 5,998; cpp: 5,196; makefile: 67
file content (18 lines) | stat: -rw-r--r-- 423 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# - Build details for DOLFINX_MPC: An extension to dolfinx to use multi-point constraint
#

@PACKAGE_INIT@

# Compilers
set_and_check(DOLFINX_MPC_CXX_COMPILER "@CMAKE_CXX_COMPILER@")

include(CMakeFindDependencyMacro)
find_dependency(DOLFINX REQUIRED)
find_dependency(MPI REQUIRED)

if (NOT TARGET dolfinx_mpc)
  include("${CMAKE_CURRENT_LIST_DIR}/DOLFINX_MPCTargets.cmake")
endif()


check_required_components(DOLFINX_MPC)