cash2ecash

cash2ecash: cash acceptor that issues digital cash (experimental)
Log | Files | Refs | README | LICENSE

commit 24170a13d19422dc453db11592192ad2c823b636
parent f6533b68a9fc14936fa9f892b2fad47231febfe7
Author: Tellenbach Reto <tellr1@bfh.ch>
Date:   Tue,  2 Jun 2026 19:20:22 +0200

[dbg] thinker_QRCode: get correct config and options

Diffstat:
Mthinker/qr_code/CMakeLists.txt | 10++--------
Athinker/qr_code/src/CMakeLists.txt | 3+++
Rthinker/qr_code/taler-mdb-qr-show.c -> thinker/qr_code/src/taler-digitizer-qr-show.c | 0
Rthinker/qr_code/taler_digitizer_util.h -> thinker/qr_code/src/taler_digitizer_util.h | 0
4 files changed, 5 insertions(+), 8 deletions(-)

diff --git a/thinker/qr_code/CMakeLists.txt b/thinker/qr_code/CMakeLists.txt @@ -1,4 +1,3 @@ -#Project Config cmake_minimum_required(VERSION 3.13) project(QRshow LANGUAGES C ) @@ -7,11 +6,6 @@ set(CMAKE_C_STANDARD 17) set(CMAKE_C_STANDARD_REQUIRED ON) set(CMAKE_C_EXTENSIONS ON) -# Librarys -## Defining Librarys -##add_library(gpiod gpiod_wrapper.c) -add_executable(QRshow taler-mdb-qr-show.c) +add_executable(QRshow src/taler-digitizer-qr-show.c) -## Linking Targets -target_link_libraries(QRshow PUBLIC gnunetutil talerutil - PRIVATE qrencode) +add_subdirectory(src) diff --git a/thinker/qr_code/src/CMakeLists.txt b/thinker/qr_code/src/CMakeLists.txt @@ -0,0 +1,3 @@ +## Linking Targets +target_link_libraries(QRshow PUBLIC gnunetutil talerutil + PRIVATE qrencode) diff --git a/thinker/qr_code/taler-mdb-qr-show.c b/thinker/qr_code/src/taler-digitizer-qr-show.c diff --git a/thinker/qr_code/taler_digitizer_util.h b/thinker/qr_code/src/taler_digitizer_util.h