summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/CMakeLists.txt
blob: bcf324023c221520ba73ac7d88ca95a13909b294 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
add_lldb_library(lldbPluginAppleObjCRuntime PLUGIN
  AppleObjCRuntime.cpp
  AppleObjCRuntimeV1.cpp
  AppleObjCRuntimeV2.cpp
  AppleObjCTrampolineHandler.cpp
  AppleObjCDeclVendor.cpp
  AppleThreadPlanStepThroughObjCTrampoline.cpp
  AppleObjCClassDescriptorV2.cpp
  AppleObjCTypeEncodingParser.cpp

  LINK_LIBS
    lldbBreakpoint
    lldbCore
    lldbExpression
    lldbHost
    lldbInterpreter
    lldbSymbol
    lldbTarget
    lldbUtility
    lldbPluginExpressionParserClang
    lldbPluginCPPRuntime
  CLANG_LIBS
    clangAST
  LINK_COMPONENTS
    Support
  )