From 9b771a05c581d9fe45fa5c57af288044cd1837ab Mon Sep 17 00:00:00 2001 From: duckyondiscord Date: Sun, 12 Feb 2023 14:36:16 +0200 Subject: [PATCH] Increased the minimum ver requirement to avoid a warning when building --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a8bab8b..ae90c8a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.0) if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Debug CACHE STRING "Choose the type of build (Debug or Release)" FORCE)