[Mlir-commits] [mlir] [mlir] Add missing add_mlir_library_install() to tool libraries (PR #140880)
Martin Valgur
llvmlistbot at llvm.org
Thu May 22 00:56:24 PDT 2025
================
@@ -15,3 +15,5 @@ llvm_add_library(MLIRPDLLParser STATIC
MLIRSupport
MLIRTableGen
)
+
+add_mlir_library_install(MLIRPDLLParser)
----------------
valgur wrote:
`add_mlir_library()` already adds `install()` commands automatically, but these three specifically use `llvm_add_library()` instead for whatever reason, which lacks this.
Should they be converted to `add_mlir_library()` instead, perhaps?
https://github.com/llvm/llvm-project/pull/140880
More information about the Mlir-commits
mailing list