Jonas Devlieghere 8d625621eb
[lldb] Fix spurious indentation in CMakeLists.txt (NFC) (#183368)
Fix spurious indentation in ScriptInterpreter/*/CMakeLists.txt.
2026-02-25 19:44:22 +00:00

13 lines
256 B
CMake

add_lldb_library(lldbPluginScriptInterpreterLua PLUGIN
LuaState.cpp
ScriptInterpreterLua.cpp
LINK_LIBS
lldbCore
lldbInterpreter
${LUA_LIBRARIES}
)
target_include_directories(lldbPluginScriptInterpreterLua
PUBLIC ${LUA_INCLUDE_DIR})