Files
clang-p2996/mlir/lib/Tools/PDLL/Parser/CMakeLists.txt
River Riddle 008de486f7 [mlir][PDLL] Add code completion to the PDLL language server
This commit adds code completion support to the language server,
and initially supports providing completions for: Member access,
attributes/constraint/dialect/operation names, and pattern metadata.

Differential Revision: https://reviews.llvm.org/D121544
2022-03-19 13:28:24 -07:00

18 lines
225 B
CMake

llvm_add_library(MLIRPDLLParser STATIC
CodeComplete.cpp
Lexer.cpp
Parser.cpp
DISABLE_LLVM_LINK_LLVM_DYLIB
LINK_COMPONENTS
Support
TableGen
LINK_LIBS PUBLIC
MLIRPDLLAST
MLIRSupport
MLIRTableGen
)