27 lines · plain
1lldb_tablegen(JITLoaderGDBProperties.inc -gen-lldb-property-defs2 SOURCE JITLoaderGDBProperties.td3 TARGET LLDBPluginJITLoaderGDBPropertiesGen)4 5lldb_tablegen(JITLoaderGDBPropertiesEnum.inc -gen-lldb-property-enum-defs6 SOURCE JITLoaderGDBProperties.td7 TARGET LLDBPluginJITLoaderGDBPropertiesEnumGen)8 9add_lldb_library(lldbPluginJITLoaderGDB PLUGIN10 JITLoaderGDB.cpp11 12 LINK_COMPONENTS13 Support14 LINK_LIBS15 lldbBreakpoint16 lldbCore17 lldbInterpreter18 lldbSymbol19 lldbTarget20 lldbUtility21 lldbPluginObjectFileMachO22 )23 24add_dependencies(lldbPluginJITLoaderGDB25 LLDBPluginJITLoaderGDBPropertiesGen26 LLDBPluginJITLoaderGDBPropertiesEnumGen)27