1config BR2_PACKAGE_ASSIMP 2 bool "assimp" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_USE_WCHAR 5 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 6 select BR2_PACKAGE_ZLIB 7 select BR2_PACKAGE_ZLIB_FORCE_LIBZLIB 8 help 9 Open Asset Import Library (assimp) is a portable Open Source 10 library to import various well-known 3D model formats in a 11 uniform manner. The most recent version also knows how to 12 export 3d files and is therefore suitable as a general-purpose 13 3D model converter. 14 15 http://www.assimp.org 16 17comment "assimp needs a toolchain w/ C++, wchar, gcc >= 7" 18 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR \ 19 || !BR2_TOOLCHAIN_GCC_AT_LEAST_7 20