Skip to content

Commit 5e20475

Browse files
committed
cmake: reorganize BUILD_WRITER options
Build with old and/or new writer (encoder) backend (OFF/ON/OLD/NEW/BOTH) The default value ON is currently mapped to OLD (MultiFormatWriter). The value NEW means use libzint as the writer backend but that only takes effect if BUILD_EXPERIMENTAL_API is ON as well.
1 parent 29fb3cf commit 5e20475

11 files changed

+240
-172
lines changed

CMakeLists.txt

+6-10
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ cmake_minimum_required(VERSION 3.15)
22

33
project(ZXing)
44

5-
option (BUILD_WRITERS "Build with writer support (encoders)" ON)
5+
# option (BUILD_WRITERS "Build with writer support (encoders)" ON)
6+
set(BUILD_WRITERS "ON" CACHE STRING "Build with old and/or new writer (encoder) backend (OFF/ON/OLD/NEW/BOTH)")
67
option (BUILD_READERS "Build with reader support (decoders)" ON)
78
option (BUILD_EXAMPLES "Build the example barcode reader/writer applications" ON)
89
option (BUILD_BLACKBOX_TESTS "Build the black box reader/writer tests" OFF)
910
option (BUILD_UNIT_TESTS "Build the unit tests (don't enable for production builds)" OFF)
1011
option (BUILD_PYTHON_MODULE "Build the python module" OFF)
1112
option (BUILD_C_API "Build the C-API" OFF)
1213
option (BUILD_EXPERIMENTAL_API "Build with experimental API" OFF)
13-
option (ZXING_USE_ZINT "Use libzint for barcode creation/generation" OFF)
1414
set(BUILD_DEPENDENCIES "AUTO" CACHE STRING "Fetch from github or use locally installed (AUTO/GITHUB/LOCAL)")
1515

1616
if (WIN32)
@@ -48,14 +48,10 @@ if (BUILD_UNIT_TESTS AND (NOT BUILD_WRITERS OR NOT BUILD_READERS))
4848
set (BUILD_READERS ON)
4949
endif()
5050

51-
if (ZXING_USE_ZINT)
52-
set (BUILD_EXPERIMENTAL_API ON)
53-
add_definitions (-DZXING_USE_ZINT)
54-
endif()
55-
56-
if (BUILD_EXPERIMENTAL_API)
57-
set (CMAKE_CXX_STANDARD 20)
58-
add_definitions (-DZXING_BUILD_EXPERIMENTAL_API)
51+
set(BUILD_WRITERS_LIST OFF ON OLD NEW BOTH)
52+
set_property(CACHE BUILD_WRITERS PROPERTY STRINGS ${BUILD_WRITERS_LIST})
53+
if(NOT BUILD_WRITERS IN_LIST BUILD_WRITERS_LIST)
54+
message(FATAL_ERROR "BUILD_WRITERS must be one of ${BUILD_WRITERS_LIST}")
5955
endif()
6056

6157
set(BUILD_DEPENDENCIES_LIST AUTO GITHUB LOCAL)

0 commit comments

Comments
 (0)