Skip to content

fabenial/FabenialCoin-GUI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fabenial GUI

How to build binaries from source code

Windows

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

MacOS

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

Alternative way:

# Install QtCreator:
$ sudo apt install qtcreator

$ git clone https://github.com/fabenial/FabenialCoin.git fabenial_core
$ cd fabenial_core
$ mkdir -p build
$ cd build
$ cmake ..
$ make -j4
$ cd ../..
$ git clone https://github.com/fabenial/FabenialCoin-GUI.git fabenial_gui

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

Releases

No releases published

Packages

No packages published

Languages