mathematical 1.4.2 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (149) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +11 -21
  3. data/ext/mathematical/extconf.rb +21 -12
  4. data/ext/mathematical/lasem/Makefile +10 -10
  5. data/ext/mathematical/lasem/docs/Makefile +9 -9
  6. data/ext/mathematical/lasem/docs/reference/Makefile +9 -9
  7. data/ext/mathematical/lasem/docs/reference/lasem/Makefile +15 -9
  8. data/ext/mathematical/lasem/docs/reference/lasem/lasem-decl-list.txt +245 -0
  9. data/ext/mathematical/lasem/docs/reference/lasem/lasem-decl.txt +856 -0
  10. data/ext/mathematical/lasem/docs/reference/lasem/lasem-overrides.txt +0 -0
  11. data/ext/mathematical/lasem/itex2mml/Makefile +9 -9
  12. data/ext/mathematical/lasem/src/Makefile +34 -13
  13. data/ext/mathematical/lasem/src/lasemrender.c +13 -7
  14. data/ext/mathematical/lasem/src/lsmdomenumtypes.c +99 -0
  15. data/ext/mathematical/lasem/src/lsmdomenumtypes.h +26 -0
  16. data/ext/mathematical/lasem/src/lsmmathmlenums.c +24 -0
  17. data/ext/mathematical/lasem/src/lsmmathmlenums.h +12 -1
  18. data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c +793 -0
  19. data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h +96 -0
  20. data/ext/mathematical/lasem/src/lsmmathmlspaceelement.c +14 -0
  21. data/ext/mathematical/lasem/src/lsmmathmlspaceelement.h +1 -1
  22. data/ext/mathematical/lasem/src/lsmmathmltraits.c +24 -0
  23. data/ext/mathematical/lasem/src/lsmmathmltraits.h +1 -0
  24. data/ext/mathematical/lasem/src/lsmsvgattributes.h +50 -0
  25. data/ext/mathematical/lasem/src/lsmsvgdocument.c +18 -0
  26. data/ext/mathematical/lasem/src/lsmsvgenums.c +130 -0
  27. data/ext/mathematical/lasem/src/lsmsvgenums.h +59 -0
  28. data/ext/mathematical/lasem/src/lsmsvgenumtypes.c +1254 -0
  29. data/ext/mathematical/lasem/src/lsmsvgenumtypes.h +129 -0
  30. data/ext/mathematical/lasem/src/lsmsvgfiltercolormatrix.c +115 -0
  31. data/ext/mathematical/lasem/src/lsmsvgfiltercolormatrix.h +58 -0
  32. data/ext/mathematical/lasem/src/lsmsvgfilterconvolvematrix.c +206 -0
  33. data/ext/mathematical/lasem/src/lsmsvgfilterconvolvematrix.h +64 -0
  34. data/ext/mathematical/lasem/src/lsmsvgfilterdisplacementmap.c +124 -0
  35. data/ext/mathematical/lasem/src/lsmsvgfilterdisplacementmap.h +60 -0
  36. data/ext/mathematical/lasem/src/lsmsvgfilterimage.c +167 -0
  37. data/ext/mathematical/lasem/src/lsmsvgfilterimage.h +61 -0
  38. data/ext/mathematical/lasem/src/lsmsvgfiltermorphology.c +116 -0
  39. data/ext/mathematical/lasem/src/lsmsvgfiltermorphology.h +58 -0
  40. data/ext/mathematical/lasem/src/lsmsvgfilterspecularlighting.c +9 -2
  41. data/ext/mathematical/lasem/src/lsmsvgfiltersurface.c +1169 -87
  42. data/ext/mathematical/lasem/src/lsmsvgfiltersurface.h +28 -2
  43. data/ext/mathematical/lasem/src/lsmsvgfilterturbulence.c +142 -0
  44. data/ext/mathematical/lasem/src/lsmsvgfilterturbulence.h +61 -0
  45. data/ext/mathematical/lasem/src/lsmsvgtraits.c +249 -0
  46. data/ext/mathematical/lasem/src/lsmsvgtraits.h +18 -0
  47. data/ext/mathematical/lasem/src/lsmsvgtypes.h +6 -0
  48. data/ext/mathematical/lasem/src/lsmsvgview.c +267 -66
  49. data/ext/mathematical/lasem/src/lsmsvgview.h +23 -0
  50. data/ext/mathematical/lasem/src/lsmtraits.c +53 -1
  51. data/ext/mathematical/lasem/src/lsmtraits.h +2 -0
  52. data/ext/mathematical/lasem/tests/Makefile +26 -15
  53. data/ext/mathematical/lasem/tests/filter.c +152 -0
  54. data/ext/mathematical/lasem/tests/lsmtest.c +34 -30
  55. data/ext/mathematical/lasem/tests/suite.c +5 -2
  56. data/ext/mathematical/lib/libmtex2MML.a +0 -0
  57. data/ext/mathematical/mtex2MML/build/CMakeCache.txt +425 -0
  58. data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeCCompiler.cmake +55 -0
  59. data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeCXXCompiler.cmake +56 -0
  60. data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeSystem.cmake +15 -0
  61. data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdC/CMakeCCompilerId.c +393 -0
  62. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeDirectoryInformation.cmake +16 -0
  63. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeRuleHashes.txt +34 -0
  64. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/DependInfo.cmake +27 -0
  65. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/cmake_clean.cmake +8 -0
  66. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake +27 -0
  67. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake +8 -0
  68. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake +27 -0
  69. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake +8 -0
  70. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake +27 -0
  71. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake +8 -0
  72. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake +27 -0
  73. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/cmake_clean.cmake +8 -0
  74. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/DependInfo.cmake +27 -0
  75. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/cmake_clean.cmake +8 -0
  76. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake +27 -0
  77. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/cmake_clean.cmake +8 -0
  78. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/DependInfo.cmake +27 -0
  79. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/cmake_clean.cmake +8 -0
  80. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake +27 -0
  81. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/cmake_clean.cmake +8 -0
  82. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/DependInfo.cmake +27 -0
  83. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/cmake_clean.cmake +8 -0
  84. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake +27 -0
  85. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/cmake_clean.cmake +8 -0
  86. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake +27 -0
  87. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/cmake_clean.cmake +8 -0
  88. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake +27 -0
  89. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/cmake_clean.cmake +8 -0
  90. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake +27 -0
  91. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/cmake_clean.cmake +8 -0
  92. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/DependInfo.cmake +27 -0
  93. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/cmake_clean.cmake +8 -0
  94. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake +27 -0
  95. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/cmake_clean.cmake +8 -0
  96. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/DependInfo.cmake +27 -0
  97. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/cmake_clean.cmake +8 -0
  98. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake +27 -0
  99. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/cmake_clean.cmake +8 -0
  100. data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile.cmake +95 -0
  101. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/DependInfo.cmake +27 -0
  102. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/cmake_clean.cmake +8 -0
  103. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/DependInfo.cmake +27 -0
  104. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/cmake_clean.cmake +8 -0
  105. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/DependInfo.cmake +27 -0
  106. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/cmake_clean.cmake +8 -0
  107. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/DependInfo.cmake +27 -0
  108. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/cmake_clean.cmake +8 -0
  109. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake +27 -0
  110. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/cmake_clean.cmake +8 -0
  111. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake +27 -0
  112. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/cmake_clean.cmake +8 -0
  113. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/DependInfo.cmake +27 -0
  114. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/cmake_clean.cmake +8 -0
  115. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/DependInfo.cmake +27 -0
  116. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/cmake_clean.cmake +8 -0
  117. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/DependInfo.cmake +27 -0
  118. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/cmake_clean.cmake +8 -0
  119. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/DependInfo.cmake +27 -0
  120. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/cmake_clean.cmake +8 -0
  121. data/ext/mathematical/mtex2MML/build/CMakeFiles/TargetDirectories.txt +34 -0
  122. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/DependInfo.cmake +27 -0
  123. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/cmake_clean.cmake +8 -0
  124. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/DependInfo.cmake +44 -0
  125. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/cmake_clean.cmake +19 -0
  126. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/link.txt +1 -0
  127. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/DependInfo.cmake +43 -0
  128. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean.cmake +18 -0
  129. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean_target.cmake +3 -0
  130. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/link.txt +2 -0
  131. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/DependInfo.cmake +27 -0
  132. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/cmake_clean.cmake +8 -0
  133. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/DependInfo.cmake +44 -0
  134. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/cmake_clean.cmake +19 -0
  135. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/link.txt +1 -0
  136. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/DependInfo.cmake +59 -0
  137. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/cmake_clean.cmake +35 -0
  138. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/link.txt +1 -0
  139. data/ext/mathematical/mtex2MML/build/CTestTestfile.cmake +7 -0
  140. data/ext/mathematical/mtex2MML/build/Makefile +1332 -0
  141. data/ext/mathematical/mtex2MML/build/cmake_install.cmake +43 -0
  142. data/ext/mathematical/mtex2MML/build/lexer.c +8877 -0
  143. data/ext/mathematical/mtex2MML/build/libmtex2MML.a +0 -0
  144. data/ext/mathematical/mtex2MML/build/mtex2mml_export.h +35 -0
  145. data/ext/mathematical/mtex2MML/build/parser.c +10202 -0
  146. data/ext/mathematical/mtex2MML/build/parser.h +619 -0
  147. data/ext/mathematical/mtex2MML/src/mtex2MML.h +1 -1
  148. data/lib/mathematical/version.rb +1 -1
  149. metadata +115 -2
@@ -0,0 +1,393 @@
1
+ #ifdef __cplusplus
2
+ # error "A C++ compiler has been selected for C."
3
+ #endif
4
+
5
+ /* Version number components: V=Version, R=Revision, P=Patch
6
+ Version date components: YYYY=Year, MM=Month, DD=Day */
7
+
8
+ #if defined(__18CXX)
9
+ # define ID_VOID_MAIN
10
+ #endif
11
+
12
+ #if defined(__INTEL_COMPILER) || defined(__ICC)
13
+ # define COMPILER_ID "Intel"
14
+ /* __INTEL_COMPILER = VRP */
15
+ # define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
16
+ # define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
17
+ # define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
18
+ # if defined(__INTEL_COMPILER_BUILD_DATE)
19
+ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
20
+ # define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
21
+ # endif
22
+
23
+ #elif defined(__PATHCC__)
24
+ # define COMPILER_ID "PathScale"
25
+ # define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
26
+ # define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
27
+ # if defined(__PATHCC_PATCHLEVEL__)
28
+ # define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
29
+ # endif
30
+
31
+ #elif defined(__clang__)
32
+ # define COMPILER_ID "Clang"
33
+ # define COMPILER_VERSION_MAJOR DEC(__clang_major__)
34
+ # define COMPILER_VERSION_MINOR DEC(__clang_minor__)
35
+ # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
36
+
37
+ #elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
38
+ # define COMPILER_ID "Embarcadero"
39
+ # define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
40
+ # define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
41
+ # define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__ & 0xFFFF)
42
+
43
+ #elif defined(__BORLANDC__)
44
+ # define COMPILER_ID "Borland"
45
+ /* __BORLANDC__ = 0xVRR */
46
+ # define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
47
+ # define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
48
+
49
+ #elif defined(__WATCOMC__)
50
+ # define COMPILER_ID "Watcom"
51
+ /* __WATCOMC__ = VVRR */
52
+ # define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
53
+ # define COMPILER_VERSION_MINOR DEC(__WATCOMC__ % 100)
54
+
55
+ #elif defined(__SUNPRO_C)
56
+ # define COMPILER_ID "SunPro"
57
+ # if __SUNPRO_C >= 0x5100
58
+ /* __SUNPRO_C = 0xVRRP */
59
+ # define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
60
+ # define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
61
+ # define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
62
+ # else
63
+ /* __SUNPRO_C = 0xVRP */
64
+ # define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
65
+ # define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
66
+ # define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
67
+ # endif
68
+
69
+ #elif defined(__HP_cc)
70
+ # define COMPILER_ID "HP"
71
+ /* __HP_cc = VVRRPP */
72
+ # define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
73
+ # define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
74
+ # define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
75
+
76
+ #elif defined(__DECC)
77
+ # define COMPILER_ID "Compaq"
78
+ /* __DECC_VER = VVRRTPPPP */
79
+ # define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
80
+ # define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
81
+ # define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
82
+
83
+ #elif defined(__IBMC__)
84
+ # if defined(__COMPILER_VER__)
85
+ # define COMPILER_ID "zOS"
86
+ # else
87
+ # if __IBMC__ >= 800
88
+ # define COMPILER_ID "XL"
89
+ # else
90
+ # define COMPILER_ID "VisualAge"
91
+ # endif
92
+ /* __IBMC__ = VRP */
93
+ # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
94
+ # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
95
+ # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
96
+ # endif
97
+
98
+ #elif defined(__PGI)
99
+ # define COMPILER_ID "PGI"
100
+ # define COMPILER_VERSION_MAJOR DEC(__PGIC__)
101
+ # define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
102
+ # if defined(__PGIC_PATCHLEVEL__)
103
+ # define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
104
+ # endif
105
+
106
+ #elif defined(_CRAYC)
107
+ # define COMPILER_ID "Cray"
108
+ # define COMPILER_VERSION_MAJOR DEC(_RELEASE)
109
+ # define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
110
+
111
+ #elif defined(__TI_COMPILER_VERSION__)
112
+ # define COMPILER_ID "TI_DSP"
113
+ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
114
+ # define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
115
+ # define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
116
+ # define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
117
+
118
+ #elif defined(__TINYC__)
119
+ # define COMPILER_ID "TinyCC"
120
+
121
+ #elif defined(__SCO_VERSION__)
122
+ # define COMPILER_ID "SCO"
123
+
124
+ #elif defined(__GNUC__)
125
+ # define COMPILER_ID "GNU"
126
+ # define COMPILER_VERSION_MAJOR DEC(__GNUC__)
127
+ # define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
128
+ # if defined(__GNUC_PATCHLEVEL__)
129
+ # define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
130
+ # endif
131
+
132
+ #elif defined(_MSC_VER)
133
+ # define COMPILER_ID "MSVC"
134
+ /* _MSC_VER = VVRR */
135
+ # define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
136
+ # define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
137
+ # if defined(_MSC_FULL_VER)
138
+ # if _MSC_VER >= 1400
139
+ /* _MSC_FULL_VER = VVRRPPPPP */
140
+ # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
141
+ # else
142
+ /* _MSC_FULL_VER = VVRRPPPP */
143
+ # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
144
+ # endif
145
+ # endif
146
+ # if defined(_MSC_BUILD)
147
+ # define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
148
+ # endif
149
+
150
+ /* Analog VisualDSP++ >= 4.5.6 */
151
+ #elif defined(__VISUALDSPVERSION__)
152
+ # define COMPILER_ID "ADSP"
153
+ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
154
+ # define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
155
+ # define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
156
+ # define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
157
+
158
+ /* Analog VisualDSP++ < 4.5.6 */
159
+ #elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
160
+ # define COMPILER_ID "ADSP"
161
+
162
+ /* IAR Systems compiler for embedded systems.
163
+ http://www.iar.com
164
+ Not supported yet by CMake
165
+ #elif defined(__IAR_SYSTEMS_ICC__)
166
+ # define COMPILER_ID "IAR" */
167
+
168
+ /* sdcc, the small devices C compiler for embedded systems,
169
+ http://sdcc.sourceforge.net */
170
+ #elif defined(SDCC)
171
+ # define COMPILER_ID "SDCC"
172
+ /* SDCC = VRP */
173
+ # define COMPILER_VERSION_MAJOR DEC(SDCC/100)
174
+ # define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
175
+ # define COMPILER_VERSION_PATCH DEC(SDCC % 10)
176
+
177
+ #elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
178
+ # define COMPILER_ID "MIPSpro"
179
+ # if defined(_SGI_COMPILER_VERSION)
180
+ /* _SGI_COMPILER_VERSION = VRP */
181
+ # define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
182
+ # define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
183
+ # define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
184
+ # else
185
+ /* _COMPILER_VERSION = VRP */
186
+ # define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
187
+ # define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
188
+ # define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
189
+ # endif
190
+
191
+ /* This compiler is either not known or is too old to define an
192
+ identification macro. Try to identify the platform and guess that
193
+ it is the native compiler. */
194
+ #elif defined(__sgi)
195
+ # define COMPILER_ID "MIPSpro"
196
+
197
+ #elif defined(__hpux) || defined(__hpua)
198
+ # define COMPILER_ID "HP"
199
+
200
+ #else /* unknown compiler */
201
+ # define COMPILER_ID ""
202
+
203
+ #endif
204
+
205
+ /* Construct the string literal in pieces to prevent the source from
206
+ getting matched. Store it in a pointer rather than an array
207
+ because some compilers will just produce instructions to fill the
208
+ array rather than assigning a pointer to a static array. */
209
+ char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
210
+
211
+ /* Identify known platforms by name. */
212
+ #if defined(__linux) || defined(__linux__) || defined(linux)
213
+ # define PLATFORM_ID "Linux"
214
+
215
+ #elif defined(__CYGWIN__)
216
+ # define PLATFORM_ID "Cygwin"
217
+
218
+ #elif defined(__MINGW32__)
219
+ # define PLATFORM_ID "MinGW"
220
+
221
+ #elif defined(__APPLE__)
222
+ # define PLATFORM_ID "Darwin"
223
+
224
+ #elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
225
+ # define PLATFORM_ID "Windows"
226
+
227
+ #elif defined(__FreeBSD__) || defined(__FreeBSD)
228
+ # define PLATFORM_ID "FreeBSD"
229
+
230
+ #elif defined(__NetBSD__) || defined(__NetBSD)
231
+ # define PLATFORM_ID "NetBSD"
232
+
233
+ #elif defined(__OpenBSD__) || defined(__OPENBSD)
234
+ # define PLATFORM_ID "OpenBSD"
235
+
236
+ #elif defined(__sun) || defined(sun)
237
+ # define PLATFORM_ID "SunOS"
238
+
239
+ #elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
240
+ # define PLATFORM_ID "AIX"
241
+
242
+ #elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
243
+ # define PLATFORM_ID "IRIX"
244
+
245
+ #elif defined(__hpux) || defined(__hpux__)
246
+ # define PLATFORM_ID "HP-UX"
247
+
248
+ #elif defined(__HAIKU) || defined(__HAIKU__) || defined(_HAIKU)
249
+ # define PLATFORM_ID "Haiku"
250
+ /* Haiku also defines __BEOS__ so we must
251
+ put it prior to the check for __BEOS__
252
+ */
253
+
254
+ #elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
255
+ # define PLATFORM_ID "BeOS"
256
+
257
+ #elif defined(__QNX__) || defined(__QNXNTO__)
258
+ # define PLATFORM_ID "QNX"
259
+
260
+ #elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
261
+ # define PLATFORM_ID "Tru64"
262
+
263
+ #elif defined(__riscos) || defined(__riscos__)
264
+ # define PLATFORM_ID "RISCos"
265
+
266
+ #elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
267
+ # define PLATFORM_ID "SINIX"
268
+
269
+ #elif defined(__UNIX_SV__)
270
+ # define PLATFORM_ID "UNIX_SV"
271
+
272
+ #elif defined(__bsdos__)
273
+ # define PLATFORM_ID "BSDOS"
274
+
275
+ #elif defined(_MPRAS) || defined(MPRAS)
276
+ # define PLATFORM_ID "MP-RAS"
277
+
278
+ #elif defined(__osf) || defined(__osf__)
279
+ # define PLATFORM_ID "OSF1"
280
+
281
+ #elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
282
+ # define PLATFORM_ID "SCO_SV"
283
+
284
+ #elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
285
+ # define PLATFORM_ID "ULTRIX"
286
+
287
+ #elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
288
+ # define PLATFORM_ID "Xenix"
289
+
290
+ #else /* unknown platform */
291
+ # define PLATFORM_ID ""
292
+
293
+ #endif
294
+
295
+ /* For windows compilers MSVC and Intel we can determine
296
+ the architecture of the compiler being used. This is because
297
+ the compilers do not have flags that can change the architecture,
298
+ but rather depend on which compiler is being used
299
+ */
300
+ #if defined(_WIN32) && defined(_MSC_VER)
301
+ # if defined(_M_IA64)
302
+ # define ARCHITECTURE_ID "IA64"
303
+
304
+ # elif defined(_M_X64) || defined(_M_AMD64)
305
+ # define ARCHITECTURE_ID "x64"
306
+
307
+ # elif defined(_M_IX86)
308
+ # define ARCHITECTURE_ID "X86"
309
+
310
+ # elif defined(_M_ARM)
311
+ # define ARCHITECTURE_ID "ARM"
312
+
313
+ # elif defined(_M_MIPS)
314
+ # define ARCHITECTURE_ID "MIPS"
315
+
316
+ # elif defined(_M_SH)
317
+ # define ARCHITECTURE_ID "SHx"
318
+
319
+ # else /* unknown architecture */
320
+ # define ARCHITECTURE_ID ""
321
+ # endif
322
+
323
+ #else
324
+ # define ARCHITECTURE_ID ""
325
+ #endif
326
+
327
+ /* Convert integer to decimal digit literals. */
328
+ #define DEC(n) \
329
+ ('0' + (((n) / 10000000)%10)), \
330
+ ('0' + (((n) / 1000000)%10)), \
331
+ ('0' + (((n) / 100000)%10)), \
332
+ ('0' + (((n) / 10000)%10)), \
333
+ ('0' + (((n) / 1000)%10)), \
334
+ ('0' + (((n) / 100)%10)), \
335
+ ('0' + (((n) / 10)%10)), \
336
+ ('0' + ((n) % 10))
337
+
338
+ /* Convert integer to hex digit literals. */
339
+ #define HEX(n) \
340
+ ('0' + ((n)>>28 & 0xF)), \
341
+ ('0' + ((n)>>24 & 0xF)), \
342
+ ('0' + ((n)>>20 & 0xF)), \
343
+ ('0' + ((n)>>16 & 0xF)), \
344
+ ('0' + ((n)>>12 & 0xF)), \
345
+ ('0' + ((n)>>8 & 0xF)), \
346
+ ('0' + ((n)>>4 & 0xF)), \
347
+ ('0' + ((n) & 0xF))
348
+
349
+ /* Construct a string literal encoding the version number components. */
350
+ #ifdef COMPILER_VERSION_MAJOR
351
+ char const info_version[] = {
352
+ 'I', 'N', 'F', 'O', ':',
353
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
354
+ COMPILER_VERSION_MAJOR,
355
+ # ifdef COMPILER_VERSION_MINOR
356
+ '.', COMPILER_VERSION_MINOR,
357
+ # ifdef COMPILER_VERSION_PATCH
358
+ '.', COMPILER_VERSION_PATCH,
359
+ # ifdef COMPILER_VERSION_TWEAK
360
+ '.', COMPILER_VERSION_TWEAK,
361
+ # endif
362
+ # endif
363
+ # endif
364
+ ']','\0'};
365
+ #endif
366
+
367
+ /* Construct the string literal in pieces to prevent the source from
368
+ getting matched. Store it in a pointer rather than an array
369
+ because some compilers will just produce instructions to fill the
370
+ array rather than assigning a pointer to a static array. */
371
+ char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
372
+ char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
373
+
374
+
375
+
376
+ /*--------------------------------------------------------------------------*/
377
+
378
+ #ifdef ID_VOID_MAIN
379
+ void main() {}
380
+ #else
381
+ int main(int argc, char* argv[])
382
+ {
383
+ int require = 0;
384
+ require += info_compiler[argc];
385
+ require += info_platform[argc];
386
+ require += info_arch[argc];
387
+ #ifdef COMPILER_VERSION_MAJOR
388
+ require += info_version[argc];
389
+ #endif
390
+ (void)argv;
391
+ return require;
392
+ }
393
+ #endif
@@ -0,0 +1,16 @@
1
+ # CMAKE generated file: DO NOT EDIT!
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 2.8
3
+
4
+ # Relative path conversion top directories.
5
+ SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML")
6
+ SET(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build")
7
+
8
+ # Force unix paths in dependencies.
9
+ SET(CMAKE_FORCE_UNIX_PATHS 1)
10
+
11
+
12
+ # The C and CXX include file regular expressions for this directory.
13
+ SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
14
+ SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
15
+ SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
16
+ SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
@@ -0,0 +1,34 @@
1
+ # Hashes of file build rules.
2
+ bd653340975d7e5a3ae3d3b883e7eb70 ../tests/clar.suite
3
+ 9a840d77f568169b8b1c1848381ee678 CMakeFiles/Continuous
4
+ 2dccc0ff1f0376c5bcdcd4ce2c9f9c85 CMakeFiles/ContinuousBuild
5
+ 5c04858b4078425d5efdac7b018730e2 CMakeFiles/ContinuousConfigure
6
+ f1b75025b2840041943009293dbf1aeb CMakeFiles/ContinuousCoverage
7
+ d70ab2a05738c3ebc87d49a6e32a7ff0 CMakeFiles/ContinuousMemCheck
8
+ 5a6fef06c6b62ad18ca8c048e1db4b25 CMakeFiles/ContinuousStart
9
+ 2e3b73483f4371ee1b270cbc4e7751a5 CMakeFiles/ContinuousSubmit
10
+ c67383662503443c03f79afd194fcf16 CMakeFiles/ContinuousTest
11
+ ddc9bef41089b843ac05394fd9f05a7f CMakeFiles/ContinuousUpdate
12
+ 357e58feab768e911d4650f04d74c14f CMakeFiles/Experimental
13
+ b457c30db97a27169fed3c405606ed08 CMakeFiles/ExperimentalBuild
14
+ f20aaa3aa584f5acbd55cf5b93041b1b CMakeFiles/ExperimentalConfigure
15
+ 465b24c4fc6b3cba3e771be71b9c57ce CMakeFiles/ExperimentalCoverage
16
+ 68cc8e9576df666b56c7ab8d624526ef CMakeFiles/ExperimentalMemCheck
17
+ f1f5088b39b23e84f459f97a84db84ef CMakeFiles/ExperimentalStart
18
+ 63ab9980f4d9efc68b960c48de252834 CMakeFiles/ExperimentalSubmit
19
+ 44cde0405ad82eb9b784d5299c78cea9 CMakeFiles/ExperimentalTest
20
+ e171b72378ef75a2cc5b9ec6f5636125 CMakeFiles/ExperimentalUpdate
21
+ 5068996a4773b7483c982de44591fb65 CMakeFiles/Nightly
22
+ b4f7c715cf92f811df78fe26040dd292 CMakeFiles/NightlyBuild
23
+ e8a0d323b56932b256b1d8d64361d5f9 CMakeFiles/NightlyConfigure
24
+ 08b8638c196bfb933386ce168ec356df CMakeFiles/NightlyCoverage
25
+ f25e19bd18fbb993bc0da924e35a4c87 CMakeFiles/NightlyMemCheck
26
+ 3a9bc115372780811375a0824a8ee253 CMakeFiles/NightlyMemoryCheck
27
+ d7eb78d76f44c99f73cfcda4d0e9a87c CMakeFiles/NightlyStart
28
+ 070199d09a859b191d10e335701c8055 CMakeFiles/NightlySubmit
29
+ 77db63bf9c1bb19f8e253950ee8e70aa CMakeFiles/NightlyTest
30
+ 71a69aa09afd0fc507d26a9386f86752 CMakeFiles/NightlyUpdate
31
+ 72b35e4c2c31f86db719820d21f39c1d CMakeFiles/format
32
+ 09cef73bbd9c8c4a65a9408d847299a0 CMakeFiles/memcheck
33
+ 465ce330bfed3c0650cdbf29009efeba lexer.c
34
+ 13a0557023e2b56554dff82d66d8212e parser.c
@@ -0,0 +1,27 @@
1
+ # The set of languages for which implicit dependencies are needed:
2
+ SET(CMAKE_DEPENDS_LANGUAGES
3
+ )
4
+ # The set of files for implicit dependencies of each language:
5
+
6
+ # Preprocessor definitions for this target.
7
+ SET(CMAKE_TARGET_DEFINITIONS
8
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
9
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
10
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
11
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
12
+ )
13
+
14
+ # Targets to which this target links.
15
+ SET(CMAKE_TARGET_LINKED_INFO_FILES
16
+ )
17
+
18
+ # The include file search paths:
19
+ SET(CMAKE_C_TARGET_INCLUDE_PATH
20
+ "../src"
21
+ "../deps"
22
+ "."
23
+ "../tests"
24
+ )
25
+ SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
26
+ SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
27
+ SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
@@ -0,0 +1,8 @@
1
+ FILE(REMOVE_RECURSE
2
+ "CMakeFiles/Continuous"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/Continuous.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ ENDFOREACH(lang)
@@ -0,0 +1,27 @@
1
+ # The set of languages for which implicit dependencies are needed:
2
+ SET(CMAKE_DEPENDS_LANGUAGES
3
+ )
4
+ # The set of files for implicit dependencies of each language:
5
+
6
+ # Preprocessor definitions for this target.
7
+ SET(CMAKE_TARGET_DEFINITIONS
8
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
9
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
10
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
11
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
12
+ )
13
+
14
+ # Targets to which this target links.
15
+ SET(CMAKE_TARGET_LINKED_INFO_FILES
16
+ )
17
+
18
+ # The include file search paths:
19
+ SET(CMAKE_C_TARGET_INCLUDE_PATH
20
+ "../src"
21
+ "../deps"
22
+ "."
23
+ "../tests"
24
+ )
25
+ SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
26
+ SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
27
+ SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
@@ -0,0 +1,8 @@
1
+ FILE(REMOVE_RECURSE
2
+ "CMakeFiles/ContinuousBuild"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ContinuousBuild.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ ENDFOREACH(lang)
@@ -0,0 +1,27 @@
1
+ # The set of languages for which implicit dependencies are needed:
2
+ SET(CMAKE_DEPENDS_LANGUAGES
3
+ )
4
+ # The set of files for implicit dependencies of each language:
5
+
6
+ # Preprocessor definitions for this target.
7
+ SET(CMAKE_TARGET_DEFINITIONS
8
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
9
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
10
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
11
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
12
+ )
13
+
14
+ # Targets to which this target links.
15
+ SET(CMAKE_TARGET_LINKED_INFO_FILES
16
+ )
17
+
18
+ # The include file search paths:
19
+ SET(CMAKE_C_TARGET_INCLUDE_PATH
20
+ "../src"
21
+ "../deps"
22
+ "."
23
+ "../tests"
24
+ )
25
+ SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
26
+ SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
27
+ SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
@@ -0,0 +1,8 @@
1
+ FILE(REMOVE_RECURSE
2
+ "CMakeFiles/ContinuousConfigure"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ContinuousConfigure.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ ENDFOREACH(lang)
@@ -0,0 +1,27 @@
1
+ # The set of languages for which implicit dependencies are needed:
2
+ SET(CMAKE_DEPENDS_LANGUAGES
3
+ )
4
+ # The set of files for implicit dependencies of each language:
5
+
6
+ # Preprocessor definitions for this target.
7
+ SET(CMAKE_TARGET_DEFINITIONS
8
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
9
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
10
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
11
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
12
+ )
13
+
14
+ # Targets to which this target links.
15
+ SET(CMAKE_TARGET_LINKED_INFO_FILES
16
+ )
17
+
18
+ # The include file search paths:
19
+ SET(CMAKE_C_TARGET_INCLUDE_PATH
20
+ "../src"
21
+ "../deps"
22
+ "."
23
+ "../tests"
24
+ )
25
+ SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
26
+ SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
27
+ SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
@@ -0,0 +1,8 @@
1
+ FILE(REMOVE_RECURSE
2
+ "CMakeFiles/ContinuousCoverage"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ContinuousCoverage.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ ENDFOREACH(lang)
@@ -0,0 +1,27 @@
1
+ # The set of languages for which implicit dependencies are needed:
2
+ SET(CMAKE_DEPENDS_LANGUAGES
3
+ )
4
+ # The set of files for implicit dependencies of each language:
5
+
6
+ # Preprocessor definitions for this target.
7
+ SET(CMAKE_TARGET_DEFINITIONS
8
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
9
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
10
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
11
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
12
+ )
13
+
14
+ # Targets to which this target links.
15
+ SET(CMAKE_TARGET_LINKED_INFO_FILES
16
+ )
17
+
18
+ # The include file search paths:
19
+ SET(CMAKE_C_TARGET_INCLUDE_PATH
20
+ "../src"
21
+ "../deps"
22
+ "."
23
+ "../tests"
24
+ )
25
+ SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
26
+ SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
27
+ SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
@@ -0,0 +1,8 @@
1
+ FILE(REMOVE_RECURSE
2
+ "CMakeFiles/ContinuousMemCheck"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ContinuousMemCheck.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ ENDFOREACH(lang)
@@ -0,0 +1,27 @@
1
+ # The set of languages for which implicit dependencies are needed:
2
+ SET(CMAKE_DEPENDS_LANGUAGES
3
+ )
4
+ # The set of files for implicit dependencies of each language:
5
+
6
+ # Preprocessor definitions for this target.
7
+ SET(CMAKE_TARGET_DEFINITIONS
8
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
9
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
10
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
11
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
12
+ )
13
+
14
+ # Targets to which this target links.
15
+ SET(CMAKE_TARGET_LINKED_INFO_FILES
16
+ )
17
+
18
+ # The include file search paths:
19
+ SET(CMAKE_C_TARGET_INCLUDE_PATH
20
+ "../src"
21
+ "../deps"
22
+ "."
23
+ "../tests"
24
+ )
25
+ SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
26
+ SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
27
+ SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
@@ -0,0 +1,8 @@
1
+ FILE(REMOVE_RECURSE
2
+ "CMakeFiles/ContinuousStart"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ContinuousStart.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ ENDFOREACH(lang)