Christian Sigg 366ddc8948 Add read-only copy of MLIR core to TensorFlow.
PiperOrigin-RevId: 260575790
2019-07-29 15:24:30 -07:00

10 lines
268 B
CMake

file(GLOB globbed *.c *.cpp)
add_llvm_library(MLIRStandardOps
${globbed}
ADDITIONAL_HEADER_DIRS
${MLIR_MAIN_INCLUDE_DIR}/mlir/StandardOps
)
add_dependencies(MLIRStandardOps MLIRStandardOpsIncGen LLVMSupport)
target_link_libraries(MLIRStandardOps LLVMSupport)