Config.in 724 B

12345678910111213141516171819202122232425
  1. config BR2_PACKAGE_FLANN
  2. bool "flann"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on !BR2_STATIC_LIBS
  5. help
  6. FLANN is a library for performing fast approximate nearest
  7. neighbor searches in high dimensional spaces. It contains a
  8. collection of algorithms we found to work best for nearest
  9. neighbor search and a system for automatically choosing the
  10. best algorithm and optimum parameters depending on the
  11. dataset.
  12. http://www.cs.ubc.ca/research/flann/
  13. if BR2_PACKAGE_FLANN
  14. config BR2_PACKAGE_FLANN_EXAMPLES
  15. bool "flann examples"
  16. help
  17. Build and install flann example applications.
  18. endif
  19. comment "flann needs a toolchain w/ C++, dynamic library"
  20. depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS