llvm-project/flang/tools/fir-opt/CMakeLists.txt

28 lines
535 B
CMake

add_flang_tool(fir-opt fir-opt.cpp)
llvm_update_compile_flags(fir-opt)
get_property(dialect_libs GLOBAL PROPERTY MLIR_DIALECT_LIBS)
target_link_libraries(fir-opt PRIVATE
FIRDialect
FIRSupport
FIRTransforms
FIRCodeGen
${dialect_libs}
# TODO: these should be transitive dependencies from a target providing
# "registerFIRPasses()"
MLIRIR
MLIRLLVMIR
MLIRPass
MLIRFuncToLLVM
MLIRTransforms
MLIRAffineToStandard
MLIRAnalysis
MLIRSCFToControlFlow
MLIRParser
MLIRSupport
MLIRVectorToLLVM
MLIROptLib
)