From 87f23427a142e05d855d9346d75f3b75d9092a10 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Mon, 8 Nov 2021 23:13:47 +0100 Subject: [PATCH] CMake: Nail down lua to be 5.3 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b21de0e..b0eab53 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -99,7 +99,7 @@ target_include_directories(BeamMP-Server PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/commandline") message(STATUS "Looking for Lua") -find_package(Lua REQUIRED) +find_package(Lua REQUIRED VERSION 5.3) target_include_directories(BeamMP-Server PUBLIC ${LUA_INCLUDE_DIR} ${CURL_INCLUDE_DIRS}