From ac93dc9b2c24cee5a630cd2b6ce3b76bc2eebe9b Mon Sep 17 00:00:00 2001 From: Jim Evins Date: Sat, 18 Jan 2020 07:47:26 -0500 Subject: [PATCH] Disable Zint barcode backend for zint-2.7.x (#86) - New zint API is incompatible, may eventually create a compatible backend --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e03fcb2e..b10c4239 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -126,7 +126,7 @@ endif () find_package (ZLIB 1.2 QUIET) find_package (GnuBarcode 0.98 QUIET) find_package (LibQrencode 3.4 QUIET) -find_package (LibZint 2.6 QUIET) +find_package (LibZint 2.6 EXACT QUIET) # Unit testing support find_package (Qt5Test 5.4 QUIET)