aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichel Alexandre Salim <michel@michel-slm.name>2020-08-31 22:06:59 -0700
committerGitHub <noreply@github.com>2020-08-31 22:06:59 -0700
commita50cf35bdac7fe8bccd8ade3ce358daa8e00fc98 (patch)
treee0e47a17c9c6b9d50887d2c47046fc216260e4d2
parent2bbbb34ce78ee30c1ee53a9cb3fd1e7608185716 (diff)
downloadrneovim-a50cf35bdac7fe8bccd8ade3ce358daa8e00fc98.tar.gz
rneovim-a50cf35bdac7fe8bccd8ade3ce358daa8e00fc98.tar.bz2
rneovim-a50cf35bdac7fe8bccd8ade3ce358daa8e00fc98.zip
build/FindLua.cmake: allow Lua 5.4 #12820
Lua 5.4 is out, and will be shipped with Fedora 33.
-rw-r--r--cmake/FindLua.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/FindLua.cmake b/cmake/FindLua.cmake
index b669a49f29..7ba13e1f56 100644
--- a/cmake/FindLua.cmake
+++ b/cmake/FindLua.cmake
@@ -42,7 +42,7 @@ unset(_lua_append_versions)
# this is a function only to have all the variables inside go away automatically
function(_lua_set_version_vars)
- set(LUA_VERSIONS5 5.3 5.2 5.1 5.0)
+ set(LUA_VERSIONS5 5.4 5.3 5.2 5.1 5.0)
if (Lua_FIND_VERSION_EXACT)
if (Lua_FIND_VERSION_COUNT GREATER 1)