Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eddytheco/esterv.utils.qrcode
QRCode C++/QML methods
https://github.com/eddytheco/esterv.utils.qrcode
decoder encoder qml qml-module qrcode webassemby
Last synced: 28 days ago
JSON representation
QRCode C++/QML methods
- Host: GitHub
- URL: https://github.com/eddytheco/esterv.utils.qrcode
- Owner: EddyTheCo
- License: gpl-3.0
- Created: 2022-08-18T08:03:53.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-13T10:20:45.000Z (3 months ago)
- Last Synced: 2024-12-14T07:16:50.622Z (28 days ago)
- Topics: decoder, encoder, qml, qml-module, qrcode, webassemby
- Language: C++
- Homepage: https://eddytheco.github.io/Esterv.Utils.QrCode/
- Size: 190 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# qrCode
[TOC]
This repository is intended to provide a library for working with QR codes from c++. The main purpose is to exploit modern CMake and facilitate reuse and develop.
The GUI part will be based on Qt libraries and QML. Examples of this library compiled for Web Assembly can be found on:
- [QtQrGen](https://eddytheco.github.io/qmlonline/?example_url=qt_qr_gen)
- [QtQrDec](https://eddytheco.github.io/qmlonline/?example_url=qt_qr_dec)## Adding the libraries to your CMake project
```CMake
include(FetchContent)
FetchContent_Declare(
qrCode
GIT_REPOSITORY https://github.com/EddyTheCo/qrCode.git
GIT_TAG vMAJOR.MINOR.PATCH
FIND_PACKAGE_ARGS MAJOR.MINOR CONFIG
)
FetchContent_MakeAvailable(qrCode)target_link_libraries( qrCode::QrGen qrCode::QtQrGen qrCode::QrDec qrCode::QtQrDec)
```
For more information check- [QrGen](QrGen/README.md)
- [QrDec](QrDec/README.md)
- [QtQrGen](QtQrGen/README.md)
- [QtQrDec](QtQrDec/README.md)## API reference
You can read the [API reference](https://eddytheco.github.io/qrCode/) here, or generate it yourself like
```
cmake -DBUILD_DOCS=ON ../
cmake --build . --target doxygen_docs
```## Contributing
We appreciate any contribution!
You can open an issue or request a feature.
You can open a PR to the `develop` branch and the CI/CD will take care of the rest.
Make sure to acknowledge your work, and ideas when contributing.