From 51a3f8fe4efef3ad4f6c2013c54a225f805b1b8c Mon Sep 17 00:00:00 2001 From: Tom Herbers Date: Sun, 9 Nov 2025 11:54:32 +0100 Subject: [PATCH] bump cmake_minimum_required 2.6 -> 3.10 Otherwise it isn't possible to build this with current cmake. Only bumping to 3.5 would be an option. But going higher also seems to be okay to delay having to deal with this earlier then neccesary again. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 446ef2c..821fa65 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.10) PROJECT(ulldpd C) ADD_DEFINITIONS(-Os -ggdb -Wall -Werror --std=gnu99 -Wmissing-declarations -pedantic)