31 lines · plain
1lldb_tablegen(SymbolFilePDBProperties.inc -gen-lldb-property-defs2 SOURCE SymbolFilePDBProperties.td3 TARGET LLDBPluginSymbolFilePDBPropertiesGen)4 5lldb_tablegen(SymbolFilePDBPropertiesEnum.inc -gen-lldb-property-enum-defs6 SOURCE SymbolFilePDBProperties.td7 TARGET LLDBPluginSymbolFilePDBPropertiesEnumGen)8 9add_lldb_library(lldbPluginSymbolFilePDB PLUGIN10 PDBASTParser.cpp11 PDBLocationToDWARFExpression.cpp12 SymbolFilePDB.cpp13 14 LINK_COMPONENTS15 DebugInfoPDB16 Support17 LINK_LIBS18 lldbCore19 lldbPluginSymbolFileNativePDB20 lldbSymbol21 lldbUtility22 lldbPluginTypeSystemClang23 CLANG_LIBS24 clangAST25 clangLex26 )27 28add_dependencies(lldbPluginSymbolFilePDB29 LLDBPluginSymbolFilePDBPropertiesGen30 LLDBPluginSymbolFilePDBPropertiesEnumGen)31