Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / source / Plugins / Platform / Android / CMakeLists.txt
blob518041b6cb316cb5b50c70ac36a31c88c1232d4f
1 lldb_tablegen(PlatformAndroidProperties.inc -gen-lldb-property-defs
2   SOURCE PlatformAndroidProperties.td
3   TARGET LLDBPluginPlatformAndroidPropertiesGen)
5 lldb_tablegen(PlatformAndroidPropertiesEnum.inc -gen-lldb-property-enum-defs
6   SOURCE PlatformAndroidProperties.td
7   TARGET LLDBPluginPlatformAndroidPropertiesEnumGen)
9 add_lldb_library(lldbPluginPlatformAndroid PLUGIN
10   AdbClient.cpp
11   PlatformAndroid.cpp
12   PlatformAndroidRemoteGDBServer.cpp
14   LINK_LIBS
15     lldbCore
16     lldbHost
17     lldbPluginPlatformLinux
18     lldbPluginPlatformGDB
19   LINK_COMPONENTS
20     Support
21   )
23 add_dependencies(lldbPluginPlatformAndroid
24   LLDBPluginPlatformAndroidPropertiesGen
25   LLDBPluginPlatformAndroidPropertiesEnumGen)