xref: /openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Lua/CMakeLists.txt (revision 53555c846a0a6f917dbd0a191f826da995ab1c42)
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