1lldb_tablegen(JITLoaderGDBProperties.inc -gen-lldb-property-defs 2 SOURCE JITLoaderGDBProperties.td 3 TARGET LLDBPluginJITLoaderGDBPropertiesGen) 4 5lldb_tablegen(JITLoaderGDBPropertiesEnum.inc -gen-lldb-property-enum-defs 6 SOURCE JITLoaderGDBProperties.td 7 TARGET LLDBPluginJITLoaderGDBPropertiesEnumGen) 8 9add_lldb_library(lldbPluginJITLoaderGDB PLUGIN 10 JITLoaderGDB.cpp 11 12 LINK_LIBS 13 lldbBreakpoint 14 lldbCore 15 lldbInterpreter 16 lldbSymbol 17 lldbTarget 18 lldbUtility 19 lldbPluginObjectFileMachO 20 LINK_COMPONENTS 21 Support 22 ) 23 24add_dependencies(lldbPluginJITLoaderGDB 25 LLDBPluginJITLoaderGDBPropertiesGen 26 LLDBPluginJITLoaderGDBPropertiesEnumGen) 27