Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / source / Breakpoint / CMakeLists.txt
blob5c2802322ed52c12b6813c6f83282766fca493c4
1 add_lldb_library(lldbBreakpoint NO_PLUGIN_DEPENDENCIES
2   Breakpoint.cpp
3   BreakpointID.cpp
4   BreakpointIDList.cpp
5   BreakpointList.cpp
6   BreakpointLocation.cpp
7   BreakpointLocationCollection.cpp
8   BreakpointLocationList.cpp
9   BreakpointName.cpp
10   BreakpointOptions.cpp
11   BreakpointPrecondition.cpp
12   BreakpointResolver.cpp
13   BreakpointResolverAddress.cpp
14   BreakpointResolverFileLine.cpp
15   BreakpointResolverFileRegex.cpp
16   BreakpointResolverName.cpp
17   BreakpointResolverScripted.cpp
18   BreakpointSite.cpp
19   BreakpointSiteList.cpp
20   Stoppoint.cpp
21   StoppointCallbackContext.cpp
22   StoppointSite.cpp
23   Watchpoint.cpp
24   WatchpointList.cpp
25   WatchpointOptions.cpp
27   LINK_LIBS
28     lldbCore
29     lldbExpression
30     lldbInterpreter
31     lldbSymbol
32     lldbTarget
33     lldbUtility
35   LINK_COMPONENTS
36     Support
37   )