• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1add_lldb_library(lldbPluginAppleObjCRuntime PLUGIN
2  AppleObjCRuntime.cpp
3  AppleObjCRuntimeV1.cpp
4  AppleObjCRuntimeV2.cpp
5  AppleObjCTrampolineHandler.cpp
6  AppleObjCDeclVendor.cpp
7  AppleThreadPlanStepThroughObjCTrampoline.cpp
8  AppleObjCClassDescriptorV2.cpp
9  AppleObjCTypeEncodingParser.cpp
10
11  LINK_LIBS
12    lldbBreakpoint
13    lldbCore
14    lldbExpression
15    lldbHost
16    lldbInterpreter
17    lldbSymbol
18    lldbTarget
19    lldbUtility
20    lldbPluginExpressionParserClang
21    lldbPluginCPPRuntime
22    lldbPluginTypeSystemClang
23  CLANG_LIBS
24    clangAST
25  LINK_COMPONENTS
26    Support
27  )
28