From 60a1dc65ef41e1d18e283dba48c993aeee629c00 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Thu, 3 Dec 2020 10:05:04 +1000 Subject: [PATCH] FindRAGEL: bump the minimum CMake version to 3.14 We were deprecation warnings for CMake 2.x so we request a 3.x series. No good reason that we chose 3.14 other than it's _kinda_ recent. --- FindRAGEL.cmake | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/FindRAGEL.cmake b/FindRAGEL.cmake index 5e2d297..192772e 100644 --- a/FindRAGEL.cmake +++ b/FindRAGEL.cmake @@ -41,8 +41,7 @@ # /usr/share/cmake/Modules/FindFLEX.cmake # /usr/share/cmake/Modules/FindBISON.cmake -# uses some features which are not available in 2.6 -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 3.14) find_program(RAGEL_EXECUTABLE NAMES ragel DOC "path to the ragel executable") mark_as_advanced(RAGEL_EXECUTABLE)