Added more detailed dependency installation instructions as suggested in https://github.com/openjournals/joss-reviews/issues/1592#issuecomment-515789575

This commit is contained in:
eidheim 2019-07-29 09:56:43 +02:00
commit 99d14cf841
5 changed files with 38 additions and 14 deletions

2537
docs/Doxyfile Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,23 @@
# Dependency installation instructions
Installation instructions for the dependencies of the example files on a selection of platforms.
Default build with Boost.Asio is assumed. Turn on CMake option `USE_STANDALONE_ASIO` to instead use standalone Asio.
## Debian based distributions
```sh
sudo apt-get install libssl-dev libboost-filesystem-dev libboost-thread-dev
```
## Arch Linux based distributions
```sh
sudo pacman -S boost
```
## MacOS
```sh
brew install openssl boost
```