Fix Lua detection

This commit is contained in:
Přemysl Eric Janouch 2015-01-21 00:06:26 +01:00
parent eb0f8a028c
commit 45595157e8
1 changed files with 3 additions and 1 deletions

View File

@ -37,7 +37,9 @@ else (CURSES_FOUND)
endif (ncursesw_FOUND)
if (WITH_LUA)
pkg_search_module (lua REQUIRED lua5.3 lua-5.3 lua=5.3)
# FIXME: for "lua" we also need to check that it is < 5.4
# which doesn't seem to be possible with FindPkgConfig
pkg_search_module (lua REQUIRED lua5.3 lua-5.3 lua>=5.3)
list (APPEND project_libraries ${lua_LIBRARIES})
include_directories (${lua_INCLUDE_DIRS})
endif (WITH_LUA)