Skip to content
This repository has been archived by the owner on Jul 11, 2018. It is now read-only.

ipbc-dev/bittube-wallet-old

Repository files navigation

Compilation instructions

Windows

1. Clone this repository, with submodules.

git clone --recurse-submodules https://github.com/ipbc-dev/bittube-wallet.git

2. Install Boost where CMake can find it. For example you could download the Precompiled Windows Binaries Package Here and extract it to "C:\Program Files\boost"

3. Install Qt 5: download link

4. Install cmake: download link

5. Build

mkdir build && cd build && cmake ..

6. Open the bittube-wallet.sln in Visual Studio and Compile it.

Linux

1. Clone this repository, with submodules.

git clone --recurse-submodules https://github.com/ipbc-dev/bittube-wallet.git

2. Install dependencies. For example using Apt:

apt-get install -y cmake libboost-all-dev qtbase5-dev

3. Build

mkdir build && cd build && cmake .. && make

Mac OSX

1. Install Git

xcode-select —install

2. Clone this repository, with submodules.

git clone --recurse-submodules https://github.com/ipbc-dev/bittube-wallet.git

3. Install Boost. For example using homebrew.

brew install boost

4. Install cmake. For example using homebrew.

brew install cmake

5. Install Qt 5.9: download link

6. Build

mkdir build && cd build && cmake .. && make