From 118123ea3cd2e9cf871961c44d0a0b62ddc54081 Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Sun, 19 Jan 2020 00:26:18 +0100 Subject: [PATCH] Changed the required CMake version --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aca94509..1513962d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,9 @@ -cmake_minimum_required (VERSION 3.13) +if(WIN32) +cmake_minimum_required (VERSION 3.15) cmake_policy(SET CMP0091 NEW) +else() +cmake_minimum_required (VERSION 3.11) +endif() project (sfizz VERSION 1.0.0 LANGUAGES CXX C) # External configuration CMake scripts