[AMDGPU] Mark AGPR tuple implicit in the first instr of AGPR spills. (#115285)
[llvm-project.git] / lldb / source / Plugins / ObjectFile / PECOFF / CMakeLists.txt
blob26a764152a78036b91d5bfa078e47ffbaab96279
1 # Dbghelp is used on windows for writing minidump files.
2 if(WIN32)
3   set(DBGHELP_LINK_FILES dbghelp)
4 else()
5   set(DBGHELP_LINK_FILES "")
6 endif()
8 lldb_tablegen(ObjectFilePECOFFProperties.inc -gen-lldb-property-defs
9   SOURCE ObjectFilePECOFFProperties.td
10   TARGET LLDBPluginObjectFilePECOFFPropertiesGen)
12 lldb_tablegen(ObjectFilePECOFFPropertiesEnum.inc -gen-lldb-property-enum-defs
13   SOURCE ObjectFilePECOFFProperties.td
14   TARGET LLDBPluginObjectFilePECOFFPropertiesEnumGen)
16 add_lldb_library(lldbPluginObjectFilePECOFF PLUGIN
17   ObjectFilePECOFF.cpp
18   PECallFrameInfo.cpp
19   WindowsMiniDump.cpp
21   LINK_LIBS
22     lldbCore
23     lldbHost
24     lldbSymbol
25     lldbTarget
26     ${DBGHELP_LINK_FILES}
27   LINK_COMPONENTS
28     BinaryFormat
29     Support
30     TargetParser
31   )
33 add_dependencies(lldbPluginObjectFilePECOFF
34   LLDBPluginObjectFilePECOFFPropertiesGen
35   LLDBPluginObjectFilePECOFFPropertiesEnumGen)