blob: 2aaec68f6c477b908b889fd5539586fe9212d5fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
add_llvm_library(MLIRVectorToLLVM
ConvertVectorToLLVM.cpp
ADDITIONAL_HEADER_DIRS
${MLIR_MAIN_INCLUDE_DIR}/mlir/Conversion/VectorToLLVM
)
set(LIBS
MLIRLLVMIR
MLIRTransforms
LLVMCore
LLVMSupport
)
add_dependencies(MLIRVectorToLLVM ${LIBS})
target_link_libraries(MLIRVectorToLLVM ${LIBS})
|