mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-21 14:35:27 -04:00
21 lines
783 B
CMake
21 lines
783 B
CMake
# Finds the libMesh installation using CMake's PkgConfig
|
|
# module and creates a libmesh imported target
|
|
|
|
if(${CMAKE_VERSION} VERSION_LESS 3.12.0)
|
|
message(FATAL_ERROR "OpenMC builds with libMesh support require CMake version 3.12.0 or greater.")
|
|
endif()
|
|
|
|
set(LIBMESH_PC_FILE libmesh)
|
|
|
|
# if the METHOD variable is present, check specifically for
|
|
# the libMesh .pc file for that build type
|
|
if(DEFINED ENV{METHOD})
|
|
set(LIBMESH_PC_FILE libmesh-$ENV{METHOD})
|
|
message(STATUS "Using environment variable METHOD to determine libMesh build: ${LIBMESH_PC_FILE}")
|
|
endif()
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
set(PKG_CONFIG_USE_CMAKE_PREFIX_PATH TRUE)
|
|
pkg_check_modules(LIBMESH REQUIRED ${LIBMESH_PC_FILE}>=1.7.0 IMPORTED_TARGET)
|
|
pkg_get_variable(LIBMESH_PREFIX ${LIBMESH_PC_FILE} prefix)
|