summaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/SymbolVendor
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2017-01-31 22:31:38 +0000
committerChris Bieneman <beanz@apple.com>2017-01-31 22:31:38 +0000
commit7859b44dee121c46d6db1c52b534f417843e9638 (patch)
treead6910266d85706d79aa31ffce0b4f858ffa6287 /lldb/source/Plugins/SymbolVendor
parent3fcaa367806a8782559b9389506205024d71bba0 (diff)
[CMake] [4/4] Update a batch of plugins
This is extending the updates from r293696 to more LLDB plugins.
Diffstat (limited to 'lldb/source/Plugins/SymbolVendor')
-rw-r--r--lldb/source/Plugins/SymbolVendor/ELF/CMakeLists.txt7
-rw-r--r--lldb/source/Plugins/SymbolVendor/MacOSX/CMakeLists.txt7
2 files changed, 12 insertions, 2 deletions
diff --git a/lldb/source/Plugins/SymbolVendor/ELF/CMakeLists.txt b/lldb/source/Plugins/SymbolVendor/ELF/CMakeLists.txt
index cffc2ef7459..e742fac9312 100644
--- a/lldb/source/Plugins/SymbolVendor/ELF/CMakeLists.txt
+++ b/lldb/source/Plugins/SymbolVendor/ELF/CMakeLists.txt
@@ -1,3 +1,8 @@
-add_lldb_library(lldbPluginSymbolVendorELF
+add_lldb_library(lldbPluginSymbolVendorELF PLUGIN
SymbolVendorELF.cpp
+
+ LINK_LIBS
+ lldbCore
+ lldbHost
+ lldbSymbol
)
diff --git a/lldb/source/Plugins/SymbolVendor/MacOSX/CMakeLists.txt b/lldb/source/Plugins/SymbolVendor/MacOSX/CMakeLists.txt
index 093766ac07d..bbcdff9705a 100644
--- a/lldb/source/Plugins/SymbolVendor/MacOSX/CMakeLists.txt
+++ b/lldb/source/Plugins/SymbolVendor/MacOSX/CMakeLists.txt
@@ -1,5 +1,10 @@
include_directories(${LIBXML2_INCLUDE_DIR})
-add_lldb_library(lldbPluginSymbolVendorMacOSX
+add_lldb_library(lldbPluginSymbolVendorMacOSX PLUGIN
SymbolVendorMacOSX.cpp
+
+ LINK_LIBS
+ lldbCore
+ lldbHost
+ lldbSymbol
)