You've already forked M5Stack_Linux_Libs
mirror of
https://github.com/m5stack/M5Stack_Linux_Libs.git
synced 2026-05-20 11:01:38 -07:00
29 lines
826 B
Plaintext
29 lines
826 B
Plaintext
menuconfig STATIC_PACKAGE_ENABLED
|
|
bool "static_package configuration"
|
|
default n
|
|
|
|
menuconfig OPENCV_LIB_ENABLED
|
|
bool "opencv lib"
|
|
default n
|
|
depends on STATIC_PACKAGE_ENABLED
|
|
help
|
|
include opencv lib(from gcc)
|
|
|
|
choice
|
|
prompt "opencv versions"
|
|
default OPENCV_LIB_NCNN_ENABLED
|
|
depends on OPENCV_LIB_ENABLED
|
|
config OPENCV_LIB_AXERA_ENABLED
|
|
bool "include opencv-arm-linux lib"
|
|
help
|
|
build by AXERA!
|
|
config OPENCV_LIB_NCNN_ENABLED
|
|
bool "include opencv-mobile-2.4.13.7-armlinux lib"
|
|
help
|
|
build by NCNN!
|
|
endchoice
|
|
|
|
config GRPC_LIB_ENABLED
|
|
bool "grpc static lib"
|
|
default n
|
|
depends on STATIC_PACKAGE_ENABLED |