-
Notifications
You must be signed in to change notification settings - Fork 206
How to build
- Install Visual Studio >= 2017 with CMake support.
- Download and install Boost prebuilt binaries https://sourceforge.net/projects/boost/files/boost-binaries/1.68.0/boost_1_68_0-msvc-14.1-64.exe, also add
BOOST_ROOT
to the Environment Variables. - Download and install OpenSSL prebuilt binaries https://slproweb.com/products/Win32OpenSSL.html (
Win64 OpenSSL v1.1.0h
for example) and addOPENSSL_ROOT_DIR
to the Environment Variables. - Download and install QT 5.11 https://download.qt.io/official_releases/qt/5.11/5.11.0/qt-opensource-windows-x86-5.11.0.exe.mirrorlist and add
QT5_ROOT_DIR
to the Environment Variables (usually it looks like.../5.11.0/msvc2017_64
), also addQML_IMPORT_PATH
(it should look like%QT5_ROOT_DIR%\qml
). BTW disabling system antivirus on Windows makes QT installing process much faster. - Add
.../qt511/5.11.1/msvc2017_64/bin
and.../boost_1_68_0/lib64-msvc-14.1
to the System Path. - Open project folder in Visual Studio, select your target (
Release-x64
for example, if you downloaded 64bit Boost and OpenSSL) and selectCMake -> Build All
. - Go to
CMake -> Cache -> Open Cache Folder -> beam
(you'll find binaries inbeam/...
,wallet/...
,ui/...
,explorer/...
subfolders).
Please read carefully the points below
1. After finishing your build you'll find the the beam-node
binary (node) in the beam
folder, beam-wallet
(cli wallet) in the wallet
folder and BeamWallet
(GUI wallet) in the ui
folder.
2. You need to clone beam sources before building
git clone https://github.com/BeamMW/beam.git
The command above checks out the latest master branch where all the development happens. Usually it is not what you want to have built. Choose an appropriate branch here and check out it after you have the main repository cloned. For example the command below checks out the Double Doppler 4.0 release branch
cd beam
git checkout double_doppler_4.0RC
3. Server instructions result only in a valid build and enable you running all the CLI tools. They are not intended to ensure that you would be able to run the UI. Desktop build instructions include additional steps to ensure that the UI can be launched.
4. At the moment building the UI can take a lot of time (a few hours) due to the bug in QT: QTBUG-27936. To skip building the UI pass -DBEAM_NO_QT_UI_WALLET=On
to cmake. You can also omit all Qt5 dependencies in this case.
Instructions below are valid for a clean default Ubuntu 18.04.03 Desktop LTS install. If your're building on an aged install please check that steps 1, 2 & 4 do not overwrite/conflict with more recent versions of cmake and boost that might have been installed before. You can omit cmake/boost installation if you have more recent versions installed already.
- Install dependencies
sudo add-apt-repository ppa:beineri/opt-qt-5.11.0-bionic
sudo add-apt-repository ppa:mhier/libboost-latest
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install g++-8 libssl-dev curl wget git make
sudo apt-get install libgl1-mesa-dev zlib1g-dev libboost1.67-dev
sudo apt-get install qt511base qt511declarative qt511svg qt511tools
- Install cmake
wget https://cmake.org/files/v3.13/cmake-3.13.0-Linux-x86_64.sh
sudo sh ./cmake-3.13.0-Linux-x86_64.sh --skip-license --prefix=/usr
- Go to the Beam project folder and start the release build
export PATH=/opt/qt511/bin:$PATH && export CC=gcc-8 && export CXX=g++-8
cmake -DCMAKE_BUILD_TYPE=Release && make -j4
- To be able to run the UI (BeamWallet) install additional dependencies
sudo apt-get install qt511quick* qt511graphicaleffects
Instructions below are valid for a default Ubuntu 19.10 Server install with updates applied during install.
- Install dependencies
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install g++ git make cmake libboost-all-dev zlib1g-dev
sudo apt-get install libssl-dev qtbase5-dev qtdeclarative5-dev
sudo apt-get install libqt5svg5-dev qttools5-dev qt5-default
- Go to the Beam project folder and start the release build
cmake -DCMAKE_BUILD_TYPE=Release . && make -j4
Instructions below are valid for a minimal Ubuntu 19.10 Desktop install with 'update during install' option enabled.
- Install dependencies
sudo apt-get install g++ git make cmake libboost-all-dev zlib1g-dev
sudo apt-get install libssl-dev qtbase5-dev qtdeclarative5-dev
sudo apt-get install libqt5svg5-dev qttools5-dev qt5-default
- Go to the Beam project folder and start the release build
cmake -DCMAKE_BUILD_TYPE=Release . && make -j4
To be able not only to build but also to run the UI (BeamWallet) you need to install additional dependencies
sudo apt-get install qml-module-qt*
Instructions below are valid for a clean CentOS 7.0-1908 minimal install. If your're building on an aged install please check that steps 2 & 3 do not overwrite more recent versions of cmake and boost that might have been installed before.
N.B. These build instruction provide only commandline tools including node but no GUI wallet. Use newer operating system with more up to date Qt libraries (5.11+) to effortlessly build the UI part.
- Install dependencies
sudo yum update && shutdown -r now
sudo yum install centos-release-scl yum-utils
sudo yum-config-manager --enable rhel-server-rhscl-8-rpms
sudo yum install devtoolset-8-gcc*
scl enable devtoolset-8 bash
sudo yum install git make wget openssl-devel
- Build & install boost. This step could take considerable amount of time
wget https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.gz
tar xzvf boost_1_66_0.tar.gz
cd boost_1_66_0 && ./bootstrap.sh && sudo ./b2 install && cd ~
- Install cmake
wget https://cmake.org/files/v3.13/cmake-3.13.0-Linux-x86_64.sh
sudo sh ./cmake-3.13.0-Linux-x86_64.sh --skip-license --prefix=/usr
- Go to the beam sources folder and start the release build
cmake -DCMAKE_BUILD_TYPE=Release -DBEAM_NO_QT_UI_WALLET=On . && make -j4
Instructions below are valid for a clean CentOS 8.0-1905 minimal install. If your're building on an aged install please check that step 2 does not overwrite more recent version of cmake that might have been installed before.
- Install dependencies
sudo dnf update
sudo dnf config-manager --set-enabled PowerTools
sudo dnf install git make cmake gcc-c++ libstdc++-static boost-devel
sudo dnf install openssl-devel tar wget qt5-qtbase-devel qt5-linguist
sudo dnf install qt5-qtsvg-devel qt5-qtdeclarative-devel
- Install cmake
wget https://cmake.org/files/v3.13/cmake-3.13.0-Linux-x86_64.sh
sudo sh ./cmake-3.13.0-Linux-x86_64.sh --skip-license --prefix=/usr
- Go to the beam sources folder and start the release build
export PATH=${PATH}:/usr/lib64/qt5/bin
cmake -DCMAKE_BUILD_TYPE=Release . && make -j4
Instructions below are valid for a default Fedora 31-1.9 Workstation install.
- Install dependencies
sudo dnf update && shutdown -r now
sudo dnf install git make cmake gcc-c++ libstdc++-static boost-devel
sudo dnf install zlib-devel openssl-devel tar qt5-qtbase-devel qt5-linguist
sudo dnf install qt5-qtsvg-devel qt5-qtdeclarative-devel
- Go to the Beam project folder and start the release build
cmake -DCMAKE_BUILD_TYPE=Release . && make -j4
- To be able to run the UI (BeamWallet) install additional dependencies
sudo dnf install qt5-qtquickcontrols qt5-qtquickcontrols2
Instructions below are valid for a default Fedora 31-1.9 Headless Server install.
- Install dependencies
sudo dnf update && shutdown -r now
sudo dnf install git make cmake gcc-c++ libstdc++-static boost-devel
sudo dnf install zlib-devel openssl-devel tar qt5-qtbase-devel qt5-linguist
sudo dnf install qt5-qtsvg-devel qt5-qtdeclarative-devel
- Go to the Beam project folder and start the release build
cmake -DCMAKE_BUILD_TYPE=Release . && make -j4
- Install Brew Package Manager.
- Installed necessary packages using
brew install openssl boost cmake
command. - Download and install QT5.11 from the official website https://download.qt.io/official_releases/qt/5.11/5.11.0/qt-opensource-mac-x64-5.11.0.dmg.mirrorlist
- Add
export OPENSSL_ROOT_DIR="/usr/local/opt/openssl"
andexport PATH=/Users/<username>/Qt5.11.0/5.11.0/clang_64/bin:$PATH
to the Environment Variables. - Go to Beam project folder and call
cmake -DCMAKE_BUILD_TYPE=Release . && make -j4
. - You'll find binaries in
beam/...
,wallet/...
,ui/...
,explorer/...
subfolders.
If you don't want to build UI don't install QT5 and add -DBEAM_NO_QT_UI_WALLET=On
command line parameter when you are calling cmake
.