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