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/ContinuousSubmit"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ContinuousSubmit.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/ContinuousTest"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ContinuousTest.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/ContinuousUpdate"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ContinuousUpdate.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/Experimental"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/Experimental.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/ExperimentalBuild"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ExperimentalBuild.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/ExperimentalConfigure"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ExperimentalConfigure.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/ExperimentalCoverage"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ExperimentalCoverage.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/ExperimentalMemCheck"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ExperimentalMemCheck.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/ExperimentalStart"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ExperimentalStart.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/ExperimentalSubmit"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ExperimentalSubmit.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/ExperimentalTest"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ExperimentalTest.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/ExperimentalUpdate"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/ExperimentalUpdate.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ ENDFOREACH(lang)
@@ -0,0 +1,95 @@
1
+ # CMAKE generated file: DO NOT EDIT!
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 2.8
3
+
4
+ # The generator used is:
5
+ SET(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
6
+
7
+ # The top level Makefile was generated from the following files:
8
+ SET(CMAKE_MAKEFILE_DEPENDS
9
+ "CMakeCache.txt"
10
+ "../CMakeLists.txt"
11
+ "CMakeFiles/2.8.10.1/CMakeCCompiler.cmake"
12
+ "CMakeFiles/2.8.10.1/CMakeCXXCompiler.cmake"
13
+ "CMakeFiles/2.8.10.1/CMakeSystem.cmake"
14
+ "../cmake/Modules/astyle.cmake"
15
+ "../src/libmtex2MML.pc.in"
16
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CMakeCInformation.cmake"
17
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CMakeCXXInformation.cmake"
18
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CMakeCommonLanguageInclude.cmake"
19
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CMakeExpandImportedTargets.cmake"
20
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CMakeGenericSystem.cmake"
21
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CMakeParseArguments.cmake"
22
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CMakeSystemSpecificInformation.cmake"
23
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CTest.cmake"
24
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CTestTargets.cmake"
25
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CTestUseLaunchers.cmake"
26
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CheckCXXCompilerFlag.cmake"
27
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CheckCXXSourceCompiles.cmake"
28
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CheckLibraryExists.cmake"
29
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/Compiler/Clang-C.cmake"
30
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/Compiler/Clang-CXX.cmake"
31
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/Compiler/Clang.cmake"
32
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/Compiler/GNU.cmake"
33
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/DartConfiguration.tcl.in"
34
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/FindBISON.cmake"
35
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/FindFLEX.cmake"
36
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
37
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/FindPackageMessage.cmake"
38
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/FindPythonInterp.cmake"
39
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/GenerateExportHeader.cmake"
40
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/Platform/Darwin-Clang-C.cmake"
41
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/Platform/Darwin-Clang-CXX.cmake"
42
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/Platform/Darwin-Clang.cmake"
43
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/Platform/Darwin.cmake"
44
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/Platform/UnixPaths.cmake"
45
+ "/usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/exportheader.cmake.in"
46
+ )
47
+
48
+ # The corresponding makefile is:
49
+ SET(CMAKE_MAKEFILE_OUTPUTS
50
+ "Makefile"
51
+ "CMakeFiles/cmake.check_cache"
52
+ )
53
+
54
+ # Byproducts of CMake generate step:
55
+ SET(CMAKE_MAKEFILE_PRODUCTS
56
+ "CMakeFiles/CMakeDirectoryInformation.cmake"
57
+ )
58
+
59
+ # Dependency information for all targets:
60
+ SET(CMAKE_DEPEND_INFO_FILES
61
+ "CMakeFiles/Continuous.dir/DependInfo.cmake"
62
+ "CMakeFiles/ContinuousBuild.dir/DependInfo.cmake"
63
+ "CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake"
64
+ "CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake"
65
+ "CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake"
66
+ "CMakeFiles/ContinuousStart.dir/DependInfo.cmake"
67
+ "CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake"
68
+ "CMakeFiles/ContinuousTest.dir/DependInfo.cmake"
69
+ "CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake"
70
+ "CMakeFiles/Experimental.dir/DependInfo.cmake"
71
+ "CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake"
72
+ "CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake"
73
+ "CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake"
74
+ "CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake"
75
+ "CMakeFiles/ExperimentalStart.dir/DependInfo.cmake"
76
+ "CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake"
77
+ "CMakeFiles/ExperimentalTest.dir/DependInfo.cmake"
78
+ "CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake"
79
+ "CMakeFiles/Nightly.dir/DependInfo.cmake"
80
+ "CMakeFiles/NightlyBuild.dir/DependInfo.cmake"
81
+ "CMakeFiles/NightlyConfigure.dir/DependInfo.cmake"
82
+ "CMakeFiles/NightlyCoverage.dir/DependInfo.cmake"
83
+ "CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake"
84
+ "CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake"
85
+ "CMakeFiles/NightlyStart.dir/DependInfo.cmake"
86
+ "CMakeFiles/NightlySubmit.dir/DependInfo.cmake"
87
+ "CMakeFiles/NightlyTest.dir/DependInfo.cmake"
88
+ "CMakeFiles/NightlyUpdate.dir/DependInfo.cmake"
89
+ "CMakeFiles/format.dir/DependInfo.cmake"
90
+ "CMakeFiles/libmtex2MML.dir/DependInfo.cmake"
91
+ "CMakeFiles/libmtex2MML_static.dir/DependInfo.cmake"
92
+ "CMakeFiles/memcheck.dir/DependInfo.cmake"
93
+ "CMakeFiles/mtex2MML.dir/DependInfo.cmake"
94
+ "CMakeFiles/mtex2MML_clar.dir/DependInfo.cmake"
95
+ )
@@ -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/Nightly"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/Nightly.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/NightlyBuild"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ FOREACH(lang)
7
+ INCLUDE(CMakeFiles/NightlyBuild.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ ENDFOREACH(lang)