summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/ScriptInterpreter/Lua/CMakeLists.txt
blob: f5c62ee3a54f323375387996fdfad2743a094b98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
find_package(Lua REQUIRED)

add_lldb_library(lldbPluginScriptInterpreterLua PLUGIN
  Lua.cpp
  ScriptInterpreterLua.cpp

  LINK_LIBS
    lldbCore
    lldbInterpreter
  )

target_include_directories(lldbPluginScriptInterpreterLua PUBLIC ${LUA_INCLUDE_DIR})
target_link_libraries(lldbPluginScriptInterpreterLua INTERFACE ${LUA_LIBRARIES})
OpenPOWER on IntegriCloud