diff options
author | Felix Yan <felixonmars@archlinux.org> | 2020-07-01 14:36:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-07-01 14:55:32 (GMT) |
commit | bbb7f0e27143f2780425c0b3b1004d749bfb7d4f (patch) | |
tree | ac53d744010cf92b387593f1681d448372b1732d /Modules | |
parent | 1e26c84b96c0ec6887de2cf5e14061ccb83bdbfe (diff) | |
download | CMake-bbb7f0e27143f2780425c0b3b1004d749bfb7d4f.zip CMake-bbb7f0e27143f2780425c0b3b1004d749bfb7d4f.tar.gz CMake-bbb7f0e27143f2780425c0b3b1004d749bfb7d4f.tar.bz2 |
FindLua: Add support for Lua 5.4
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FindLua.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindLua.cmake b/Modules/FindLua.cmake index 0b0c970..c4361b7 100644 --- a/Modules/FindLua.cmake +++ b/Modules/FindLua.cmake @@ -48,7 +48,7 @@ unset(_lua_append_versions) # this is a function only to have all the variables inside go away automatically function(_lua_get_versions) - 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) |