|
@@ -51,10 +51,20 @@ config BR2_HOST_CMAKE_AT_LEAST_3_28
|
|
bool
|
|
bool
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_27
|
|
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
|
|
|
|
+
|
|
# This order guarantees that the highest version is set, as kconfig
|
|
# This order guarantees that the highest version is set, as kconfig
|
|
# stops affecting a value on the first matching default.
|
|
# stops affecting a value on the first matching default.
|
|
config BR2_HOST_CMAKE_AT_LEAST
|
|
config BR2_HOST_CMAKE_AT_LEAST
|
|
string
|
|
string
|
|
|
|
+ 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.28" if BR2_HOST_CMAKE_AT_LEAST_3_28
|
|
default "3.27" if BR2_HOST_CMAKE_AT_LEAST_3_27
|
|
default "3.27" if BR2_HOST_CMAKE_AT_LEAST_3_27
|
|
default "3.26" if BR2_HOST_CMAKE_AT_LEAST_3_26
|
|
default "3.26" if BR2_HOST_CMAKE_AT_LEAST_3_26
|