summaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/InstrumentationRuntime
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2017-01-31 22:21:19 +0000
committerChris Bieneman <beanz@apple.com>2017-01-31 22:21:19 +0000
commit420ff1da592e09acbeed56dd323820cfd4ba8e9a (patch)
treee0491833d239bedc18cee4d70f4baee79c1ff3a5 /lldb/source/Plugins/InstrumentationRuntime
parent3cd7dfbbeaa352ebc56349cc38fb5bad1b16ac07 (diff)
[CMake] [1/4] Update a batch of plugins
This is extending the updates from r293696 to more LLDB plugins.
Diffstat (limited to 'lldb/source/Plugins/InstrumentationRuntime')
-rw-r--r--lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/CMakeLists.txt12
-rw-r--r--lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/CMakeLists.txt11
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
)