From 53916f823c22dd1f163befe97fbc0b9f0919b0e3 Mon Sep 17 00:00:00 2001 From: richardhob Date: Wed, 2 Oct 2019 11:38:48 -0700 Subject: [PATCH] Update CMakeLists.txt Update the CMAKE minimum version from `3` to `3.0` to fix error in Windows 10 x64 with CMAKE 3.15.4: cmake_minimum_required could not parse VERSION "3". --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1954949..dfc243c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ # License: MIT # # # ################################################################################### -cmake_minimum_required(VERSION 3 FATAL_ERROR) +cmake_minimum_required(VERSION 3.0 FATAL_ERROR) project(unity LANGUAGES C DESCRIPTION "C Unit testing framework.")