cmake: lower minimum required version to 3.15

Version 3.15 introduces the <PREFIX>_KEYWORDS_MISSING_VALUES of the
cmake_parse_arguments() function, which is used in generate_g1a() and
generate_g3a(), so there is no way to bring it further down for free.
This commit is contained in:
Lephenixnoir 2021-05-10 15:25:47 +02:00
parent 29c7d46817
commit 55ed08abe5
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# Build system for the fxSDK
cmake_minimum_required(VERSION 3.16)
cmake_minimum_required(VERSION 3.15)
project(fxSDK VERSION 2.4.0 LANGUAGES C)
option(FXLINK_DISABLE_UDISKS2 "Do not build the UDisks2-based features of fxlink")

View File

@ -1,7 +1,7 @@
# Configure with [fxsdk build-fx] or [fxsdk build-cg], which provide the
# toolchain file and module path of the fxSDK
cmake_minimum_required(VERSION 3.18)
cmake_minimum_required(VERSION 3.15)
project(MyAddin)
include(GenerateG1A)