Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 522 Bytes

README.md

File metadata and controls

24 lines (14 loc) · 522 Bytes

QrGen

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(
	qrCode
	GIT_REPOSITORY https://github.com/EddyTheCo/qrCode.git
	GIT_TAG v1.0.0 
	FIND_PACKAGE_ARGS 1.0 COMPONENTS QrGen CONFIG  
)
FetchContent_MakeAvailable(qrCode)

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