a4fec34ba2
libjxl requires cmake 3.19 since version v0.7 due to the
new behavior of cmake [1].
-- Configuring done
CMake Error at cmake/FindLCMS2.cmake:40 (add_library):
INTERFACE_LIBRARY targets may only have whitelisted properties. The
property "INCLUDE_DIRECTORIES" is not allowed.
Call Stack (most recent call first):
third_party/CMakeLists.txt:114 (find_package)
The portability issue has already been reported upstream [2].
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/4322819095
[1] afb998704e
[2] https://github.com/libjxl/libjxl/issues/1425
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Julien Olivain <ju.o@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
27 lines
884 B
Plaintext
27 lines
884 B
Plaintext
config BR2_PACKAGE_LIBJXL
|
|
bool "libjxl"
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # highway
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC # highway
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_INSTALL_LIBSTDCPP # highway
|
|
# libjxl fail to link statically due to libatomic issue
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_81426
|
|
select BR2_HOST_CMAKE_AT_LEAST_3_19
|
|
select BR2_PACKAGE_BROTLI
|
|
select BR2_PACKAGE_HIGHWAY
|
|
select BR2_PACKAGE_LCMS2
|
|
help
|
|
libjxl is the reference implementation of JPEG XL (encoder
|
|
and decoder).
|
|
|
|
https://github.com/libjxl/libjxl
|
|
|
|
comment "libjxl needs a toolchain with C++, threads, gcc >= 7, dynamic library"
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_81426
|
|
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_7 || \
|
|
!BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
|
BR2_STATIC_LIBS
|