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