forked from OSchip/llvm-project
16 lines
344 B
CMake
16 lines
344 B
CMake
|
add_llvm_library(MLIRTestTransforms
|
||
|
TestConstantFold.cpp
|
||
|
TestLoopFusion.cpp
|
||
|
TestVectorizationUtils.cpp
|
||
|
|
||
|
ADDITIONAL_HEADER_DIRS
|
||
|
${MLIR_MAIN_INCLUDE_DIR}/mlir/Transforms
|
||
|
)
|
||
|
add_dependencies(MLIRTestTransforms MLIRStandardOpsIncGen)
|
||
|
target_link_libraries(MLIRTestTransforms
|
||
|
MLIRAffineOps
|
||
|
MLIRAnalysis
|
||
|
MLIRPass
|
||
|
MLIRVectorOps
|
||
|
)
|