
The only difference from the original PR are the added BRIEF and FULL_DOCS arguments to define_property, which are required for cmake<3.23.
11 lines
205 B
CMake
11 lines
205 B
CMake
set_property(DIRECTORY PROPERTY LLDB_PLUGIN_KIND ScriptInterpreter)
|
|
|
|
add_subdirectory(None)
|
|
if (LLDB_ENABLE_PYTHON)
|
|
add_subdirectory(Python)
|
|
endif()
|
|
|
|
if (LLDB_ENABLE_LUA)
|
|
add_subdirectory(Lua)
|
|
endif()
|