-
Notifications
You must be signed in to change notification settings - Fork 3
/
config_cmake.h_in
59 lines (40 loc) · 1.53 KB
/
config_cmake.h_in
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
/* True if DSMC is enabled */
#cmakedefine DSMC_ENABLED @DSMC_ENABLED@
/* Defined if ENABLE_SLCHECK is enabled */
#cmakedefine SLEDGE_THROW @ENABLE_SLCHECK@
/* "Have C++0x (set standard to cxx14 so legacy define)*/
#define HAVE_CXX0X
/* Similarly */
#define HAVE_HASH
/* Defined if you have feenableexcept */
#cmakedefine HAVE_FE_ENABLE @HAVE_FE_ENABLE@
/* Defined if you have FFTW */
#cmakedefine HAVE_FFTW @FFTW_FOUND@
/* Defined if you have HDF5 support */
#cmakedefine HAVE_HDF5 @HAVE_HDF5@
/* Define to 1 if you have the `cuda' library. */
#cmakedefine HAVE_LIBCUDA 1
/* Defined if you have the have the png++ wrapper */
#cmakedefine HAVE_LIBPNGPP @HAVE_LIBPNGPP@
/* Define to 1 if you have the `slurm' library (-lslurm). */
#cmakedefine HAVE_LIBSLURM @HAVE_LIBSLURM@
/* Defined if you have 'xdr' support */
#cmakedefine HAVE_XDR @HAVE_XDR@
/* Define if you have the <omp.h> header file. */
#cmakedefine HAVE_OMP_H @HAVE_OMP_H@
/* Define if VTK is available */
#cmakedefine HAVE_VTK @HAVE_VTK@
/* Define if HighFive is available */
#cmakedefine H5_USE_EIGEN @H5_USE_EIGEN@
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "@PROJECT_NAME@ @PROJECT_VERSION@"
/* Define to the home page for this package. */
#define PACKAGE_URL "@PROJECT_HOMEPAGE_URL@"
/* Version number of package */
#define VERSION "@PROJECT_VERSION@"
/* Git commit at configure */
#define GIT_COMMIT "@GIT_COMMIT@"
/* Git branch at configure */
#define GIT_BRANCH "@GIT_BRANCH@"
/* Date/time at configure */
#define COMPILE_TIME "@COMPILE_TIME@"