opm-simulators/opm-simulators-prereqs.cmake
2018-01-17 18:27:19 +01:00

52 lines
1.1 KiB
CMake

# defines that must be present in config.h for our headers
set (opm-simulators_CONFIG_VAR
HAVE_OPM_GRID
HAVE_PTHREAD
HAVE_EWOMS
HAVE_ERT
HAVE_MPI
HAVE_PETSC
HAVE_SUITESPARSE_UMFPACK_H
HAVE_DUNE_ISTL
DUNE_ISTL_VERSION_MAJOR
DUNE_ISTL_VERSION_MINOR
DUNE_ISTL_VERSION_REVISION
HAVE_SUITESPARSE_UMFPACK
)
# dependencies
set (opm-simulators_DEPS
# Compile with C99 support if available
"C99"
# Compile with C++0x/11 support if available
"CXX11Features"
# Various runtime library enhancements
"Boost 1.44.0
COMPONENTS date_time filesystem system unit_test_framework REQUIRED"
# DUNE prerequisites
"dune-common REQUIRED"
"dune-istl REQUIRED"
# matrix library
"BLAS REQUIRED"
"LAPACK REQUIRED"
# Look for MPI support
"MPI"
# PETSc numerical backend
"PETSc"
# Tim Davis' SuiteSparse archive
"SuiteSparse COMPONENTS umfpack"
# SuperLU direct solver
"SuperLU"
# OPM dependency
"opm-common REQUIRED"
"opm-parser REQUIRED"
"opm-material REQUIRED"
"opm-grid REQUIRED"
"opm-output REQUIRED"
"ewoms REQUIRED"
# Eigen
"Eigen3 3.2.0"
)
find_package_deps(opm-simulators)