Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / source / Plugins / JITLoader / GDB / CMakeLists.txt
blobecdff2823d47a32913a54e963affe50ef32f354d
1 lldb_tablegen(JITLoaderGDBProperties.inc -gen-lldb-property-defs
2   SOURCE JITLoaderGDBProperties.td
3   TARGET LLDBPluginJITLoaderGDBPropertiesGen)
5 lldb_tablegen(JITLoaderGDBPropertiesEnum.inc -gen-lldb-property-enum-defs
6   SOURCE JITLoaderGDBProperties.td
7   TARGET LLDBPluginJITLoaderGDBPropertiesEnumGen)
9 add_lldb_library(lldbPluginJITLoaderGDB PLUGIN
10   JITLoaderGDB.cpp
12   LINK_LIBS
13     lldbBreakpoint
14     lldbCore
15     lldbInterpreter
16     lldbSymbol
17     lldbTarget
18     lldbUtility
19     lldbPluginObjectFileMachO
20   LINK_COMPONENTS
21     Support
22   )
24 add_dependencies(lldbPluginJITLoaderGDB
25   LLDBPluginJITLoaderGDBPropertiesGen
26   LLDBPluginJITLoaderGDBPropertiesEnumGen)