[Mlir-commits] [mlir] 49d4e0e - Remove CMake configuration for Sphinx targets in MLIR

Mehdi Amini llvmlistbot at llvm.org
Wed Mar 11 18:28:50 PDT 2020


Author: Mehdi Amini
Date: 2020-03-12T01:28:38Z
New Revision: 49d4e0e3278c640164c29c92ee624d8935bc19b6

URL: https://github.com/llvm/llvm-project/commit/49d4e0e3278c640164c29c92ee624d8935bc19b6
DIFF: https://github.com/llvm/llvm-project/commit/49d4e0e3278c640164c29c92ee624d8935bc19b6.diff

LOG: Remove CMake configuration for Sphinx targets in MLIR

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.

Added: 
    

Modified: 
    mlir/docs/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/mlir/docs/CMakeLists.txt b/mlir/docs/CMakeLists.txt
index 3232592e8f3e..36cd3f998388 100644
--- a/mlir/docs/CMakeLists.txt
+++ b/mlir/docs/CMakeLists.txt
@@ -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()


        


More information about the Mlir-commits mailing list