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