Files
clang-p2996/mlir/lib/Dialect/SCF/CMakeLists.txt
Geoffrey Martin-Noble d4e889f1f5 Remove Ops suffix from dialect library names
Dialects include more than just ops, so this suffix is outdated. Follows
discussion in
https://llvm.discourse.group/t/rfc-canonical-file-paths-to-dialects/621

Reviewed By: stellaraccident

Differential Revision: https://reviews.llvm.org/D88530
2020-09-30 18:00:44 -07:00

20 lines
299 B
CMake

add_mlir_dialect_library(MLIRSCF
SCF.cpp
EDSC/Builders.cpp
ADDITIONAL_HEADER_DIRS
${MLIR_MAIN_INCLUDE_DIR}/mlir/LoopOps
DEPENDS
MLIRSCFOpsIncGen
LINK_LIBS PUBLIC
MLIREDSC
MLIRIR
MLIRLoopLikeInterface
MLIRSideEffectInterfaces
MLIRStandard
)
add_subdirectory(Transforms)