brintos

brintos / llvm-project-archived public Read only

0
0
Text · 796 B · a22a833 Raw
26 lines · plain
1lldb_tablegen(DynamicLoaderDarwinKernelProperties.inc -gen-lldb-property-defs2  SOURCE DynamicLoaderDarwinKernelProperties.td3  TARGET LLDBPluginDynamicLoaderDarwinKernelPropertiesGen)4 5lldb_tablegen(DynamicLoaderDarwinKernelPropertiesEnum.inc -gen-lldb-property-enum-defs6  SOURCE DynamicLoaderDarwinKernelProperties.td7  TARGET LLDBPluginDynamicLoaderDarwinKernelPropertiesEnumGen)8 9add_lldb_library(lldbPluginDynamicLoaderDarwinKernel PLUGIN10  DynamicLoaderDarwinKernel.cpp11 12  LINK_LIBS13    lldbBreakpoint14    lldbCore15    lldbHost16    lldbInterpreter17    lldbSymbol18    lldbTarget19    lldbUtility20    lldbPluginObjectFileMachO21  )22 23add_dependencies(lldbPluginDynamicLoaderDarwinKernel24  LLDBPluginDynamicLoaderDarwinKernelPropertiesGen25  LLDBPluginDynamicLoaderDarwinKernelPropertiesEnumGen)26