xref: /openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/MIPS/CMakeLists.txt (revision 061da546b983eb767bad15e67af1174fb0bcf31c)
1*061da546Spatrickif(Mips IN_LIST LLVM_TARGETS_TO_BUILD)
2*061da546Spatrick  set(mips_target Mips)
3*061da546Spatrickendif()
4*061da546Spatrick
5*061da546Spatrickadd_lldb_library(lldbPluginInstructionMIPS PLUGIN
6*061da546Spatrick  EmulateInstructionMIPS.cpp
7*061da546Spatrick
8*061da546Spatrick  LINK_LIBS
9*061da546Spatrick    lldbCore
10*061da546Spatrick    lldbSymbol
11*061da546Spatrick    lldbTarget
12*061da546Spatrick    lldbPluginProcessUtility
13*061da546Spatrick  LINK_COMPONENTS
14*061da546Spatrick    MC
15*061da546Spatrick    Support
16*061da546Spatrick    ${mips_target}
17*061da546Spatrick  )
18