When SWIG is installed but not any Lua interpreter, the cmake script in `lldb/cmake/modules/FindLuaAndSwig.cmake` will execute `find_program(LUA_EXECUTABLE, ...)` and this will set the `LUA_EXECUTABLE` variable to `LUA_EXECUTABLE-NOTFOUND`. Ensure that in this case we are skipping the Lua tests requiring the interpreter.
44 lines
1.3 KiB
CMake
44 lines
1.3 KiB
CMake
#.rst:
|
|
# FindLuaAndSwig
|
|
# --------------
|
|
#
|
|
# Find Lua and SWIG as a whole.
|
|
|
|
if(LUA_LIBRARIES AND LUA_INCLUDE_DIR AND LLDB_ENABLE_SWIG)
|
|
set(LUAANDSWIG_FOUND TRUE)
|
|
else()
|
|
if (LLDB_ENABLE_SWIG)
|
|
find_package(Lua 5.3)
|
|
if(LUA_FOUND)
|
|
# Find the Lua executable. Only required to run a subset of the Lua
|
|
# tests.
|
|
find_program(LUA_EXECUTABLE
|
|
NAMES
|
|
"lua"
|
|
"lua${LUA_VERSION_MAJOR}.${LUA_VERSION_MINOR}"
|
|
)
|
|
mark_as_advanced(
|
|
LUA_LIBRARIES
|
|
LUA_INCLUDE_DIR
|
|
LUA_VERSION_MINOR
|
|
LUA_VERSION_MAJOR
|
|
LUA_EXECUTABLE)
|
|
endif()
|
|
else()
|
|
message(STATUS "SWIG 4 or later is required for Lua support in LLDB but could not be found")
|
|
endif()
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(LuaAndSwig
|
|
FOUND_VAR
|
|
LUAANDSWIG_FOUND
|
|
REQUIRED_VARS
|
|
LUA_EXECUTABLE
|
|
LUA_LIBRARIES
|
|
LUA_INCLUDE_DIR
|
|
LUA_VERSION_MINOR
|
|
LUA_VERSION_MAJOR
|
|
LLDB_ENABLE_SWIG)
|
|
endif()
|