From 6cb3e31cf6ddb004c330c13d94619f1e89f08bb9 Mon Sep 17 00:00:00 2001 From: Simonsays095 Date: Sun, 4 Feb 2024 21:27:26 -0800 Subject: [PATCH] update minimum cmake to avoid warnings when building as subproject --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d4b3c1b2..32e98d87 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,7 @@ # Copyright(c) 2019 spdlog authors Distributed under the MIT License (http://opensource.org/licenses/MIT) -cmake_minimum_required(VERSION 3.11) +# Require minimum v3.13 so we can set options externally without a warning +cmake_minimum_required(VERSION 3.13) # --------------------------------------------------------------------------------------- # Start spdlog project