forked from cellmlapi/cellml-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcda_config.h.in
109 lines (88 loc) · 2.55 KB
/
cda_config.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
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
/* Is the CellML Context enabled? */
#cmakedefine ENABLE_CONTEXT
/* Are the GSL integrators enabled? */
#cmakedefine ENABLE_GSL_INTEGRATORS
/* Is Java enabled? */
#cmakedefine ENABLE_JAVA_BUILD
#define ENABLE_JAVA ENABLE_JAVA_BUILD
/* Is Python enabled? */
#cmakedefine ENABLE_PYTHON
/* Is RDF enabled? */
#cmakedefine ENABLE_RDF
/* Is SProS enabled? */
#cmakedefine ENABLE_SPROS
/* Is SRuS enabled? */
#undef ENABLE_SRUS
/* Is TeLiCeMs enabled? */
#cmakedefine ENABLE_TELICEMS
/* Is XPCOM enabled? */
#cmakedefine ENABLE_XPCOM
/* Define to 1 if you have the <inttypes.h> header file. */
#cmakedefine HAVE_HEADER_INTTYPES_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
#cmakedefine HAVE_SYS_TYPES_H 1
/* Define to 1 if you have the <JavaVM/jni.h> header file. */
#cmakedefine HAVE_JAVAVM_JNI_H 1
/* Define to 1 if you have the <jni.h> header file. */
#cmakedefine HAVE_JNI_H 1
/* Define to 1 if you have the `gsl' library (-lgsl). */
#cmakedefine HAVE_LIBGSL 1
/* Define to 1 if you have the `gslcblas' library (-lgslcblas). */
#cmakedefine HAVE_LIBGSLCBLAS 1
/* Define if gcc visibility attributes supported */
#cmakedefine HAVE_VISIBILITY_ATTRIBUTE
/* Define if we are using the system libxml2 */
#cmakedefine USE_SYSTEM_LIBXML2
/* The size of `wchar_t*', as computed by sizeof. */
#define SIZEOF_WCHAR_TP ${SIZEOF_WCHAR_TP}
/* Define TESTDIR to path of test sources. */
#define TESTDIR L"${CMAKE_CURRENT_SOURCE_DIR}/tests"
/* Define TESTDIR to path of test sources. */
#define TESTDIR8 "${CMAKE_CURRENT_SOURCE_DIR}/tests"
/* Is LLVM found? */
#cmakedefine LLVM_FOUND
#ifdef LLVM_FOUND
#define ENABLE_CLANG
#endif
#define SIZE_INT64_T ${SIZE_INT64_T}
#if ! (SIZE_INT64_T + 0)
#undef int64_t
#ifdef WIN32
typedef signed __int64 int64_t;
#else
typedef signed long long int64_t;
#endif
#endif
#define SIZE_UINT64_T ${SIZE_UINT64_T}
#if ! (SIZE_UINT64_T + 0)
#undef uint64_t
#ifdef WIN32
typedef unsigned __int64 uint64_t;
#else
typedef unsigned long long uint64_t;
#endif
#endif
#define SIZE_INT32_T ${SIZE_INT32_T}
#if ! (SIZE_INT32_T + 0)
typedef signed long int32_t;
#endif
#define SIZE_UINT32_T ${SIZE_UINT32_T}
#if ! (SIZE_INT32_T + 0)
typedef unsigned long uint32_t;
#endif
#define SIZE_INT16_T ${SIZE_INT16_T}
#if ! (SIZE_INT16_T + 0)
typedef short int16_t;
#endif
#define SIZE_UINT16_T ${SIZE_UINT16_T}
#if ! (SIZE_UINT16_T + 0)
typedef unsigned short uint16_t;
#endif
#define SIZE_INT8_T ${SIZE_INT8_T}
#if ! (SIZE_INT8_T + 0)
typedef signed char int8_t;
#endif
#define SIZE_UINT8_T ${SIZE_UINT8_T}
#if ! (SIZE_UINT8_T + 0)
typedef unsigned char uint8_t;
#endif