blob: 995e74442905b53b47a4fe32c682730fe4fd6bd3 (
plain)
1
2
3
4
5
6
7
8
9
|
file(GLOB globbed *.c *.cpp)
add_llvm_library(MLIRLoopOps
${globbed}
ADDITIONAL_HEADER_DIRS
${MLIR_MAIN_INCLUDE_DIR}/mlir/LoopOps
)
add_dependencies(MLIRLoopOps MLIRLoopLikeInterfaceIncGen MLIRLoopOpsIncGen MLIRStandardOps LLVMSupport)
target_link_libraries(MLIRLoopOps LLVMSupport)
|