Follow this document to build the application on your platform
Qt libraries and Qt Creator Download the Qt for your platform Qt offline installer and install it. Visual studio 2017 or 2019 (for Windows)
Notes:
- Qt version 5.12 or higher is recommended
- Windows Select compiler MSCV 2017 (or 2019) 64 - bit (or 32 bit depends on your OS)
- Linux: Compiler GCC 64 or 32
- MAC: Compiler GCC 64 or 32 (macOS)
git clone https://github.com/nunchuk-io/key-utils.git
cd key-utils
git submodule update --init --recursive
Open Qt Creator
Open key-utils project via CMakeLists.txt
Select your Kit (include compiler) : Desktop Qt %{Qt:Version} GCC 64bit, (such as Desktop Qt 5.12.8 GCC 64bit)
Run qmake
Build
...
Run the application
cd key-utils
mkdir build
cd build
cmake ../
make -j8