-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Quickstart Build Instructions | ||
============================= | ||
|
||
Ubuntu/Debian require the following dependencies: | ||
|
||
sudo add-apt-repository ppa:bitcoin/bitcoin | ||
sudo apt-get update | ||
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev libdb4.8-dev libdb4.8++-dev libminiupnpc-dev | ||
|
||
If you want to build the GUI you also need: | ||
|
||
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler libqrencode-dev | ||
|
||
viacoind | ||
-------- | ||
|
||
To build just `viacoind` (which will include `viacoin-cli` and `viacoin-tx`) but without the GUI | ||
|
||
./autogen.sh | ||
./configure --with-gui=no --enable-tests=no | ||
make | ||
sudo make install | ||
|
||
Qt GUI | ||
------ | ||
|
||
To build with the GUI | ||
|
||
./autogen.sh | ||
./configure --enable-tests=no | ||
make | ||
sudo make install |