[Mlir-commits] [mlir] 63aaf9a - [mlir] Add missing CMake deps to mlir-pdll

Marius Brehler llvmlistbot at llvm.org
Tue May 3 23:17:42 PDT 2022


Author: Marius Brehler
Date: 2022-05-04T06:17:13Z
New Revision: 63aaf9a6e7f9b3215599da0caeb1a4a1e7754b7a

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

LOG: [mlir] Add missing CMake deps to mlir-pdll

Reviewed By: rriddle

Differential Revision: https://reviews.llvm.org/D124851

Added: 
    

Modified: 
    mlir/tools/mlir-pdll/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/mlir/tools/mlir-pdll/CMakeLists.txt b/mlir/tools/mlir-pdll/CMakeLists.txt
index 79b1412ea16d9..f6313484b6181 100644
--- a/mlir/tools/mlir-pdll/CMakeLists.txt
+++ b/mlir/tools/mlir-pdll/CMakeLists.txt
@@ -11,9 +11,11 @@ add_tablegen(mlir-pdll MLIR_PDLL
 set_target_properties(mlir-pdll PROPERTIES FOLDER "Tablegenning")
 target_link_libraries(mlir-pdll
   PRIVATE
-  MLIRPDLLAST
-  MLIRPDLLCodeGen
-  MLIRPDLLParser
+    MLIRIR
+    MLIRPDLLAST
+    MLIRPDLLCodeGen
+    MLIRPDLLODS
+    MLIRPDLLParser
   )
 
 mlir_check_all_link_libraries(mlir-pdll)


        


More information about the Mlir-commits mailing list