
This adds the boilerplate necessary to support the Lua script interpreter. The interpreter is not functional yet and just reports that it's not implemented. Discussion on the mailing list: http://lists.llvm.org/pipermail/lldb-dev/2019-December/015812.html Differential revision: https://reviews.llvm.org/D71232
9 lines
136 B
CMake
9 lines
136 B
CMake
add_subdirectory(None)
|
|
if (LLDB_ENABLE_PYTHON)
|
|
add_subdirectory(Python)
|
|
endif()
|
|
|
|
if (LLDB_ENABLE_LUA)
|
|
add_subdirectory(Lua)
|
|
endif()
|