f3248d0b5c
opencv and qt handling can be dropped since switch to an active fork in commit456a739831
as they are only used when examples are enabled resulting in the following warning: CMake Warning: Manually-specified variables were not used by the project: BUILD_DOC BUILD_DOCS BUILD_EXAMPLE BUILD_TEST BUILD_TESTING BUILD_TESTS CMAKE_DISABLE_FIND_PACKAGE_OpenCV CMAKE_DISABLE_FIND_PACKAGE_Qt5 While at it, also drop BUILD_EXAMPLES which is already passed by pkg-cmake.mk Fixes:456a739831
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> (cherry picked from commitfd64c544d3
) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
32 lines
987 B
Makefile
32 lines
987 B
Makefile
################################################################################
|
|
#
|
|
# zxing-cpp
|
|
#
|
|
################################################################################
|
|
|
|
ZXING_CPP_VERSION = 2.1.0
|
|
ZXING_CPP_SITE = $(call github,zxing-cpp,zxing-cpp,v$(ZXING_CPP_VERSION))
|
|
ZXING_CPP_LICENSE = Apache-2.0
|
|
ZXING_CPP_LICENSE_FILES = LICENSE
|
|
ZXING_CPP_INSTALL_STAGING = YES
|
|
ZXING_CPP_SUPPORTS_IN_SOURCE_BUILD = NO
|
|
ZXING_CPP_DEPENDENCIES = host-pkgconf stb
|
|
ZXING_CPP_CONF_OPTS = \
|
|
-DBUILD_READERS=ON \
|
|
-DBUILD_WRITERS=ON \
|
|
-DBUILD_BLACKBOX_TESTS=OFF \
|
|
-DBUILD_UNIT_TESTS=OFF \
|
|
-DBUILD_DEPENDENCIES=LOCAL
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON3)$(BR2_PACKAGE_PYTHON_PYBIND),yy)
|
|
ZXING_CPP_DEPENDENCIES += python3 python-pybind
|
|
ZXING_CPP_CONF_OPTS += \
|
|
-DBUILD_PYTHON_MODULE=ON \
|
|
-DPYTHON_EXECUTABLE=$(HOST_DIR)/bin/python3 \
|
|
-DPYTHON_INCLUDE_DIRS=$(STAGING_DIR)/usr/include/python$(PYTHON3_VERSION_MAJOR)
|
|
else
|
|
ZXING_CPP_CONF_OPTS += -DBUILD_PYTHON_MODULE=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|