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/ScriptInterpreter | |
| 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/ScriptInterpreter')
| -rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/None/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt | 12 |
2 files changed, 16 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/None/CMakeLists.txt b/lldb/source/Plugins/ScriptInterpreter/None/CMakeLists.txt index 5692d2f9071..7e7dd5896f7 100644 --- a/lldb/source/Plugins/ScriptInterpreter/None/CMakeLists.txt +++ b/lldb/source/Plugins/ScriptInterpreter/None/CMakeLists.txt @@ -1,3 +1,7 @@ -add_lldb_library(lldbPluginScriptInterpreterNone +add_lldb_library(lldbPluginScriptInterpreterNone PLUGIN ScriptInterpreterNone.cpp + + LINK_LIBS + lldbCore + lldbInterpreter )
\ No newline at end of file diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt b/lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt index 71f5807b6f6..c337fc7b587 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt +++ b/lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt @@ -1,5 +1,15 @@ -add_lldb_library(lldbPluginScriptInterpreterPython +add_lldb_library(lldbPluginScriptInterpreterPython PLUGIN PythonDataObjects.cpp PythonExceptionState.cpp ScriptInterpreterPython.cpp + + LINK_LIBS + lldbBreakpoint + lldbCore + lldbDataFormatters + lldbHost + lldbInterpreter + lldbTarget + LINK_COMPONENTS + Support ) |

