1config BR2_PACKAGE_HOST_CMAKE 2 bool "host cmake" 3 help 4 CMake is an open-source, cross-platform family of tools 5 designed to build, test and package software. CMake is used 6 to control the software compilation process using simple 7 platform and compiler independent configuration files, and 8 generate native makefiles and workspaces that can be used in 9 the compiler environment of your choice. 10 11 http://www.cmake.org/ 12 13# The minimum system cmake version we expect if 3.18 as provided by 14# Debian bullseye, that we use in our reference build docker image. 15config BR2_HOST_CMAKE_AT_LEAST_3_19 16 bool 17 18config BR2_HOST_CMAKE_AT_LEAST_3_20 19 bool 20 select BR2_HOST_CMAKE_AT_LEAST_3_19 21 22config BR2_HOST_CMAKE_AT_LEAST_3_21 23 bool 24 select BR2_HOST_CMAKE_AT_LEAST_3_20 25 26config BR2_HOST_CMAKE_AT_LEAST_3_22 27 bool 28 select BR2_HOST_CMAKE_AT_LEAST_3_21 29 30config BR2_HOST_CMAKE_AT_LEAST_3_23 31 bool 32 select BR2_HOST_CMAKE_AT_LEAST_3_22 33 34config BR2_HOST_CMAKE_AT_LEAST_3_24 35 bool 36 select BR2_HOST_CMAKE_AT_LEAST_3_23 37 38config BR2_HOST_CMAKE_AT_LEAST_3_25 39 bool 40 select BR2_HOST_CMAKE_AT_LEAST_3_24 41 42config BR2_HOST_CMAKE_AT_LEAST_3_26 43 bool 44 select BR2_HOST_CMAKE_AT_LEAST_3_25 45 46config BR2_HOST_CMAKE_AT_LEAST_3_27 47 bool 48 select BR2_HOST_CMAKE_AT_LEAST_3_26 49 50config BR2_HOST_CMAKE_AT_LEAST_3_28 51 bool 52 select BR2_HOST_CMAKE_AT_LEAST_3_27 53 54# This order guarantees that the highest version is set, as kconfig 55# stops affecting a value on the first matching default. 56config BR2_HOST_CMAKE_AT_LEAST 57 string 58 default "3.28" if BR2_HOST_CMAKE_AT_LEAST_3_28 59 default "3.27" if BR2_HOST_CMAKE_AT_LEAST_3_27 60 default "3.26" if BR2_HOST_CMAKE_AT_LEAST_3_26 61 default "3.25" if BR2_HOST_CMAKE_AT_LEAST_3_25 62 default "3.24" if BR2_HOST_CMAKE_AT_LEAST_3_24 63 default "3.23" if BR2_HOST_CMAKE_AT_LEAST_3_23 64 default "3.22" if BR2_HOST_CMAKE_AT_LEAST_3_22 65 default "3.21" if BR2_HOST_CMAKE_AT_LEAST_3_21 66 default "3.20" if BR2_HOST_CMAKE_AT_LEAST_3_20 67 default "3.19" if BR2_HOST_CMAKE_AT_LEAST_3_19 68 default "3.18" 69