Release notes: https://cmake.org/cmake/help/latest/release/4.2.html https://cmake.org/cmake/help/latest/release/4.1.html License file was renamed upstream https://gitlab.kitware.com/cmake/cmake/-/commit/2d42a5444f859891b6598c76ea5d51510013565e and updated: https://gitlab.kitware.com/cmake/cmake/-/commits/v4.0.3/LICENSE.rst?ref_type=tags Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
99 lines
2.7 KiB
Plaintext
99 lines
2.7 KiB
Plaintext
config BR2_PACKAGE_HOST_CMAKE
|
|
bool "host cmake"
|
|
help
|
|
CMake is an open-source, cross-platform family of tools
|
|
designed to build, test and package software. CMake is used
|
|
to control the software compilation process using simple
|
|
platform and compiler independent configuration files, and
|
|
generate native makefiles and workspaces that can be used in
|
|
the compiler environment of your choice.
|
|
|
|
http://www.cmake.org/
|
|
|
|
# The minimum system cmake version we expect if 3.18 as provided by
|
|
# Debian bullseye, that we use in our reference build docker image.
|
|
config BR2_HOST_CMAKE_AT_LEAST_3_19
|
|
bool
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_3_20
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_19
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_3_21
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_20
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_3_22
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_21
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_3_23
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_22
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_3_24
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_23
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_3_25
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_24
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_3_26
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_25
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_3_27
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_26
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_3_28
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_27
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_3_29
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_28
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_3_30
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_29
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_3_31
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_30
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_4_0
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_31
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_4_1
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_4_0
|
|
|
|
config BR2_HOST_CMAKE_AT_LEAST_4_2
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_4_1
|
|
|
|
# This order guarantees that the highest version is set, as kconfig
|
|
# stops affecting a value on the first matching default.
|
|
config BR2_HOST_CMAKE_AT_LEAST
|
|
string
|
|
default "4.2" if BR2_HOST_CMAKE_AT_LEAST_4_2
|
|
default "4.1" if BR2_HOST_CMAKE_AT_LEAST_4_1
|
|
default "4.0" if BR2_HOST_CMAKE_AT_LEAST_4_0
|
|
default "3.31" if BR2_HOST_CMAKE_AT_LEAST_3_31
|
|
default "3.30" if BR2_HOST_CMAKE_AT_LEAST_3_30
|
|
default "3.29" if BR2_HOST_CMAKE_AT_LEAST_3_29
|
|
default "3.28" if BR2_HOST_CMAKE_AT_LEAST_3_28
|
|
default "3.27" if BR2_HOST_CMAKE_AT_LEAST_3_27
|
|
default "3.26" if BR2_HOST_CMAKE_AT_LEAST_3_26
|
|
default "3.25" if BR2_HOST_CMAKE_AT_LEAST_3_25
|
|
default "3.24" if BR2_HOST_CMAKE_AT_LEAST_3_24
|
|
default "3.23" if BR2_HOST_CMAKE_AT_LEAST_3_23
|
|
default "3.22" if BR2_HOST_CMAKE_AT_LEAST_3_22
|
|
default "3.21" if BR2_HOST_CMAKE_AT_LEAST_3_21
|
|
default "3.20" if BR2_HOST_CMAKE_AT_LEAST_3_20
|
|
default "3.19" if BR2_HOST_CMAKE_AT_LEAST_3_19
|
|
default "3.18"
|