1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
# - Find DUNE Fem library
#
# Defines the following variables:
# dune-alugrid_INCLUDE_DIRS Directory of header files
# dune-alugrid_LIBRARIES Directory of shared object files
# dune-alugrid_DEFINITIONS Defines that must be set to compile
# dune-alugrid_CONFIG_VARS List of defines that should be in config.h
# HAVE_DUNE_FEM Binary value to use in config.h
# Copyright (C) 2015 IRIS AS
# This code is licensed under The GNU General Public License v3.0
include (OpmPackage)
find_opm_package (
# module name
"dune-fem"
# 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
"dune-common REQUIRED;
dune-grid REQUIRED;
dune-alugrid;
ZLIB;
ZOLTAN;
METIS;
Quadmath
"
# header to search for
"dune/fem/space/shapefunctionset/legendre.hh"
# library to search for
"dunefem"
# defines to be added to compilations
""
# test program
"#include <dune/fem/space/shapefunctionset/legendre.hh>
int main (void) {
//Dune::Fem::LegendrePolynomials::weight();
return 0;
}
"
# config variables
"HAVE_DUNE_FEM;
HAVE_METIS;
HAVE_ZLIB;
HAVE_ZOLTAN
")
#debug_find_vars ("dune-grid")
# make version number available in config.h
include (UseDuneVer)
find_dune_version ("dune" "fem")
|