Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 586 Bytes

README.md

File metadata and controls

27 lines (15 loc) · 586 Bytes

Esterv.Utils.QrGen

[TOC]

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 QrGen CONFIG
)
FetchContent_MakeAvailable(EstervQrCode)

target_link_libraries(<target> <PRIVATE|PUBLIC|INTERFACE> Esterv::QrGen)