22 lines · plain
1lldb_tablegen(SymbolLocatorDebuginfodProperties.inc -gen-lldb-property-defs2 SOURCE SymbolLocatorDebuginfodProperties.td3 TARGET LLDBPluginSymbolLocatorDebuginfodPropertiesGen)4 5lldb_tablegen(SymbolLocatorDebuginfodPropertiesEnum.inc -gen-lldb-property-enum-defs6 SOURCE SymbolLocatorDebuginfodProperties.td7 TARGET LLDBPluginSymbolLocatorDebuginfodPropertiesEnumGen)8 9add_lldb_library(lldbPluginSymbolLocatorDebuginfod PLUGIN10 SymbolLocatorDebuginfod.cpp11 12 LINK_LIBS13 lldbCore14 lldbHost15 lldbSymbol16 LLVMDebuginfod17 )18 19add_dependencies(lldbPluginSymbolLocatorDebuginfod20 LLDBPluginSymbolLocatorDebuginfodPropertiesGen21 LLDBPluginSymbolLocatorDebuginfodPropertiesEnumGen)22