From 1b0a1dda33a9d0f1946827067f041f3939e51bc1 Mon Sep 17 00:00:00 2001 From: Jan Moravec <32428422+jan-moravec@users.noreply.github.com> Date: Mon, 17 Mar 2025 15:15:12 +0100 Subject: [PATCH] Update CMake minimum version required (#3359) FILE_SET functionality was introduced in CMake version 3.23. https://cmake.org/cmake/help/latest/command/target_sources.html --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6bb6abb1..486d1ae3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # Copyright(c) 2019-present by spdlog authors. # Distributed under the MIT License (http://opensource.org/licenses/MIT) # --------------------------------------------------------------------------------------- -cmake_minimum_required(VERSION 3.14) +cmake_minimum_required(VERSION 3.23) include(cmake/utils.cmake) include(cmake/ide.cmake) spdlog_extract_version()