Files
clang-p2996/lldb/cmake/modules/FindLuaAndSwig.cmake
Jonas Devlieghere b5467ecc0f [lldb] Use LLDB_ENABLE_SWIG as the canonical CMake variable
Use LLDB_ENABLE_SWIG instead of SWIG_EXECUTABLE or SWIG_FOUND as the
canonical CMake variable to determine whether we have SWIG available in
LLDB. This is a follow-up to b3c978e850.
2022-11-30 12:46:13 -08:00

31 lines
855 B
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 EXACT)
if(LUA_FOUND)
mark_as_advanced(
LUA_LIBRARIES
LUA_INCLUDE_DIR)
endif()
else()
message(STATUS "SWIG 3 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_LIBRARIES
LUA_INCLUDE_DIR
LLDB_ENABLE_SWIG)
endif()