python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / flann / Config.in
bloba2cd50c86734e151d144ae3521f5a8aa7ef17341
1 config BR2_PACKAGE_FLANN
2         bool "flann"
3         depends on BR2_INSTALL_LIBSTDCPP
4         depends on !BR2_STATIC_LIBS
5         # all gcc versions fail to build flann on Microblaze due to
6         # gcc bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69401
7         depends on !BR2_microblaze
8         help
9           FLANN is a library for performing fast approximate nearest
10           neighbor searches in high dimensional spaces. It contains a
11           collection of algorithms we found to work best for nearest
12           neighbor search and a system for automatically choosing the
13           best algorithm and optimum parameters depending on the
14           dataset.
16           http://www.cs.ubc.ca/research/flann/
18 if BR2_PACKAGE_FLANN
20 config BR2_PACKAGE_FLANN_EXAMPLES
21         bool "flann examples"
22         help
23           Build and install flann example applications.
25 endif
27 comment "flann needs a toolchain w/ C++, dynamic library"
28         depends on !BR2_microblaze
29         depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS