[Mlir-commits] [mlir] f78dcb8 - Fix the build of `mlir-doc` (again)

Mehdi Amini llvmlistbot at llvm.org
Wed Apr 14 22:18:01 PDT 2021


Author: Mehdi Amini
Date: 2021-04-15T05:17:51Z
New Revision: f78dcb81af7d78dc07f343a86a0942df7297f9a3

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

LOG: Fix the build of `mlir-doc` (again)

This is more fallout from add_mlir_doc() API change

Added: 
    

Modified: 
    mlir/include/mlir/Interfaces/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Interfaces/CMakeLists.txt b/mlir/include/mlir/Interfaces/CMakeLists.txt
index bc7c4501ee30..b838bce02cff 100644
--- a/mlir/include/mlir/Interfaces/CMakeLists.txt
+++ b/mlir/include/mlir/Interfaces/CMakeLists.txt
@@ -25,11 +25,11 @@ add_mlir_doc(DataLayoutInterfaces
   -gen-attr-interface-docs)
 
 add_mlir_doc(DataLayoutInterfaces
-  -gen-type-interface-docs
   DataLayoutTypeInterface
-  Interfaces/)
+  Interfaces/
+  -gen-type-interface-docs)
 
 add_mlir_doc(DataLayoutInterfaces
-  -gen-op-interface-docs
   DataLayoutOpInterface
-  Interfaces/)
+  Interfaces/
+  -gen-op-interface-docs)


        


More information about the Mlir-commits mailing list