diff options
author | Kuba Mracek <mracek@apple.com> | 2017-06-16 21:18:28 +0000 |
---|---|---|
committer | Kuba Mracek <mracek@apple.com> | 2017-06-16 21:18:28 +0000 |
commit | 3abb10268def3cc26f2ae3b2a486925b4dc5b79d (patch) | |
tree | 88dbb215161c2d8b42bd94935a94114123ab2fa9 | |
parent | 31b825d834b5266674cdd37810bbb3d809a8e4d1 (diff) | |
download | bcm5719-llvm-3abb10268def3cc26f2ae3b2a486925b4dc5b79d.tar.gz bcm5719-llvm-3abb10268def3cc26f2ae3b2a486925b4dc5b79d.zip |
Fix the CMake files for the new InstrumentationRuntime plugins.
llvm-svn: 305594
-rw-r--r-- | lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/CMakeLists.txt | 12 | ||||
-rw-r--r-- | lldb/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer/CMakeLists.txt | 12 |
2 files changed, 22 insertions, 2 deletions
diff --git a/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/CMakeLists.txt b/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/CMakeLists.txt index bdb17ebfd64..440b176b270 100644 --- a/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/CMakeLists.txt +++ b/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/CMakeLists.txt @@ -1,3 +1,13 @@ -add_lldb_library(lldbPluginInstrumentationRuntimeMainThreadChecker +add_lldb_library(lldbPluginInstrumentationRuntimeMainThreadChecker PLUGIN MainThreadCheckerRuntime.cpp + + LINK_LIBS + lldbBreakpoint + lldbCore + lldbExpression + lldbInterpreter + lldbSymbol + lldbTarget + LINK_COMPONENTS + Support ) diff --git a/lldb/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer/CMakeLists.txt b/lldb/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer/CMakeLists.txt index 274c8c6c2b2..8f4b1a539ca 100644 --- a/lldb/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer/CMakeLists.txt +++ b/lldb/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer/CMakeLists.txt @@ -1,3 +1,13 @@ -add_lldb_library(lldbPluginInstrumentationRuntimeUndefinedBehaviorSanitizer +add_lldb_library(lldbPluginInstrumentationRuntimeUndefinedBehaviorSanitizer PLUGIN UndefinedBehaviorSanitizerRuntime.cpp + + LINK_LIBS + lldbBreakpoint + lldbCore + lldbExpression + lldbInterpreter + lldbSymbol + lldbTarget + LINK_COMPONENTS + Support ) |