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