Config.in 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. config BR2_PACKAGE_LIBSPATIALINDEX
  2. bool "libspatialindex"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
  5. help
  6. The purpose of libspatialindex is to provide:
  7. * An extensible framework that will support robust spatial
  8. indexing methods.
  9. * Support for sophisticated spatial queries. Range, point
  10. location, nearest neighbor and k-nearest neighbor as well
  11. as parametric queries (defined by spatial constraints)
  12. should be easy to deploy and run.
  13. * Easy to use interfaces for inserting, deleting and updating
  14. information.
  15. * Wide variety of customization capabilities. Basic index and
  16. storage characteristics like the page size, node capacity,
  17. minimum fan-out, splitting algorithm, etc. should be easy
  18. to customize.
  19. * Index persistence. Internal memory and external memory
  20. structures should be supported. Clustered and non-clustered
  21. indices should be easy to be persisted.
  22. https://libspatialindex.github.io
  23. comment "libspatialindex needs a toolchain w/ C++, gcc >= 4.7"
  24. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7