Files
clang-p2996/mlir/lib/Conversion/ArithmeticToSPIRV/CMakeLists.txt
River Riddle 3ba66435d9 [mlir][SPIRV] Split up StandardToSPIRV now that the Standard dialect is gone
StandardToSPIRV currently contains an assortment of patterns converting from
different dialects to SPIRV. This commit splits up StandardToSPIRV into separate
conversions for each of the dialects involved (some of which already exist).

Differential Revision: https://reviews.llvm.org/D120767
2022-03-02 13:14:36 -08:00

19 lines
318 B
CMake

add_mlir_conversion_library(MLIRArithmeticToSPIRV
ArithmeticToSPIRV.cpp
ADDITIONAL_HEADER_DIRS
${MLIR_MAIN_INCLUDE_DIR}/mlir/Conversion/ArithmeticToSPIRV
DEPENDS
MLIRConversionPassIncGen
LINK_COMPONENTS
Core
LINK_LIBS PUBLIC
MLIRArithmetic
MLIRFuncToSPIRV
MLIRSPIRVConversion
MLIRSPIRV
)