xref: /llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/CMakeLists.txt (revision 6de63b3ba5e2dbb5994d329623fbf933e319ea7a)
1add_lldb_library(lldbPluginScriptInterpreterLua PLUGIN
2  Lua.cpp
3  ScriptInterpreterLua.cpp
4
5  LINK_LIBS
6    lldbCore
7    lldbInterpreter
8  )
9
10target_include_directories(lldbPluginScriptInterpreterLua PUBLIC ${LUA_INCLUDE_DIR})
11target_link_libraries(lldbPluginScriptInterpreterLua INTERFACE ${LUA_LIBRARIES})
12