forked from OPM/opm-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h.cmake
120 lines (94 loc) · 3.28 KB
/
config.h.cmake
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#ifdef CONFIG_H
# error "config.h included more than once!"
#endif
#define CONFIG_H
#define DUNE_MINIMAL_DEBUG_LEVEL 4
#cmakedefine HAVE_BOOST 1
#cmakedefine HAVE_DUNE 1
#cmakedefine HAVE_DUNE_GRID 1
#cmakedefine HAVE_DUNE_DISC 1
#cmakedefine HAVE_DUNE_FEM 1
#cmakedefine HAVE_DUNE_ISTL 1
#cmakedefine HAVE_DUNE_LOCALFUNCTIONS 1
#cmakedefine HAVE_DUNE_PDELAB 1
/* If this is set, the member 'size' of FieldVector is a method rather than an
enum */
#define DUNE_COMMON_FIELDVECTOR_SIZE_IS_METHOD 1
/* Define to the version of dune-common */
#cmakedefine DUNE_COMMON_VERSION "${DUNE_COMMON_VERSION}"
/* Define to the major version of dune-common */
#cmakedefine DUNE_COMMON_VERSION_MAJOR ${DUNE_COMMON_VERSION_MAJOR}
/* Define to the minor version of dune-common */
#define DUNE_COMMON_VERSION_MINOR ${DUNE_COMMON_VERSION_MINOR}
/* Define to the revision of dune-common */
#define DUNE_COMMON_VERSION_REVISION ${DUNE_COMMON_VERSION_REVISION}
/* Define to the version of eWoms */
#cmakedefine EWOMS_VERSION "${EWOMS_VERSION}"
/* Define to the major version of eWoms */
#cmakedefine EWOMS_VERSION_MAJOR ${EWOMS_VERSION_MAJOR}
/* Define to the minor version of eWoms */
#cmakedefine EWOMS_VERSION_MINOR ${EWOMS_VERSION_MINOR}
/* Define to the revision of eWoms */
#cmakedefine EWOMS_VERSION_REVISION ${EWOMS_VERSION_REVISION}
/* Define to the code name of eWoms */
#cmakedefine EWOMS_CODENAME "${EWOMS_CODENAME}"
#cmakedefine HAVE_MPI 1
#if HAVE_MPI
#define ENABLE_MPI 1
#endif
#cmakedefine HAVE_UG 1
#if HAVE_UG
#define ENABLE_UG 1
#if HAVE_MPI
/* only use parallel UG if both UG and MPI are available */
#define ModelP
#endif
#endif
#cmakedefine HAVE_ALUGRID 1
#if HAVE_ALUGRID
#define ENABLE_ALUGRID 1
#endif
#cmakedefine HAVE_METIS 1
#if HAVE_METIS
#define ENABLE_METIS
#endif
#cmakedefine HAVE_ALBERTA 1
#if HAVE_ALBERTA
#define ENABLE_ALBERTA
#endif
#cmakedefine PROJECT_NAME "${PROJECT_NAME}"
#cmakedefine PROJECT_VERSION "${PROJECT_VERSION}"
#cmakedefine PROJECT_MAINTAINER "${PROJECT_MAINTAINER}"
#cmakedefine PROJECT_MAINTAINER_EMAIL "${PROJECT_MAINTAINER_EMAIL}"
#cmakedefine HAVE_SUPERLU ${HAVE_SUPERLU}
#ifdef HAVE_SUPERLU
#define SUPERLU_POST_2005_VERSION 1
#cmakedefine SUPERLU_MIN_VERSION_4_3
#cmakedefine HAVE_MEM_USAGE_T_EXPANSIONS
#endif
/* Define to 1 if you have the <memory> header file. */
#cmakedefine HAVE_MEMORY 1
/* The namespace in which SHARED_PTR can be found */
#cmakedefine SHARED_PTR_NAMESPACE ${SHARED_PTR_NAMESPACE}
/* The header in which SHARED_PTR can be found */
#cmakedefine SHARED_PTR_HEADER ${SHARED_PTR_HEADER}
/* Define to 1 if SHARED_PTR_NAMESPACE::make_shared is usable */
#cmakedefine HAVE_MAKE_SHARED 1
/* Define to 1 if you have <boost/make_shared.hpp> */
#cmakedefine HAVE_BOOST_MAKE_SHARED_HPP 1
/* C++-2011 features */
#cmakedefine HAVE_NULLPTR 1
#cmakedefine HAVE_ARRAY 1
#cmakedefine HAVE_ATTRIBUTE_ALWAYS_INLINE 1
#cmakedefine HAS_ATTRIBUTE_UNUSED 1
#cmakedefine HAS_ATTRIBUTE_DEPRECATED 1
#cmakedefine HAS_ATTRIBUTE_DEPRECATED_MSG 1
#cmakedefine HAVE_INTEGRAL_CONSTANT 1
#cmakedefine HAVE_STATIC_ASSERT 1
#cmakedefine HAVE_VARIADIC_TEMPLATES 1
#cmakedefine HAVE_VARIADIC_CONSTRUCTOR_SFINAE 1
#cmakedefine HAVE_RVALUE_REFERENCES 1
#cmakedefine HAVE_TUPLE 1
#cmakedefine HAVE_TR1_TUPLE 1
#include <dune/common/deprecated.hh>
#include <dune/common/unused.hh>