Config.in.host 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. # This order guarantees that the highest version is set, as kconfig
  25. # stops affecting a value on the first matching default.
  26. config BR2_HOST_CMAKE_AT_LEAST
  27. string
  28. default "3.22" if BR2_HOST_CMAKE_AT_LEAST_3_22
  29. default "3.21" if BR2_HOST_CMAKE_AT_LEAST_3_21
  30. default "3.20" if BR2_HOST_CMAKE_AT_LEAST_3_20
  31. default "3.19" if BR2_HOST_CMAKE_AT_LEAST_3_19
  32. default "3.18"