1*4882a593Smuzhiyunconfig BR2_PACKAGE_LIBCAMERA_APPS 2*4882a593Smuzhiyun bool "libcamera-apps" 3*4882a593Smuzhiyun depends on BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS # libcamera 4*4882a593Smuzhiyun depends on BR2_INSTALL_LIBSTDCPP # libcamera/boost 5*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_THREADS # libcamera/boost 6*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_GCC_AT_LEAST_8 # libcamera 7*4882a593Smuzhiyun depends on !BR2_STATIC_LIBS # gnutls/libcamera 8*4882a593Smuzhiyun depends on BR2_USE_WCHAR # gnutls/libcamera/boost 9*4882a593Smuzhiyun select BR2_PACKAGE_BOOST 10*4882a593Smuzhiyun select BR2_PACKAGE_BOOST_PROGRAM_OPTIONS 11*4882a593Smuzhiyun select BR2_PACKAGE_JPEG 12*4882a593Smuzhiyun select BR2_PACKAGE_LIBCAMERA 13*4882a593Smuzhiyun select BR2_PACKAGE_LIBEXIF 14*4882a593Smuzhiyun select BR2_PACKAGE_LIBPNG 15*4882a593Smuzhiyun select BR2_PACKAGE_TIFF 16*4882a593Smuzhiyun select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7 && (BR2_PACKAGE_HAS_LIBEGL || BR2_PACKAGE_HAS_LIBGL) 17*4882a593Smuzhiyun select BR2_PACKAGE_LIBDRM if BR2_PACKAGE_XORG7 && (BR2_PACKAGE_HAS_LIBEGL || BR2_PACKAGE_HAS_LIBGL) 18*4882a593Smuzhiyun select BR2_PACKAGE_LIBEPOXY if BR2_PACKAGE_XORG7 && (BR2_PACKAGE_HAS_LIBEGL || BR2_PACKAGE_HAS_LIBGL) 19*4882a593Smuzhiyun select BR2_PACKAGE_QT5BASE_GUI if BR2_PACKAGE_QT5 20*4882a593Smuzhiyun select BR2_PACKAGE_QT5BASE_WIDGETS if BR2_PACKAGE_QT5 21*4882a593Smuzhiyun help 22*4882a593Smuzhiyun This is a small suite of libcamera-based apps that aim to copy 23*4882a593Smuzhiyun the functionality of the existing "raspicam" apps. 24*4882a593Smuzhiyun 25*4882a593Smuzhiyun https://github.com/raspberrypi/libcamera-apps 26*4882a593Smuzhiyun 27*4882a593Smuzhiyuncomment "libcamera-apps needs a toolchain w/ C++, threads, wchar, dynamic library, gcc >= 8" 28*4882a593Smuzhiyun depends on BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS 29*4882a593Smuzhiyun depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ 30*4882a593Smuzhiyun !BR2_TOOLCHAIN_GCC_AT_LEAST_8 || BR2_STATIC_LIBS || !BR2_USE_WCHAR 31