37f197f863
quazip requires cmake 3.15 since version 1.0 and89e7c201f0
818adc8224
The rationale for this requirement is that "default locations for the install(TARGETS command based on the GNUInstallDirs package were only added in 3.14" and "3.15 is not that much of a difference from 3.14 and it introduced a lot of useful UI improvements.": https://github.com/stachenov/quazip/issues/82 Fixes: - http://autobuild.buildroot.org/results/5d848a46109aef448ea1d1b857a500d9461dc2d9 Note: we also have some patches to allow some packages to build with cmake-3.10, and this will not be tenable over the long run. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> [yann.morin.1998@free.fr: add the "note"] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
15 lines
534 B
Makefile
15 lines
534 B
Makefile
# Set this to either 3.15 or higher, depending on the highest minimum
|
|
# version required by any of the packages bundled in Buildroot. If a
|
|
# package is bumped or a new one added, and it requires a higher
|
|
# version, our cmake infra will catch it and build its own.
|
|
#
|
|
BR2_CMAKE_VERSION_MIN = 3.15
|
|
|
|
BR2_CMAKE_CANDIDATES ?= cmake cmake3
|
|
BR2_CMAKE ?= $(call suitable-host-package,cmake,\
|
|
$(BR2_CMAKE_VERSION_MIN) $(BR2_CMAKE_CANDIDATES))
|
|
ifeq ($(BR2_CMAKE),)
|
|
BR2_CMAKE = $(HOST_DIR)/bin/cmake
|
|
BR2_CMAKE_HOST_DEPENDENCY = host-cmake
|
|
endif
|