[LoongArch][Clang] Make the parameters and return value of {x,}vorn.v builti ns ...
[llvm-project.git] / lldb / source / Plugins / SymbolFile / DWARF / CMakeLists.txt
blobe87194dfe74cb3891a511beed8cb0fcae631cbbf
1 lldb_tablegen(SymbolFileDWARFProperties.inc -gen-lldb-property-defs
2   SOURCE SymbolFileDWARFProperties.td
3   TARGET LLDBPluginSymbolFileDWARFPropertiesGen)
5 lldb_tablegen(SymbolFileDWARFPropertiesEnum.inc -gen-lldb-property-enum-defs
6   SOURCE SymbolFileDWARFProperties.td
7   TARGET LLDBPluginSymbolFileDWARFPropertiesEnumGen)
9 add_lldb_library(lldbPluginSymbolFileDWARF PLUGIN
10   AppleDWARFIndex.cpp
11   DebugNamesDWARFIndex.cpp
12   DIERef.cpp
13   DWARFASTParser.cpp
14   DWARFASTParserClang.cpp
15   DWARFAttribute.cpp
16   DWARFBaseDIE.cpp
17   DWARFCompileUnit.cpp
18   DWARFContext.cpp
19   DWARFDataExtractor.cpp
20   DWARFDebugAranges.cpp
21   DWARFDebugInfo.cpp
22   DWARFDebugInfoEntry.cpp
23   DWARFDebugMacro.cpp
24   DWARFDeclContext.cpp
25   DWARFDefines.cpp
26   DWARFDIE.cpp
27   DWARFFormValue.cpp
28   DWARFIndex.cpp
29   DWARFTypeUnit.cpp
30   DWARFUnit.cpp
31   LogChannelDWARF.cpp
32   ManualDWARFIndex.cpp
33   NameToDIE.cpp
34   SymbolFileDWARF.cpp
35   SymbolFileDWARFDwo.cpp
36   SymbolFileDWARFDebugMap.cpp
37   UniqueDWARFASTType.cpp
39   LINK_LIBS
40     lldbCore
41     lldbExpression
42     lldbHost
43     lldbInterpreter
44     lldbSymbol
45     lldbTarget
46     lldbUtility
47     lldbValueObject
48     lldbPluginObjCLanguage
49     lldbPluginCPlusPlusLanguage
50     lldbPluginExpressionParserClang
51     lldbPluginTypeSystemClang
52   CLANG_LIBS
53     clangAST
54     clangBasic
55   LINK_COMPONENTS
56     DebugInfoDWARF
57     Support
58   )
60 add_dependencies(lldbPluginSymbolFileDWARF
61   LLDBPluginSymbolFileDWARFPropertiesGen
62   LLDBPluginSymbolFileDWARFPropertiesEnumGen)