Config.in 748 B

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