From 3a80f0479e8ac2ae016bad836b02626c9e5c4599 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Fri, 3 Oct 2014 23:33:54 +0200 Subject: [PATCH] core: fix Lua detection on OpenBSD with cmake --- cmake/FindLua.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FindLua.cmake b/cmake/FindLua.cmake index 5dd706674..b0e03350d 100644 --- a/cmake/FindLua.cmake +++ b/cmake/FindLua.cmake @@ -35,5 +35,5 @@ endif() find_package(PkgConfig) if(PKG_CONFIG_FOUND) - pkg_search_module(LUA lua5.2 lua5.1 lua5.0) + pkg_search_module(LUA lua5.2 lua52 lua5.1 lua51 lua5.0 lua50) endif()