From 49d4e0e3278c640164c29c92ee624d8935bc19b6 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Thu, 12 Mar 2020 01:26:54 +0000 Subject: [PATCH] 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. --- mlir/docs/CMakeLists.txt | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/mlir/docs/CMakeLists.txt b/mlir/docs/CMakeLists.txt index 3232592..36cd3f9 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() -- 2.7.4