mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
0d2c125cbb
Better FindLua modules as per CMake devs
56 lines
2.4 KiB
CMake
56 lines
2.4 KiB
CMake
|
|
# Uses the Lua version and calculates the names of the include directories and library
|
|
# name accordingly.
|
|
#
|
|
# ::
|
|
# _prefix - Prefix added to all variables exposed, e.g. "lua" or "luajit"
|
|
# _lua_suffix - Name suffix, typically only used for specifiying luajit, which is "jit"
|
|
|
|
function(_lua_set_version_vars _prefix _lua_suffix)
|
|
set(LUA_VERSIONS5 5.3 5.2 5.1 5.0)
|
|
|
|
if (${_prefix}_FIND_VERSION_EXACT)
|
|
if (${_prefix}_FIND_VERSION_COUNT GREATER 1)
|
|
set(_${_prefix}_append_versions ${${_prefix}_FIND_VERSION_MAJOR}.${${_prefix}_FIND_VERSION_MINOR})
|
|
endif ()
|
|
elseif (${_prefix}_FIND_VERSION)
|
|
# once there is a different major version supported this should become a loop
|
|
if (NOT ${_prefix}_FIND_VERSION_MAJOR GREATER 5)
|
|
if (${_prefix}_FIND_VERSION_COUNT EQUAL 1)
|
|
set(_${_prefix}_append_versions ${${_prefix}_VERSIONS5})
|
|
else ()
|
|
foreach (subver IN LISTS ${_prefix}_VERSIONS5)
|
|
if (NOT subver VERSION_LESS ${${_prefix}_FIND_VERSION})
|
|
list(APPEND _${_prefix}_append_versions ${subver})
|
|
endif ()
|
|
endforeach ()
|
|
endif ()
|
|
endif ()
|
|
else ()
|
|
# once there is a different major version supported this should become a loop
|
|
set(_${_prefix}_append_versions ${LUA_VERSIONS5})
|
|
endif ()
|
|
|
|
list(APPEND _${_prefix}_include_subdirs "include/lua" "include")
|
|
|
|
foreach (ver IN LISTS _${_prefix}_append_versions)
|
|
string(REGEX MATCH "^([0-9]+)\\.([0-9]+)$" _ver "${ver}")
|
|
list(APPEND _${_prefix}_include_subdirs
|
|
include/lua${_lua_suffix}${CMAKE_MATCH_1}${CMAKE_MATCH_2}
|
|
include/lua${_lua_suffix}${CMAKE_MATCH_1}.${CMAKE_MATCH_2}
|
|
include/lua${_lua_suffix}-${CMAKE_MATCH_1}.${CMAKE_MATCH_2}
|
|
)
|
|
|
|
# LuaJIT hides itself as Lua lib (maintaining ABI compat)
|
|
list(APPEND _${_prefix}_library_names
|
|
lua${CMAKE_MATCH_1}${CMAKE_MATCH_2}
|
|
lua${CMAKE_MATCH_1}.${CMAKE_MATCH_2}
|
|
lua.${CMAKE_MATCH_1}.${CMAKE_MATCH_2}
|
|
lua-${CMAKE_MATCH_1}.${CMAKE_MATCH_2}
|
|
)
|
|
endforeach ()
|
|
|
|
set(_${_prefix}_include_subdirs "${_${_prefix}_include_subdirs}" PARENT_SCOPE)
|
|
set(_${_prefix}_append_versions "${_${_prefix}_append_versions}" PARENT_SCOPE)
|
|
set(_${_prefix}_library_names "${_${_prefix}_library_names}" PARENT_SCOPE)
|
|
endfunction(_lua_set_version_vars) |