1# Exclude tests from libMLIR.so 2add_mlir_library(MLIRAffineTransformsTestPasses 3 TestAffineDataCopy.cpp 4 TestAffineLoopUnswitching.cpp 5 TestLoopPermutation.cpp 6 TestVectorizationUtils.cpp 7 8 EXCLUDE_FROM_LIBMLIR 9 10 ADDITIONAL_HEADER_DIRS 11 ${MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/Affine 12 ${MLIR_MAIN_INCLUDE_DIR}/mlir/IR 13 14 LINK_COMPONENTS 15 Core 16 17 LINK_LIBS PUBLIC 18 MLIRIR 19 MLIRPass 20 MLIRAffineTransforms 21 MLIRSupport 22 MLIRAffineUtils 23 ) 24