Config.in.host 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. config 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. http://www.cmake.org/
  11. # The minimum system cmake version we expect if 3.18 as provided by
  12. # Debian bullseye, that we use in our reference build docker image.
  13. config BR2_HOST_CMAKE_AT_LEAST_3_19
  14. bool
  15. config BR2_HOST_CMAKE_AT_LEAST_3_20
  16. bool
  17. select BR2_HOST_CMAKE_AT_LEAST_3_19
  18. config BR2_HOST_CMAKE_AT_LEAST_3_21
  19. bool
  20. select BR2_HOST_CMAKE_AT_LEAST_3_20
  21. config BR2_HOST_CMAKE_AT_LEAST_3_22
  22. bool
  23. select BR2_HOST_CMAKE_AT_LEAST_3_21
  24. config BR2_HOST_CMAKE_AT_LEAST_3_23
  25. bool
  26. select BR2_HOST_CMAKE_AT_LEAST_3_22
  27. config BR2_HOST_CMAKE_AT_LEAST_3_24
  28. bool
  29. select BR2_HOST_CMAKE_AT_LEAST_3_23
  30. config BR2_HOST_CMAKE_AT_LEAST_3_25
  31. bool
  32. select BR2_HOST_CMAKE_AT_LEAST_3_24
  33. config BR2_HOST_CMAKE_AT_LEAST_3_26
  34. bool
  35. select BR2_HOST_CMAKE_AT_LEAST_3_25
  36. config BR2_HOST_CMAKE_AT_LEAST_3_27
  37. bool
  38. select BR2_HOST_CMAKE_AT_LEAST_3_26
  39. config BR2_HOST_CMAKE_AT_LEAST_3_28
  40. bool
  41. select BR2_HOST_CMAKE_AT_LEAST_3_27
  42. # This order guarantees that the highest version is set, as kconfig
  43. # stops affecting a value on the first matching default.
  44. config BR2_HOST_CMAKE_AT_LEAST
  45. string
  46. default "3.28" if BR2_HOST_CMAKE_AT_LEAST_3_28
  47. default "3.27" if BR2_HOST_CMAKE_AT_LEAST_3_27
  48. default "3.26" if BR2_HOST_CMAKE_AT_LEAST_3_26
  49. default "3.25" if BR2_HOST_CMAKE_AT_LEAST_3_25
  50. default "3.24" if BR2_HOST_CMAKE_AT_LEAST_3_24
  51. default "3.23" if BR2_HOST_CMAKE_AT_LEAST_3_23
  52. default "3.22" if BR2_HOST_CMAKE_AT_LEAST_3_22
  53. default "3.21" if BR2_HOST_CMAKE_AT_LEAST_3_21
  54. default "3.20" if BR2_HOST_CMAKE_AT_LEAST_3_20
  55. default "3.19" if BR2_HOST_CMAKE_AT_LEAST_3_19
  56. default "3.18"