This information isn't useful for general compilation, but is useful for building tools that process .mlir files. This class will be used in a followup to start building an LSP language server for MLIR. Differential Revision: https://reviews.llvm.org/D100438
18 lines
289 B
CMake
18 lines
289 B
CMake
add_mlir_library(MLIRParser
|
|
AffineParser.cpp
|
|
AsmParserState.cpp
|
|
AttributeParser.cpp
|
|
DialectSymbolParser.cpp
|
|
Lexer.cpp
|
|
LocationParser.cpp
|
|
Parser.cpp
|
|
Token.cpp
|
|
TypeParser.cpp
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${MLIR_MAIN_INCLUDE_DIR}/mlir/Parser
|
|
|
|
LINK_LIBS PUBLIC
|
|
MLIRIR
|
|
)
|