• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1lldb_tablegen(StructuredDataDarwinLogProperties.inc -gen-lldb-property-defs
2  SOURCE StructuredDataDarwinLogProperties.td
3  TARGET LLDBPluginStructuredDataDarwinLogPropertiesGen)
4
5lldb_tablegen(StructuredDataDarwinLogPropertiesEnum.inc -gen-lldb-property-enum-defs
6  SOURCE StructuredDataDarwinLogProperties.td
7  TARGET LLDBPluginStructuredDataDarwinLogPropertiesEnumGen)
8
9add_lldb_library(lldbPluginStructuredDataDarwinLog PLUGIN
10  StructuredDataDarwinLog.cpp
11
12  LINK_LIBS
13    lldbBreakpoint
14    lldbCore
15    lldbHost
16    lldbInterpreter
17    lldbTarget
18  )
19
20add_dependencies(lldbPluginStructuredDataDarwinLog
21  LLDBPluginStructuredDataDarwinLogPropertiesGen
22  LLDBPluginStructuredDataDarwinLogPropertiesEnumGen)
23