brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.3 KiB · cff5904 Raw
105 lines · plain
1lldb_tablegen(TargetProperties.inc -gen-lldb-property-defs2  SOURCE TargetProperties.td3  TARGET LLDBTargetPropertiesGen)4 5lldb_tablegen(TargetPropertiesEnum.inc -gen-lldb-property-enum-defs6  SOURCE TargetProperties.td7  TARGET LLDBTargetPropertiesEnumGen)8 9# TODO: Add property `NO_PLUGIN_DEPENDENCIES` to lldbTarget10add_lldb_library(lldbTarget11  ABI.cpp12  AssertFrameRecognizer.cpp13  DynamicRegisterInfo.cpp14  CoreFileMemoryRanges.cpp15  ExecutionContext.cpp16  InstrumentationRuntime.cpp17  InstrumentationRuntimeStopInfo.cpp18  JITLoader.cpp19  JITLoaderList.cpp20  Language.cpp21  LanguageRuntime.cpp22  Memory.cpp23  MemoryHistory.cpp24  MemoryRegionInfo.cpp25  MemoryTagMap.cpp26  ModuleCache.cpp27  OperatingSystem.cpp28  PathMappingList.cpp29  Platform.cpp30  Process.cpp31  ProcessTrace.cpp32  Queue.cpp33  QueueItem.cpp34  QueueList.cpp35  RegisterContext.cpp36  RegisterContextUnwind.cpp37  RegisterFlags.cpp38  RegisterNumber.cpp39  RemoteAwarePlatform.cpp40  ScriptedThreadPlan.cpp41  SyntheticFrameProvider.cpp42  SectionLoadHistory.cpp43  SectionLoadList.cpp44  StackFrame.cpp45  StackFrameList.cpp46  StackFrameRecognizer.cpp47  StackID.cpp48  Statistics.cpp49  StopInfo.cpp50  StructuredDataPlugin.cpp51  SystemRuntime.cpp52  Target.cpp53  TargetList.cpp54  Thread.cpp55  ThreadCollection.cpp56  ThreadList.cpp57  ThreadPlan.cpp58  ThreadPlanBase.cpp59  ThreadPlanCallFunction.cpp60  ThreadPlanCallFunctionUsingABI.cpp61  ThreadPlanCallOnFunctionExit.cpp62  ThreadPlanCallUserExpression.cpp63  ThreadPlanRunToAddress.cpp64  ThreadPlanSingleThreadTimeout.cpp65  ThreadPlanShouldStopHere.cpp66  ThreadPlanStepInRange.cpp67  ThreadPlanStepInstruction.cpp68  ThreadPlanStepOut.cpp69  ThreadPlanStepOverBreakpoint.cpp70  ThreadPlanStepOverRange.cpp71  ThreadPlanStepRange.cpp72  ThreadPlanStepThrough.cpp73  ThreadPlanStepUntil.cpp74  ThreadPlanTracer.cpp75  ThreadPlanStack.cpp76  ThreadSpec.cpp77  Trace.cpp78  TraceCursor.cpp79  TraceExporter.cpp80  TraceDumper.cpp81  UnixSignals.cpp82  UnwindAssembly.cpp83  UnwindLLDB.cpp84 85  ADDITIONAL_HEADER_DIRS86    ${LLDB_INCLUDE_DIR}/lldb/Target87  LINK_COMPONENTS88    Support89    MC90  LINK_LIBS91    lldbBreakpoint92    lldbCore93    lldbExpression94    lldbHost95    lldbInterpreter96    lldbSymbol97    lldbUtility98    lldbValueObject99    lldbPluginProcessUtility100  )101 102add_dependencies(lldbTarget103  LLDBTargetPropertiesGen104  LLDBTargetPropertiesEnumGen)105