mirror of
https://git.planet-casio.com/Lephenixnoir/fxsdk.git
synced 2024-12-28 04:23:37 +01:00
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:
parent
29c7d46817
commit
55ed08abe5
2 changed files with 2 additions and 2 deletions
|
@ -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")
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue