diff options
author | Florian Walch <florian@fwalch.com> | 2016-06-03 18:21:29 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-06-03 12:21:29 -0400 |
commit | abe47d5f64b2748633d1262e2b395ce8322852a7 (patch) | |
tree | d4b2053349a348e3b2ca430c7784d130cf0967be | |
parent | 8bf94f8f0d97d1896106931991631fa51dd5869d (diff) | |
download | rneovim-abe47d5f64b2748633d1262e2b395ce8322852a7.tar.gz rneovim-abe47d5f64b2748633d1262e2b395ce8322852a7.tar.bz2 rneovim-abe47d5f64b2748633d1262e2b395ce8322852a7.zip |
CMake: Search all possibly usable Lua executables. (#4858)
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 953e210397..f736508641 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -374,7 +374,7 @@ endforeach() include(LuaHelpers) set(LUA_DEPENDENCIES lpeg mpack bit) if(NOT LUA_PRG) - foreach(CURRENT_LUA_PRG luajit lua) + foreach(CURRENT_LUA_PRG luajit lua5.1 lua5.2 lua) # If LUA_PRG is set find_program() will not search unset(LUA_PRG CACHE) unset(LUA_PRG_WORKS) |