A QRCode generator application created with C using my onw C-Utils header, QREncode and STB Image Write headers.
Compatible with:
- Windows.
- Linux.
- Mac OS (not tested yet, if you can test it, send an e-mail to contactpaulao@gmail.com or send an issue).
GCC(orMingw GCCfor Windows).CMaketo build the project.Ninja(orMingw Ninjafor Windows) to helpCMaketo make the executable file.
Windows:
- Press
Windows + R, typecmdand pressCtrl + Shift + Enter, then open it in administrator mode. - Type into cmd
winget install --id="Kitware.CMake" && winget install --id="MSYS2.MSYS2". - Now after install CMake and MSYS2 press
Windows + Rand typemingw64ormingw32for 32 bits, then pressCtrl + Shift + Enterto open it as an administrator. - Now on Mingw Shell type
pacman -Syyuit will probably say to quit after update soo you will pressyto quit and enter in Mingw Shell again and typepacman -S mingw-w64-x86_64-gcc mingw-w64-x86_64-ninja --needed. - Now you just need to build the project.
Linux:
- Install
GCC,CMake,Ninjawith the Package Manager of the Distribution. - Build the project.
macOS:
- Install a MacPort for your current macOS distro.
- Enter in terminal and type
sudo port selfupdate && sudo port install cmake gcc ninja.
- Create a directory named
./buildwith terminal. - Enter into the
./builddirectory. - Type
cmake .. -G Ninjain./builddirectory to make the./build/build.ninjafile. - Type
ninjain./buildto run./build/build.ninjaand create the executable in./build/bin.
Created by: @paulao255.