You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
QR-Code-generator/cpp
Le Xuan Quynh 741232ed4a
make build for iOS
1 year ago
..
CMakeLists.txt make build for iOS 1 year ago
Makefile Renamed C++ output library file, avoiding conflict with C library if both get installed system-wide. 5 years ago
QrCodeGeneratorDemo.cpp Renamed the C++ library source files to qrcodegen, because there's no longer a file per class, related to commit 096c70cd4d. 5 years ago
README.md make build for iOS 1 year ago
Readme.markdown - In the project (top-level) readme file, kept one language's code example and moved all others out to language-specific readme files. 4 years ago
qrcodegen.cpp Slightly simplified the calculation of alignment pattern spacing in a non-obvious way, adapted from David Evans's "Lean QR" project. 1 year ago
qrcodegen.hpp Reordered QrSegment.{isNumeric(),isAlphanumeric()} in {C, C++, Rust} versions. 5 years ago

README.md

How to build for iOS:

cd cpp
cmake -B build -G Xcode -DCMAKE_TOOLCHAIN_FILE=../../ios.toolchain.cmake -DPLATFORM=OS64
cmake --build build --config Release

How to build for simulator:

cd cpp
cmake -B build -G Xcode -DCMAKE_TOOLCHAIN_FILE=../../ios.toolchain.cmake -DPLATFORM=SIMULATORARM64
cmake --build build --config Release