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,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/NightlyConfigure"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/NightlyConfigure.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/NightlyCoverage"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/NightlyCoverage.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/NightlyMemCheck"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/NightlyMemCheck.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/NightlyMemoryCheck"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/NightlyMemoryCheck.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/NightlyStart"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/NightlyStart.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/NightlySubmit"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/NightlySubmit.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/NightlyTest"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/NightlyTest.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/NightlyUpdate"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/NightlyUpdate.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ ENDFOREACH(lang)
@@ -0,0 +1,34 @@
1
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir
2
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir
3
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir
4
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir
5
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir
6
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir
7
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir
8
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir
9
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir
10
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir
11
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir
12
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir
13
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir
14
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir
15
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir
16
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir
17
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir
18
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir
19
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir
20
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir
21
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir
22
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir
23
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir
24
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir
25
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir
26
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir
27
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir
28
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir
29
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir
30
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir
31
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir
32
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir
33
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir
34
+ /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir
@@ -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/format"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/format.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ ENDFOREACH(lang)
@@ -0,0 +1,44 @@
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/libmtex2MML.dir/lexer.c.o"
8
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/parser.c.o"
9
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/colors.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.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/libmtex2MML.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/libmtex2MML.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/libmtex2MML.dir/src/string_extras.c.o"
13
+ )
14
+ SET(CMAKE_C_COMPILER_ID "Clang")
15
+
16
+ # Preprocessor definitions for this target.
17
+ SET(CMAKE_TARGET_DEFINITIONS
18
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
19
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
20
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
21
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
22
+ )
23
+
24
+ # Pairs of files generated by the same build rule.
25
+ SET(CMAKE_MULTIPLE_OUTPUT_PAIRS
26
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/libmtex2MML.dylib" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/libmtex2MML.1.2.3.dylib"
27
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.h" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c"
28
+ )
29
+
30
+
31
+ # Targets to which this target links.
32
+ SET(CMAKE_TARGET_LINKED_INFO_FILES
33
+ )
34
+
35
+ # The include file search paths:
36
+ SET(CMAKE_C_TARGET_INCLUDE_PATH
37
+ "../src"
38
+ "../deps"
39
+ "."
40
+ "../tests"
41
+ )
42
+ SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
43
+ SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
44
+ SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
@@ -0,0 +1,19 @@
1
+ FILE(REMOVE_RECURSE
2
+ "parser.c"
3
+ "parser.h"
4
+ "lexer.c"
5
+ "CMakeFiles/libmtex2MML.dir/src/colors.c.o"
6
+ "CMakeFiles/libmtex2MML.dir/src/em.c.o"
7
+ "CMakeFiles/libmtex2MML.dir/src/environment.c.o"
8
+ "CMakeFiles/libmtex2MML.dir/src/string_extras.c.o"
9
+ "CMakeFiles/libmtex2MML.dir/parser.c.o"
10
+ "CMakeFiles/libmtex2MML.dir/lexer.c.o"
11
+ "libmtex2MML.pdb"
12
+ "libmtex2MML.dylib"
13
+ "libmtex2MML.1.2.3.dylib"
14
+ )
15
+
16
+ # Per-language clean rules from dependency scanning.
17
+ FOREACH(lang C)
18
+ INCLUDE(CMakeFiles/libmtex2MML.dir/cmake_clean_${lang}.cmake OPTIONAL)
19
+ ENDFOREACH(lang)
@@ -0,0 +1 @@
1
+ /usr/bin/cc -I/usr/local/include -Wall -Wextra -std=c99 -pedantic-errors -fextended-identifiers -dynamiclib -Wl,-headerpad_max_install_names -L/usr/local/lib -compatibility_version 1.2.3 -current_version 1.2.3 -o libmtex2MML.1.2.3.dylib -install_name /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/libmtex2MML.1.2.3.dylib CMakeFiles/libmtex2MML.dir/src/colors.c.o CMakeFiles/libmtex2MML.dir/src/em.c.o CMakeFiles/libmtex2MML.dir/src/environment.c.o CMakeFiles/libmtex2MML.dir/src/string_extras.c.o CMakeFiles/libmtex2MML.dir/parser.c.o CMakeFiles/libmtex2MML.dir/lexer.c.o
@@ -0,0 +1,43 @@
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/libmtex2MML_static.dir/lexer.c.o"
8
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/parser.c.o"
9
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/colors.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.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/libmtex2MML_static.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/libmtex2MML_static.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/libmtex2MML_static.dir/src/string_extras.c.o"
13
+ )
14
+ SET(CMAKE_C_COMPILER_ID "Clang")
15
+
16
+ # Preprocessor definitions for this target.
17
+ SET(CMAKE_TARGET_DEFINITIONS
18
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
19
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
20
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
21
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
22
+ )
23
+
24
+ # Pairs of files generated by the same build rule.
25
+ SET(CMAKE_MULTIPLE_OUTPUT_PAIRS
26
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.h" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c"
27
+ )
28
+
29
+
30
+ # Targets to which this target links.
31
+ SET(CMAKE_TARGET_LINKED_INFO_FILES
32
+ )
33
+
34
+ # The include file search paths:
35
+ SET(CMAKE_C_TARGET_INCLUDE_PATH
36
+ "../src"
37
+ "../deps"
38
+ "."
39
+ "../tests"
40
+ )
41
+ SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
42
+ SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
43
+ SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
@@ -0,0 +1,18 @@
1
+ FILE(REMOVE_RECURSE
2
+ "parser.c"
3
+ "parser.h"
4
+ "lexer.c"
5
+ "CMakeFiles/libmtex2MML_static.dir/src/colors.c.o"
6
+ "CMakeFiles/libmtex2MML_static.dir/src/em.c.o"
7
+ "CMakeFiles/libmtex2MML_static.dir/src/environment.c.o"
8
+ "CMakeFiles/libmtex2MML_static.dir/src/string_extras.c.o"
9
+ "CMakeFiles/libmtex2MML_static.dir/parser.c.o"
10
+ "CMakeFiles/libmtex2MML_static.dir/lexer.c.o"
11
+ "libmtex2MML.pdb"
12
+ "libmtex2MML.a"
13
+ )
14
+
15
+ # Per-language clean rules from dependency scanning.
16
+ FOREACH(lang C)
17
+ INCLUDE(CMakeFiles/libmtex2MML_static.dir/cmake_clean_${lang}.cmake OPTIONAL)
18
+ ENDFOREACH(lang)
@@ -0,0 +1,3 @@
1
+ FILE(REMOVE_RECURSE
2
+ "libmtex2MML.a"
3
+ )
@@ -0,0 +1,2 @@
1
+ /usr/bin/ar cr libmtex2MML.a CMakeFiles/libmtex2MML_static.dir/src/colors.c.o CMakeFiles/libmtex2MML_static.dir/src/em.c.o CMakeFiles/libmtex2MML_static.dir/src/environment.c.o CMakeFiles/libmtex2MML_static.dir/src/string_extras.c.o CMakeFiles/libmtex2MML_static.dir/parser.c.o CMakeFiles/libmtex2MML_static.dir/lexer.c.o
2
+ /usr/bin/ranlib libmtex2MML.a
@@ -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/memcheck"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/memcheck.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ ENDFOREACH(lang)
@@ -0,0 +1,44 @@
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.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.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.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.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.dir/src/environment.c.o"
12
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/main.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/src/main.c.o"
13
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/string_extras.c" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/src/string_extras.c.o"
14
+ )
15
+ SET(CMAKE_C_COMPILER_ID "Clang")
16
+
17
+ # Preprocessor definitions for this target.
18
+ SET(CMAKE_TARGET_DEFINITIONS
19
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
20
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
21
+ "CLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\""
22
+ "CLAR_TMPDIR=\"libmtex2MML_tests\""
23
+ )
24
+
25
+ # Pairs of files generated by the same build rule.
26
+ SET(CMAKE_MULTIPLE_OUTPUT_PAIRS
27
+ "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.h" "/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c"
28
+ )
29
+
30
+
31
+ # Targets to which this target links.
32
+ SET(CMAKE_TARGET_LINKED_INFO_FILES
33
+ )
34
+
35
+ # The include file search paths:
36
+ SET(CMAKE_C_TARGET_INCLUDE_PATH
37
+ "../src"
38
+ "../deps"
39
+ "."
40
+ "../tests"
41
+ )
42
+ SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
43
+ SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
44
+ SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
@@ -0,0 +1,19 @@
1
+ FILE(REMOVE_RECURSE
2
+ "parser.c"
3
+ "parser.h"
4
+ "lexer.c"
5
+ "CMakeFiles/mtex2MML.dir/src/colors.c.o"
6
+ "CMakeFiles/mtex2MML.dir/src/em.c.o"
7
+ "CMakeFiles/mtex2MML.dir/src/environment.c.o"
8
+ "CMakeFiles/mtex2MML.dir/src/string_extras.c.o"
9
+ "CMakeFiles/mtex2MML.dir/src/main.c.o"
10
+ "CMakeFiles/mtex2MML.dir/parser.c.o"
11
+ "CMakeFiles/mtex2MML.dir/lexer.c.o"
12
+ "mtex2MML.pdb"
13
+ "mtex2MML"
14
+ )
15
+
16
+ # Per-language clean rules from dependency scanning.
17
+ FOREACH(lang C)
18
+ INCLUDE(CMakeFiles/mtex2MML.dir/cmake_clean_${lang}.cmake OPTIONAL)
19
+ 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.dir/src/colors.c.o CMakeFiles/mtex2MML.dir/src/em.c.o CMakeFiles/mtex2MML.dir/src/environment.c.o CMakeFiles/mtex2MML.dir/src/string_extras.c.o CMakeFiles/mtex2MML.dir/src/main.c.o CMakeFiles/mtex2MML.dir/parser.c.o CMakeFiles/mtex2MML.dir/lexer.c.o -o mtex2MML