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".
This commit is contained in:
richardhob
2019-10-02 11:38:48 -07:00
committed by GitHub
parent 5cb2b63490
commit 53916f823c

View File

@ -8,7 +8,7 @@
# License: MIT # # 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.") project(unity LANGUAGES C DESCRIPTION "C Unit testing framework.")