xref: /llvm-project/lldb/source/Plugins/Instruction/MIPS64/CMakeLists.txt (revision a14fbe0cf35ce65e653a2fb8d493f314fe420c4f)
1if(Mips IN_LIST LLVM_TARGETS_TO_BUILD)
2  set(mips_target Mips)
3endif()
4
5add_lldb_library(lldbPluginInstructionMIPS64 PLUGIN
6  EmulateInstructionMIPS64.cpp
7
8  LINK_LIBS
9    lldbCore
10    lldbHost
11    lldbInterpreter
12    lldbSymbol
13    lldbPluginProcessUtility
14  LINK_COMPONENTS
15    MC
16    Support
17    ${mips_target}
18  )
19