|
@@ -10,6 +10,7 @@ config BR2_PACKAGE_ZXING_CPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_STB
|
|
select BR2_PACKAGE_STB
|
|
select BR2_PACKAGE_PYTHON_PYBIND if BR2_PACKAGE_PYTHON3
|
|
select BR2_PACKAGE_PYTHON_PYBIND if BR2_PACKAGE_PYTHON3
|
|
|
|
+ select BR2_PACKAGE_ZXING_CPP_READERS if !BR2_PACKAGE_ZXING_CPP_WRITERS
|
|
help
|
|
help
|
|
ZXing-cpp (pronounced "zebra crossing") is an open-source,
|
|
ZXing-cpp (pronounced "zebra crossing") is an open-source,
|
|
multi-format 1D/2D barcode image processing library
|
|
multi-format 1D/2D barcode image processing library
|
|
@@ -17,3 +18,19 @@ config BR2_PACKAGE_ZXING_CPP
|
|
compiles the C++ port.
|
|
compiles the C++ port.
|
|
|
|
|
|
https://github.com/zxing-cpp/zxing-cpp
|
|
https://github.com/zxing-cpp/zxing-cpp
|
|
|
|
+
|
|
|
|
+if BR2_PACKAGE_ZXING_CPP
|
|
|
|
+
|
|
|
|
+config BR2_PACKAGE_ZXING_CPP_READERS
|
|
|
|
+ bool "readers support"
|
|
|
|
+ default y
|
|
|
|
+ help
|
|
|
|
+ Build with readers (decoders) support
|
|
|
|
+
|
|
|
|
+config BR2_PACKAGE_ZXING_CPP_WRITERS
|
|
|
|
+ bool "writers support"
|
|
|
|
+ default y
|
|
|
|
+ help
|
|
|
|
+ Build with writers (encoders) support
|
|
|
|
+
|
|
|
|
+endif # BR2_PACKAGE_ZXING_CPP
|