From fedfa1b576a9438032c831b1b3f69c1599dd97d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Fri, 10 Oct 2025 11:37:10 +0200 Subject: [PATCH] chore: bump the minimal of cmake to 3.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise more recent cmake builds (e.g., mine 4.0+) complain about too low version allowed. Signed-off-by: Matěj Cepl --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0bcbd96..aa7f3e2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ # POSSIBILITY OF SUCH DAMAGE. # -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.10) cmake_policy(SET CMP0074 NEW) project(editorconfig-core-lua VERSION 0.3.1 LANGUAGES C)