diff options
author | Chris Bieneman <beanz@apple.com> | 2017-01-31 22:31:38 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2017-01-31 22:31:38 +0000 |
commit | 3173c964dafbec7eae598a0aafc7c3f425d24032 (patch) | |
tree | 66c1513c3d1cf17d7078355ebb7ae5c6ee101e0f /lldb/source/Plugins/UnwindAssembly | |
parent | 81b8f12b420e3fa88675bc2492837416fdbdb498 (diff) | |
download | bcm5719-llvm-3173c964dafbec7eae598a0aafc7c3f425d24032.tar.gz bcm5719-llvm-3173c964dafbec7eae598a0aafc7c3f425d24032.zip |
[CMake] [4/4] Update a batch of plugins
This is extending the updates from r293696 to more LLDB plugins.
llvm-svn: 293701
Diffstat (limited to 'lldb/source/Plugins/UnwindAssembly')
-rw-r--r-- | lldb/source/Plugins/UnwindAssembly/InstEmulation/CMakeLists.txt | 7 | ||||
-rw-r--r-- | lldb/source/Plugins/UnwindAssembly/x86/CMakeLists.txt | 10 |
2 files changed, 15 insertions, 2 deletions
diff --git a/lldb/source/Plugins/UnwindAssembly/InstEmulation/CMakeLists.txt b/lldb/source/Plugins/UnwindAssembly/InstEmulation/CMakeLists.txt index 21673160bf4..7b7fd721f85 100644 --- a/lldb/source/Plugins/UnwindAssembly/InstEmulation/CMakeLists.txt +++ b/lldb/source/Plugins/UnwindAssembly/InstEmulation/CMakeLists.txt @@ -1,3 +1,8 @@ -add_lldb_library(lldbPluginUnwindAssemblyInstEmulation +add_lldb_library(lldbPluginUnwindAssemblyInstEmulation PLUGIN UnwindAssemblyInstEmulation.cpp + + LINK_LIBS + lldbCore + lldbSymbol + lldbTarget ) diff --git a/lldb/source/Plugins/UnwindAssembly/x86/CMakeLists.txt b/lldb/source/Plugins/UnwindAssembly/x86/CMakeLists.txt index 024b0dab2e2..8b05c544454 100644 --- a/lldb/source/Plugins/UnwindAssembly/x86/CMakeLists.txt +++ b/lldb/source/Plugins/UnwindAssembly/x86/CMakeLists.txt @@ -1,4 +1,12 @@ -add_lldb_library(lldbPluginUnwindAssemblyX86 +add_lldb_library(lldbPluginUnwindAssemblyX86 PLUGIN UnwindAssembly-x86.cpp x86AssemblyInspectionEngine.cpp + + LINK_LIBS + lldbCore + lldbSymbol + lldbTarget + lldbUtility + LINK_COMPONENTS + Support ) |