1lldb_tablegen(TargetProperties.inc -gen-lldb-property-defs
2  SOURCE TargetProperties.td
3  TARGET LLDBTargetPropertiesGen)
4
5lldb_tablegen(TargetPropertiesEnum.inc -gen-lldb-property-enum-defs
6  SOURCE TargetProperties.td
7  TARGET LLDBTargetPropertiesEnumGen)
8
9add_lldb_library(lldbTarget
10  ABI.cpp
11  AssertFrameRecognizer.cpp
12  DynamicRegisterInfo.cpp
13  ExecutionContext.cpp
14  InstrumentationRuntime.cpp
15  InstrumentationRuntimeStopInfo.cpp
16  JITLoader.cpp
17  JITLoaderList.cpp
18  Language.cpp
19  LanguageRuntime.cpp
20  Memory.cpp
21  MemoryHistory.cpp
22  MemoryRegionInfo.cpp
23  MemoryTagMap.cpp
24  ModuleCache.cpp
25  OperatingSystem.cpp
26  PathMappingList.cpp
27  Platform.cpp
28  Process.cpp
29  ProcessTrace.cpp
30  Queue.cpp
31  QueueItem.cpp
32  QueueList.cpp
33  RegisterContext.cpp
34  RegisterContextUnwind.cpp
35  RegisterNumber.cpp
36  RemoteAwarePlatform.cpp
37  SectionLoadHistory.cpp
38  SectionLoadList.cpp
39  StackFrame.cpp
40  StackFrameList.cpp
41  StackFrameRecognizer.cpp
42  StackID.cpp
43  Statistics.cpp
44  StopInfo.cpp
45  StructuredDataPlugin.cpp
46  SystemRuntime.cpp
47  Target.cpp
48  TargetList.cpp
49  Thread.cpp
50  ThreadCollection.cpp
51  ThreadList.cpp
52  ThreadPlan.cpp
53  ThreadPlanBase.cpp
54  ThreadPlanCallFunction.cpp
55  ThreadPlanCallFunctionUsingABI.cpp
56  ThreadPlanCallOnFunctionExit.cpp
57  ThreadPlanCallUserExpression.cpp
58  ThreadPlanPython.cpp
59  ThreadPlanRunToAddress.cpp
60  ThreadPlanShouldStopHere.cpp
61  ThreadPlanStepInRange.cpp
62  ThreadPlanStepInstruction.cpp
63  ThreadPlanStepOut.cpp
64  ThreadPlanStepOverBreakpoint.cpp
65  ThreadPlanStepOverRange.cpp
66  ThreadPlanStepRange.cpp
67  ThreadPlanStepThrough.cpp
68  ThreadPlanStepUntil.cpp
69  ThreadPlanTracer.cpp
70  ThreadPlanStack.cpp
71  ThreadSpec.cpp
72  Trace.cpp
73  TraceCursor.cpp
74  TraceExporter.cpp
75  TraceDumper.cpp
76  UnixSignals.cpp
77  UnwindAssembly.cpp
78  UnwindLLDB.cpp
79
80  LINK_LIBS
81    lldbBreakpoint
82    lldbCore
83    lldbExpression
84    lldbHost
85    lldbInterpreter
86    lldbSymbol
87    lldbUtility
88    lldbPluginProcessUtility
89
90  LINK_COMPONENTS
91    Support
92    MC
93  )
94
95add_dependencies(lldbTarget
96  LLDBTargetPropertiesGen
97  LLDBTargetPropertiesEnumGen)
98