Skip to content

BlackPeter13/armor-gui

 
 

Repository files navigation

armor-gui

How to build binaries from source code

Windows

To build the gui you must have built armor core, so please do all steps from here before proceed. Install QtCreator, open the project file armor-gui/src/armor-gui.pro in QtCreator and build it using MSVS kit (you must have MSVS installed already to build armor core).

MacOS

To build the gui you must have built armor core, so please do all steps from here before proceed. Install QtCreator, open the project file armor-gui/src/armor-gui.pro in QtCreator and build it using clang kit (you must have XCode installed already to build armor core).

Linux

# To install all required packages on Ubuntu use the following command:
$ sudo apt install qt5-qmake qtbase5-dev qtbase5-dev-tools

$ git clone https://github.com/Armor-Network/armor.git
$ cd armor
$ mkdir -p build
$ cd build
$ cmake ..
$ make -j4 armor-crypto
$ cd ../..
$ git clone https://github.com/BlackPeter13/armor-gui.git
$ cd armor-gui
$ mkdir -p build
$ cd build
$ cmake ..
$ make -j4

Alternative way:

# Install QtCreator:
$ sudo apt install qtcreator

$ git clone https://github.com/Armor-Network/armor.git
$ cd armor
$ mkdir -p build
$ cd build
$ cmake ..
$ make -j4 armor-crypto
$ cd ../..
$ git clone https://github.com/BlackPeter13/armor-gui.git

Now open the project file armor-gui/src/armor-gui.pro in QtCreator and build it.

About

GUI-wallet for Armor

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 98.5%
  • QMake 1.3%
  • CMake 0.2%