1 if (APPLE AND LLVM_ENABLE_LOCAL_SUBMODULE_VISIBILITY)
2 # Work around an issue with the Python headers, which have a modular include
3 # inside an extern "C" block.
7 if(NOT LLDB_PYTHON_RELATIVE_PATH)
8 message(FATAL_ERROR "LLDB_PYTHON_RELATIVE_PATH is not set.")
10 add_definitions(-DLLDB_PYTHON_RELATIVE_LIBDIR="${LLDB_PYTHON_RELATIVE_PATH}")
12 if(NOT LLDB_PYTHON_EXE_RELATIVE_PATH)
13 message(FATAL_ERROR "LLDB_PYTHON_EXE_RELATIVE_PATH is not set.")
15 add_definitions(-DLLDB_PYTHON_EXE_RELATIVE_PATH="${LLDB_PYTHON_EXE_RELATIVE_PATH}")
18 if (LLDB_ENABLE_LIBEDIT)
19 list(APPEND LLDB_LIBEDIT_LIBS LibEdit::LibEdit)
22 add_subdirectory(Interfaces)
24 add_lldb_library(lldbPluginScriptInterpreterPython PLUGIN
27 ScriptInterpreterPython.cpp
37 lldbPluginScriptInterpreterPythonInterfaces