CMakeLists.txt 328 Bytes
file(GLOB globbed *.c *.cpp)
add_llvm_library(MLIRStandardOps
  ${globbed}

  ADDITIONAL_HEADER_DIRS
  ${MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/StandardOps
  )
add_dependencies(MLIRStandardOps
  MLIRCallOpInterfacesIncGen
  MLIRStandardOpsIncGen
  MLIRIR
  LLVMSupport
  )
target_link_libraries(MLIRStandardOps MLIRIR LLVMSupport)