brintos

brintos / llvm-project-archived public Read only

0
0
Text · 728 B · 7110837 Raw
27 lines · plain
1lldb_tablegen(PlatformAndroidProperties.inc -gen-lldb-property-defs2  SOURCE PlatformAndroidProperties.td3  TARGET LLDBPluginPlatformAndroidPropertiesGen)4 5lldb_tablegen(PlatformAndroidPropertiesEnum.inc -gen-lldb-property-enum-defs6  SOURCE PlatformAndroidProperties.td7  TARGET LLDBPluginPlatformAndroidPropertiesEnumGen)8 9add_lldb_library(lldbPluginPlatformAndroid PLUGIN10  AdbClient.cpp11  PlatformAndroid.cpp12  PlatformAndroidRemoteGDBServer.cpp13 14  LINK_COMPONENTS15    Support16  LINK_LIBS17    lldbCore18    lldbHost19    lldbValueObject20    lldbPluginPlatformLinux21    lldbPluginPlatformGDB22  )23 24add_dependencies(lldbPluginPlatformAndroid25  LLDBPluginPlatformAndroidPropertiesGen26  LLDBPluginPlatformAndroidPropertiesEnumGen)27