From 9bff064d403d37e7dd00e5f403508c7fdf1b11ea Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Sun, 7 Mar 2021 19:33:36 +0100 Subject: [PATCH] CMake: bump minimum version Mostly because 2.8.4 will be deprecated in the not too far future --- CMakeLists.txt | 2 +- heimdall-frontend/CMakeLists.txt | 2 +- heimdall/CMakeLists.txt | 2 +- libpit/CMakeLists.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4dd4fb6..55efbd9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.4) +cmake_minimum_required(VERSION 3.0.0) set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake diff --git a/heimdall-frontend/CMakeLists.txt b/heimdall-frontend/CMakeLists.txt index 05a9e75..38662a5 100644 --- a/heimdall-frontend/CMakeLists.txt +++ b/heimdall-frontend/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.4) +cmake_minimum_required(VERSION 3.0.0) project(heimdall-frontend) diff --git a/heimdall/CMakeLists.txt b/heimdall/CMakeLists.txt index 1548aa5..7ddc561 100644 --- a/heimdall/CMakeLists.txt +++ b/heimdall/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.4) +cmake_minimum_required(VERSION 3.0.0) project(heimdall) diff --git a/libpit/CMakeLists.txt b/libpit/CMakeLists.txt index 3ba2e50..80f4b4d 100644 --- a/libpit/CMakeLists.txt +++ b/libpit/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.4) +cmake_minimum_required(VERSION 3.0.0) project(libpit) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11")