Remove CMake configuration for Sphinx targets in MLIR
authorMehdi Amini <joker-eph@gmail.com>
Thu, 12 Mar 2020 01:26:54 +0000 (01:26 +0000)
committerMehdi Amini <joker-eph@gmail.com>
Thu, 12 Mar 2020 01:28:38 +0000 (01:28 +0000)
MLIR does not have a Sphinx configuration, this is just leading to build
failures at the moment.
The website https://mlir.llvm.org/ is using the Hugo generator to
process the markdown files.

mlir/docs/CMakeLists.txt

index 3232592..36cd3f9 100644 (file)
@@ -90,14 +90,3 @@ if (LLVM_ENABLE_DOXYGEN)
 endif()
 endif()
 
-if (LLVM_ENABLE_SPHINX)
-  include(AddSphinxTarget)
-  if (SPHINX_FOUND)
-    if (${SPHINX_OUTPUT_HTML})
-      add_sphinx_target(html mlir)
-    endif()
-    if (${SPHINX_OUTPUT_MAN})
-      add_sphinx_target(man mlir)
-    endif()
-  endif()
-endif()