circt/tools/firtool/CMakeLists.txt

38 lines
596 B
CMake

set(LLVM_LINK_COMPONENTS
Support
)
add_circt_tool(firtool
firtool.cpp
DEPENDS
SUPPORT_PLUGINS
)
llvm_update_compile_flags(firtool)
target_link_libraries(firtool PRIVATE
CIRCTExportVerilog
CIRCTImportFIRFile
CIRCTFIRRTLTransforms
CIRCTHWTransforms
CIRCTOMTransforms
CIRCTVerifTransforms
CIRCTVerif
CIRCTSeq
CIRCTSim
CIRCTSVTransforms
CIRCTTransforms
CIRCTFirtool
CIRCTTargetDebugInfo
MLIRBytecodeReader
MLIRBytecodeWriter
MLIRParser
MLIRSupport
MLIRIR
MLIROptLib
MLIRFuncDialect
MLIRTransforms
)
export_executable_symbols_for_plugins(firtool)