| 1 | /* config.h.  Generated from config.h.cmake by CMake for @PROJECT_NAME@  */ | 
| 2 |  | 
| 3 | #define OPENMD_VERSION_MAJOR "${VERSION_MAJOR}" | 
| 4 | #define OPENMD_VERSION_MINOR "${VERSION_MINOR}" | 
| 5 | #define OPENMD_VERSION_TINY  "${VERSION_TINY}" | 
| 6 |  | 
| 7 | #define MK_STR(s) # s | 
| 8 | #define STR_DEFINE(t, s) t = MK_STR(s) | 
| 9 |  | 
| 10 | /* Is defined if OpenMD should be compiled with single precision arithmetic. */ | 
| 11 | #cmakedefine SINGLE_PRECISION | 
| 12 |  | 
| 13 | /* Is defined if the qhull library is available. */ | 
| 14 |  | 
| 15 | #cmakedefine HAVE_QHULL 1 | 
| 16 | #cmakedefine HAVE_QHULL_2011 1 | 
| 17 | #ifdef DISABLE_QHULL | 
| 18 | #undef HAVE_QHULL | 
| 19 | #endif | 
| 20 |  | 
| 21 | /* have <conio.h> */ | 
| 22 | #cmakedefine HAVE_CONIO_H 1 | 
| 23 |  | 
| 24 | /* have symbol strncasecmp */ | 
| 25 | #cmakedefine HAVE_STRNCASECMP 1 | 
| 26 |  | 
| 27 | /* define if fftw3.h exists */ | 
| 28 | #cmakedefine HAVE_FFTW3_H 1 | 
| 29 |  | 
| 30 | /* Define to 1 if you have the `z' library (-lz). */ | 
| 31 | #cmakedefine HAVE_LIBZ 1 | 
| 32 |  | 
| 33 | /* Define to the one symbol short name of this package. */ | 
| 34 | #cmakedefine PACKAGE_TARNAME | 
| 35 |  | 
| 36 | /* Define to the version of this package. */ | 
| 37 | #cmakedefine PACKAGE_VERSION | 
| 38 |  | 
| 39 | /* Define to empty if `const' does not conform to ANSI C. */ | 
| 40 | #cmakedefine const | 
| 41 |  | 
| 42 | /* Code compiled in debug mode */ | 
| 43 | #cmakedefine debug | 
| 44 |  | 
| 45 | /* Define to `__inline__' or `__inline' if that's what the C compiler | 
| 46 | calls it, or to nothing if 'inline' is not supported under any name.  */ | 
| 47 | #ifndef __cplusplus | 
| 48 | #undef inline | 
| 49 | #endif | 
| 50 |  | 
| 51 | /* Define to rpl_malloc if the replacement function should be used. */ | 
| 52 | #undef malloc | 
| 53 |  | 
| 54 | /* Define to rpl_realloc if the replacement function should be used. */ | 
| 55 | #undef realloc | 
| 56 |  | 
| 57 | /* Define to `unsigned int' if <sys/types.h> does not define. */ | 
| 58 | #undef size_t | 
| 59 |  | 
| 60 | #ifdef SINGLE_PRECISION | 
| 61 | typedef float RealType; | 
| 62 | #ifdef IS_MPI | 
| 63 | #define MPI_REALTYPE MPI_FLOAT | 
| 64 | #define REALTYPE FLOAT | 
| 65 | #define REALTYPE_INT FLOAT_INT | 
| 66 | #endif | 
| 67 | #else | 
| 68 | typedef double RealType; | 
| 69 | #ifdef IS_MPI | 
| 70 | #define MPI_REALTYPE MPI_DOUBLE | 
| 71 | #define REALTYPE DOUBLE | 
| 72 | #define REALTYPE_INT DOUBLE_INT | 
| 73 | #endif | 
| 74 | #endif |