mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-29 12:33:49 -06:00
73db2c388c
recently UG has become free software (yay!), so we can now support it with a good conscience. The CMake module is based on the "UseUG.cmake" module of dune-grid but it is quite a bit simpler and actually works. (I cannot see how UseUG.cmake can work without ever including the ug-config*.cmake files...) the UG source code is available here: https://github.com/ugfem/ug
63 lines
1.5 KiB
CMake
63 lines
1.5 KiB
CMake
# - Find DUNE grid library
|
|
#
|
|
# Defines the following variables:
|
|
# dune-grid_INCLUDE_DIRS Directory of header files
|
|
# dune-grid_LIBRARIES Directory of shared object files
|
|
# dune-grid_DEFINITIONS Defines that must be set to compile
|
|
# dune-grid_CONFIG_VARS List of defines that should be in config.h
|
|
# HAVE_DUNE_GRID Binary value to use in config.h
|
|
|
|
# Copyright (C) 2013 Uni Research AS
|
|
# This code is licensed under The GNU General Public License v3.0
|
|
|
|
include (OpmPackage)
|
|
find_opm_package (
|
|
# module name
|
|
"dune-grid"
|
|
|
|
# dependencies
|
|
# TODO: we should probe for all the HAVE_* values listed below;
|
|
# however, we don't actually use them in our implementation, so
|
|
# we just include them to forward here in case anyone else does
|
|
"CXX11Features REQUIRED;
|
|
dune-common REQUIRED;
|
|
dune-geometry REQUIRED;
|
|
MPI;
|
|
ALUGrid;
|
|
UG
|
|
"
|
|
# header to search for
|
|
"dune/grid/onedgrid.hh"
|
|
|
|
# library to search for
|
|
"dunegrid"
|
|
|
|
# defines to be added to compilations
|
|
""
|
|
|
|
# test program
|
|
"#include <dune/grid/onedgrid.hh>
|
|
int main (void) {
|
|
Dune::OneDGrid grid(1, 0., 1.);
|
|
return grid.lbegin<0>(0) == grid.lend<0>(0);
|
|
}
|
|
"
|
|
# config variables
|
|
"HAVE_MPI;
|
|
HAVE_UG;
|
|
HAVE_DUNE_FEM;
|
|
HAVE_ALUGRID;
|
|
HAVE_GRIDTYPE;
|
|
HAVE_GRAPE;
|
|
HAVE_PSURFACE;
|
|
HAVE_AMIRAMESH;
|
|
HAVE_ALBERTA;
|
|
HAVE_STDINT_H
|
|
")
|
|
|
|
#debug_find_vars ("dune-grid")
|
|
|
|
# make version number available in config.h
|
|
include (UseDuneVer)
|
|
find_dune_version ("dune" "grid")
|