Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions README.txt → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,24 @@ libcoin supports building of static and dynamic libraries on:
* Windows
Further, the reference application, bitcoind, is supported along with a number of representative examples.

To build libcoin on unix flavor systems, you need to install development versions of Berkeley DB, Boost and OpenSSL. (Please note that on some systems OpenSSL does not contain ECDSA, if so, please install it yourselves). After installation of the necessary dependencies building follows the standard scheme:
* ./configure
* make
* sudo make install
To build libcoin on unix flavor systems, you need to install development versions of Berkeley DB, Boost and OpenSSL. (Please note that on some systems OpenSSL does not contain ECDSA, if so, please install it yourselves). After installation of the necessary dependencies building follows the standard ./configure, make, make install scheme.

```
sudo apt-get install libboost-all-dev libssl-dev libsqlite3-dev libdb++-dev cmake
./configure
make
sudo make install
```

If you would like to tweak the installation, run the configure part manually by calling:
* cmake . or ccmake .

`cmake .` or `ccmake .`

with the preferred generator. E.g. on Mac OS X building with Xcode can be accomplished by:
* cmake -GXcode .
```
cmake -GXcode .
```

Then open libcore.xcodeproj using Xcode and build libcoin from here.

On windows separate building instructions can be found online:
Expand Down