diff options
Diffstat (limited to 'source/Plugins/ScriptInterpreter')
-rw-r--r-- | source/Plugins/ScriptInterpreter/CMakeLists.txt | 4 | ||||
-rw-r--r-- | source/Plugins/ScriptInterpreter/None/CMakeLists.txt | 7 | ||||
-rw-r--r-- | source/Plugins/ScriptInterpreter/Python/CMakeLists.txt | 28 |
3 files changed, 0 insertions, 39 deletions
diff --git a/source/Plugins/ScriptInterpreter/CMakeLists.txt b/source/Plugins/ScriptInterpreter/CMakeLists.txt deleted file mode 100644 index 5d8642eb07e67..0000000000000 --- a/source/Plugins/ScriptInterpreter/CMakeLists.txt +++ /dev/null @@ -1,4 +0,0 @@ -add_subdirectory(None) -if (NOT LLDB_DISABLE_PYTHON) - add_subdirectory(Python) -endif() diff --git a/source/Plugins/ScriptInterpreter/None/CMakeLists.txt b/source/Plugins/ScriptInterpreter/None/CMakeLists.txt deleted file mode 100644 index 7e7dd5896f7c8..0000000000000 --- a/source/Plugins/ScriptInterpreter/None/CMakeLists.txt +++ /dev/null @@ -1,7 +0,0 @@ -add_lldb_library(lldbPluginScriptInterpreterNone PLUGIN - ScriptInterpreterNone.cpp - - LINK_LIBS - lldbCore - lldbInterpreter - )
\ No newline at end of file diff --git a/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt b/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt deleted file mode 100644 index 56eacc941d64b..0000000000000 --- a/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt +++ /dev/null @@ -1,28 +0,0 @@ -if (NOT CMAKE_SYSTEM_NAME MATCHES "Windows") - # Call a python script to gather the arch-specific libdir for - # modules like the lldb module. - execute_process( - COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/../../../../scripts/get_relative_lib_dir.py - RESULT_VARIABLE get_libdir_status - OUTPUT_VARIABLE relative_libdir - ) - if (get_libdir_status EQUAL 0) - add_definitions(-DLLDB_PYTHON_RELATIVE_LIBDIR="${relative_libdir}") - endif() -endif() - -add_lldb_library(lldbPluginScriptInterpreterPython PLUGIN - PythonDataObjects.cpp - PythonExceptionState.cpp - ScriptInterpreterPython.cpp - - LINK_LIBS - lldbBreakpoint - lldbCore - lldbDataFormatters - lldbHost - lldbInterpreter - lldbTarget - LINK_COMPONENTS - Support - ) |