[Mlir-commits] [mlir] 99357f2 - [PDLL] Specify LLVM_LINK_COMPONENTS using LINK_COMPONENTS

River Riddle llvmlistbot at llvm.org
Thu Mar 3 19:06:27 PST 2022


Author: River Riddle
Date: 2022-03-03T19:05:57-08:00
New Revision: 99357f2ed31834617af86a642dbbbe23a0ecf2e3

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

LOG: [PDLL] Specify LLVM_LINK_COMPONENTS using LINK_COMPONENTS

Added: 
    

Modified: 
    mlir/lib/Tools/PDLL/Parser/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Tools/PDLL/Parser/CMakeLists.txt b/mlir/lib/Tools/PDLL/Parser/CMakeLists.txt
index 5d466cf158858..d553f925cb4cf 100644
--- a/mlir/lib/Tools/PDLL/Parser/CMakeLists.txt
+++ b/mlir/lib/Tools/PDLL/Parser/CMakeLists.txt
@@ -1,11 +1,10 @@
-set(LLVM_LINK_COMPONENTS
-  Support
-  TableGen
-)
-
 add_mlir_library(MLIRPDLLParser
   Lexer.cpp
   Parser.cpp
+  
+  LINK_COMPONENTS
+  Support
+  TableGen
 
   LINK_LIBS PUBLIC
   MLIRPDLLAST


        


More information about the Mlir-commits mailing list