EstervQrCode 1.1.1
Library for qr code manipulation

The code is based on QR Code generator library and produce a library for the generation of a QR code of certain data.

Adding the libraries to your CMake project

include(FetchContent)
FetchContent_Declare(
EstervQrCode
GIT_REPOSITORY https://github.com/EddyTheCo/Esterv.Utils.QrCode.git
GIT_TAG vMAJOR.MINOR.PATCH
FIND_PACKAGE_ARGS MAJOR.MINOR COMPONENTS EstervQrGen EstervQrGen-dev CONFIG
)
FetchContent_MakeAvailable(EstervQrCode)
target_link_libraries(<target> <PRIVATE|PUBLIC|INTERFACE> Esterv::QrGen)