Skip to content

BitsumFoundation/bitsum_gui

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bitsum GUI

How to build binaries from source code

Windows

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

MacOS

To build the gui you must have built bitsum core, so please do all steps from here before proceed. Install QtCreator, open the project file bitsum_gui/src/bitsum-gui.pro in QtCreator and build it using clang kit (you must have XCode installed already to build bitsum 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/BitsumFoundation/bitsum_core.git
$ cd bitsum
$ mkdir -p build
$ cd build
$ cmake ..
$ make -j4 bitsum-crypto
$ cd ../..
$ git clone https://github.com/BitsumFoundation/bitsum_gui.git
$ cd bitsum_gui
$ mkdir -p build
$ cd build
$ cmake ..
$ make -j4

Alternative way:

# Install QtCreator:
$ sudo apt install qtcreator

$ git clone https://github.com/BitsumFoundation/bitsum_core.git
$ cd bitsum
$ mkdir -p build
$ cd build
$ cmake ..
$ make -j4 bitsum-crypto
$ cd ../..
$ git clone https://github.com/BitsumFoundation/bitsum_gui.git

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 97.1%
  • QMake 1.3%
  • Other 1.6%