source "package/eigen/Config.in"
source "package/elfutils/Config.in"
source "package/fftw/Config.in"
+source "package/flann/Config.in"
source "package/glibmm/Config.in"
source "package/gmp/Config.in"
source "package/gsl/Config.in"
--- /dev/null
+config BR2_PACKAGE_FLANN
+ bool "flann"
+ depends on BR2_INSTALL_LIBSTDCPP
+ help
+ FLANN is a library for performing fast approximate nearest
+ neighbor searches in high dimensional spaces. It contains a
+ collection of algorithms we found to work best for nearest
+ neighbor search and a system for automatically choosing the
+ best algorithm and optimum parameters depending on the
+ dataset.
+
+ http://www.cs.ubc.ca/research/flann/
+
+if BR2_PACKAGE_FLANN
+
+config BR2_PACKAGE_FLANN_EXAMPLES
+ bool "flann examples"
+ help
+ Build and install flann example applications.
+
+endif
+
+comment "flann needs a toolchain w/ C++"
+ depends on !BR2_INSTALL_LIBSTDCPP
--- /dev/null
+###############################################################################
+#
+# flann
+#
+###############################################################################
+
+FLANN_VERSION = d0c04f4d290ebc3aa9411a3322992d298e51f5aa
+FLANN_SITE = $(call github,mariusmuja,flann,$(FLANN_VERSION))
+FLANN_INSTALL_STAGING = YES
+FLANN_LICENSE = BSD-3c
+FLANN_LICENSE_FILES = COPYING
+FLANN_CONF_OPT = \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DBUILD_C_BINDINGS=ON \
+ -DBUILD_PYTHON_BINDINGS=OFF \
+ -DBUILD_MATLAB_BINDINGS=OFF \
+ -DBUILD_EXAMPLES=$(if $(BR2_PACKAGE_FLANN_EXAMPLES),ON,OFF) \
+ -DBUILD_TESTS=OFF \
+ -DBUILD_DOC=OFF \
+ -DUSE_OPENMP=$(if $(BR2_GCC_ENABLE_OPENMP),ON,OFF) \
+ -DPYTHON_EXECUTABLE=OFF
+
+$(eval $(cmake-package))