mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Signed-off-by: Roy Kollen Svendsen <roykollensvendsen@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
18 lines
501 B
Plaintext
18 lines
501 B
Plaintext
config BR2_PACKAGE_DLIB
|
|
bool "dlib"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_WCHAR
|
|
help
|
|
Dlib is a modern C++ toolkit containing machine learning
|
|
algorithms and tools for creating complex software in C++ to
|
|
solve real world problems.
|
|
|
|
https://dlib.net
|
|
https://github.com/davisking/dlib
|
|
|
|
comment "dlib needs a toolchain w/ C++, threads, wchar"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_USE_WCHAR
|