diff options
author | Chris Bieneman <beanz@apple.com> | 2017-01-31 22:29:11 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2017-01-31 22:29:11 +0000 |
commit | 81b8f12b420e3fa88675bc2492837416fdbdb498 (patch) | |
tree | 765d728095c5438e3c89ee36d0ad43f2053af6ce /lldb/source/Plugins/Process/gdb-remote | |
parent | 66a2d639abf2ddf670877387991db6e75386c05f (diff) | |
download | bcm5719-llvm-81b8f12b420e3fa88675bc2492837416fdbdb498.tar.gz bcm5719-llvm-81b8f12b420e3fa88675bc2492837416fdbdb498.zip |
[CMake] [3/4] Update a batch of plugins
This is extending the updates from r293696 to more LLDB plugins.
llvm-svn: 293700
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt b/lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt index b2852272586..fecbb8f910e 100644 --- a/lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt +++ b/lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt @@ -2,7 +2,7 @@ if (CMAKE_SYSTEM_NAME MATCHES "Darwin") include_directories(${LIBXML2_INCLUDE_DIR}) endif() -add_lldb_library(lldbPluginProcessGDBRemote +add_lldb_library(lldbPluginProcessGDBRemote PLUGIN GDBRemoteClientBase.cpp GDBRemoteCommunication.cpp GDBRemoteCommunicationClient.cpp @@ -14,4 +14,18 @@ add_lldb_library(lldbPluginProcessGDBRemote ProcessGDBRemote.cpp ProcessGDBRemoteLog.cpp ThreadGDBRemote.cpp + + LINK_LIBS + lldbBreakpoint + lldbCore + lldbDataFormatters + lldbHost + lldbInterpreter + lldbSymbol + lldbTarget + lldbUtility + lldbPluginProcessUtility + lldbPluginPlatformMacOSX + LINK_COMPONENTS + Support ) |