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,59 @@
1
+ # The set of languages for which implicit dependencies are needed:
2
+ SET(CMAKE_DEPENDS_LANGUAGES
3
+ "C"
4
+ )
5
+ # The set of files for implicit dependencies of each language:
6
+ SET(CMAKE_DEPENDS_CHECK_C
7
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/lexer.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/lexer.c.o"
8
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/parser.c.o"
9
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/colors.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/src/colors.c.o"
10
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/em.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/src/em.c.o"
11
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/environment.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/src/environment.c.o"
12
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/string_extras.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o"
13
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/array.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/array.c.o"
14
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/basic.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o"
15
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/clar.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o"
16
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/cornercases.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o"
17
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/delimiters.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o"
18
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/deps/file2str/file2str.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o"
19
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/deps/mkdtemp/mkdtemp.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o"
20
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/deps/trim/trim.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o"
21
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/env.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/env.c.o"
22
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/functions.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o"
23
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/helpers.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o"
24
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/main.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/main.c.o"
25
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/maliciousness.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o"
26
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/mathjax.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o"
27
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/numbered_equations.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o"
28
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/performance.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o"
29
+ )
30
+ SET(CMAKE_C_COMPILER_ID "Clang")
31
+
32
+ # Preprocessor definitions for this target.
33
+ SET(CMAKE_TARGET_DEFINITIONS
34
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
35
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
36
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
37
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
38
+ )
39
+
40
+ # Pairs of files generated by the same build rule.
41
+ SET(CMAKE_MULTIPLE_OUTPUT_PAIRS
42
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.h" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c"
43
+ )
44
+
45
+
46
+ # Targets to which this target links.
47
+ SET(CMAKE_TARGET_LINKED_INFO_FILES
48
+ )
49
+
50
+ # The include file search paths:
51
+ SET(CMAKE_C_TARGET_INCLUDE_PATH
52
+ "../src"
53
+ "../deps"
54
+ "."
55
+ "../tests"
56
+ )
57
+ SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
58
+ SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
59
+ SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
@@ -0,0 +1,35 @@
1
+ FILE(REMOVE_RECURSE
2
+ "../tests/clar.suite"
3
+ "parser.c"
4
+ "parser.h"
5
+ "lexer.c"
6
+ "CMakeFiles/mtex2MML_clar.dir/src/colors.c.o"
7
+ "CMakeFiles/mtex2MML_clar.dir/src/em.c.o"
8
+ "CMakeFiles/mtex2MML_clar.dir/src/environment.c.o"
9
+ "CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o"
10
+ "CMakeFiles/mtex2MML_clar.dir/tests/main.c.o"
11
+ "CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o"
12
+ "CMakeFiles/mtex2MML_clar.dir/tests/array.c.o"
13
+ "CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o"
14
+ "CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o"
15
+ "CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o"
16
+ "CMakeFiles/mtex2MML_clar.dir/tests/env.c.o"
17
+ "CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o"
18
+ "CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o"
19
+ "CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o"
20
+ "CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o"
21
+ "CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o"
22
+ "CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o"
23
+ "CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o"
24
+ "CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o"
25
+ "CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o"
26
+ "CMakeFiles/mtex2MML_clar.dir/parser.c.o"
27
+ "CMakeFiles/mtex2MML_clar.dir/lexer.c.o"
28
+ "mtex2MML_clar.pdb"
29
+ "mtex2MML_clar"
30
+ )
31
+
32
+ # Per-language clean rules from dependency scanning.
33
+ FOREACH(lang C)
34
+ INCLUDE(CMakeFiles/mtex2MML_clar.dir/cmake_clean_${lang}.cmake OPTIONAL)
35
+ ENDFOREACH(lang)
@@ -0,0 +1 @@
1
+ /usr/bin/cc -I/usr/local/include -Wall -Wextra -std=c99 -pedantic-errors -fextended-identifiers -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/lib CMakeFiles/mtex2MML_clar.dir/src/colors.c.o CMakeFiles/mtex2MML_clar.dir/src/em.c.o CMakeFiles/mtex2MML_clar.dir/src/environment.c.o CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o CMakeFiles/mtex2MML_clar.dir/tests/main.c.o CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o CMakeFiles/mtex2MML_clar.dir/tests/array.c.o CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o CMakeFiles/mtex2MML_clar.dir/tests/env.c.o CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o CMakeFiles/mtex2MML_clar.dir/parser.c.o CMakeFiles/mtex2MML_clar.dir/lexer.c.o -o mtex2MML_clar
@@ -0,0 +1,7 @@
1
+ # CMake generated Testfile for
2
+ # Source directory: /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML
3
+ # Build directory: /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build
4
+ #
5
+ # This file includes the relevent testing commands required for
6
+ # testing this directory and lists subdirectories to be tested as well.
7
+ ADD_TEST(mtex2MML_clar "mtex2MML_clar" "-v")