diff options
| author | Chris Bieneman <beanz@apple.com> | 2017-01-31 22:21:19 +0000 |
|---|---|---|
| committer | Chris Bieneman <beanz@apple.com> | 2017-01-31 22:21:19 +0000 |
| commit | 6847a3aba1a92daffcbc29c468cdbf840029126a (patch) | |
| tree | 3e8c84374c849a9fce71660c26c582bb79f1ab9f /lldb/source/Plugins/InstrumentationRuntime | |
| parent | 0012dd5db11223d4796bf6c9aef9f39aa3ce8445 (diff) | |
| download | bcm5719-llvm-6847a3aba1a92daffcbc29c468cdbf840029126a.tar.gz bcm5719-llvm-6847a3aba1a92daffcbc29c468cdbf840029126a.zip | |
[CMake] [1/4] Update a batch of plugins
This is extending the updates from r293696 to more LLDB plugins.
llvm-svn: 293698
Diffstat (limited to 'lldb/source/Plugins/InstrumentationRuntime')
| -rw-r--r-- | lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/CMakeLists.txt | 12 | ||||
| -rw-r--r-- | lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/CMakeLists.txt | 11 |
2 files changed, 21 insertions, 2 deletions
diff --git a/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/CMakeLists.txt b/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/CMakeLists.txt index 77e7d15caa7..1adfc6ba532 100644 --- a/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/CMakeLists.txt +++ b/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/CMakeLists.txt @@ -1,3 +1,13 @@ -add_lldb_library(lldbPluginInstrumentationRuntimeAddressSanitizer +add_lldb_library(lldbPluginInstrumentationRuntimeAddressSanitizer PLUGIN AddressSanitizerRuntime.cpp + + LINK_LIBS + lldbBreakpoint + lldbCore + lldbExpression + lldbInterpreter + lldbSymbol + lldbTarget + LINK_COMPONENTS + Support ) diff --git a/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/CMakeLists.txt b/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/CMakeLists.txt index 6ef79433d67..db7c4a2518a 100644 --- a/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/CMakeLists.txt +++ b/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/CMakeLists.txt @@ -1,3 +1,12 @@ -add_lldb_library(lldbPluginInstrumentationRuntimeThreadSanitizer +add_lldb_library(lldbPluginInstrumentationRuntimeThreadSanitizer PLUGIN ThreadSanitizerRuntime.cpp + + LINK_LIBS + lldbBreakpoint + lldbCore + lldbExpression + lldbInterpreter + lldbSymbol + lldbTarget + lldbPluginProcessUtility ) |

