diff options
author | Chris Bieneman <beanz@apple.com> | 2017-01-31 22:23:49 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2017-01-31 22:23:49 +0000 |
commit | 66a2d639abf2ddf670877387991db6e75386c05f (patch) | |
tree | 3755391ae918279b874925496986b02fea69f1b9 /lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime | |
parent | 6847a3aba1a92daffcbc29c468cdbf840029126a (diff) | |
download | bcm5719-llvm-66a2d639abf2ddf670877387991db6e75386c05f.tar.gz bcm5719-llvm-66a2d639abf2ddf670877387991db6e75386c05f.zip |
[CMake] [2/4] Update a batch of plugins
This is extending the updates from r293696 to more LLDB plugins.
llvm-svn: 293699
Diffstat (limited to 'lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime')
-rw-r--r-- | lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt index cd08f14137d..1a6c4994613 100644 --- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt +++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt @@ -3,7 +3,7 @@ if(NOT LLDB_BUILT_STANDALONE) endif() -add_lldb_library(lldbPluginRenderScriptRuntime +add_lldb_library(lldbPluginRenderScriptRuntime PLUGIN RenderScriptRuntime.cpp RenderScriptExpressionOpts.cpp RenderScriptx86ABIFixups.cpp @@ -11,4 +11,20 @@ add_lldb_library(lldbPluginRenderScriptRuntime DEPENDS ${tablegen_deps} + + LINK_LIBS + clangBasic + lldbBreakpoint + lldbCore + lldbDataFormatters + lldbExpression + lldbHost + lldbInterpreter + lldbSymbol + lldbTarget + LINK_COMPONENTS + Core + IRReader + Support + Target ) |