aea1a0e5a3
Switch from using BR2_GCC_ENABLE_OPENMP to BR2_TOOLCHAIN_HAS_OPENMP to determine OpenMP support in the following packages: fftw flann opencv3 Signed-off-by: Ed Blake <ed.blake@sondrel.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
666 B
Makefile
22 lines
666 B
Makefile
################################################################################
|
|
#
|
|
# flann
|
|
#
|
|
################################################################################
|
|
|
|
FLANN_VERSION = 1.9.1
|
|
FLANN_SITE = $(call github,mariusmuja,flann,$(FLANN_VERSION))
|
|
FLANN_INSTALL_STAGING = YES
|
|
FLANN_LICENSE = BSD-3-Clause
|
|
FLANN_LICENSE_FILES = COPYING
|
|
FLANN_CONF_OPTS = \
|
|
-DBUILD_C_BINDINGS=ON \
|
|
-DBUILD_PYTHON_BINDINGS=OFF \
|
|
-DBUILD_MATLAB_BINDINGS=OFF \
|
|
-DBUILD_EXAMPLES=$(if $(BR2_PACKAGE_FLANN_EXAMPLES),ON,OFF) \
|
|
-DUSE_OPENMP=$(if $(BR2_TOOLCHAIN_HAS_OPENMP),ON,OFF) \
|
|
-DPYTHON_EXECUTABLE=OFF \
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_HDF5=TRUE
|
|
|
|
$(eval $(cmake-package))
|