Skip to content

BEASTLICK-INTERNET-POLICY-COMMISSION/bipcoinwallet

 
 

Repository files navigation

0. Prerequitites

Linux:

sudo apt-get install build-essential git cmake libboost1.55-all-dev
sudo apt-get install qtbase5-dev

Windows Dependencies: MSVC 2013 or later, CMake 2.8.6 or later, Boost 1.55, Qt 5.7. You may download them from: http://www.microsoft.com/ http://www.cmake.org/ http://www.boost.org/ https://www.qt.io/

1. Clone wallet sources

git clone https://github.com/BEASTLICK-INTERNET-POLICY-COMMISSION/bipcoinwallet.git

2. Create git submodule at the same level as src. For example:

cd bipcoinwallet
git submodule update --init -- "cryptonote"

3 (Linux). Build

cp cryptonote/src/Platform/Posix/System/* cryptonote/src/System
mkdir build && cd build && cmake .. && make

3 (Windows). Build

cmake -G "Visual Studio 12" -DCMAKE_PREFIX_PATH=C:\Qt\5.7\msvc2013

This will create a bipcoin.sln file which you can open in Visual Studio and build.

4 (Windows). Additional Files Required to run

For Windows, some QT files are also required. Copy the following from Qt to the BipCoin executable folder:

From C:\Qt\5.7\msvc2013\bin:

Qt5Core.dll
Qt5Gui.dll
Qt5Widgets.dll

From C:\Qt\5.7\msvc2013\plugins\platforms

platforms\qwindows.dll

If you are making a debug build you will need the altenatives to the above files which end in 'd', Like Qt5Coded.dll instead of Qt5Code.dll

The Folder structure should look like this:

Directory of C:\bipcoin
         1,742,336 bipcoin.exe
        77,163,152 cryptonote.lib
        <DIR>          platforms
         4,673,536 Qt5Core.dll
         4,868,096 Qt5Gui.dll
         4,486,656 Qt5Widgets.dll

 Directory of C:\bipcoin\platforms
           988,160 qwindows.dll

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 92.6%
  • CMake 6.7%
  • Other 0.7%