Skip to content

Commit

Permalink
Document additional glfw depedendency (#1073)
Browse files Browse the repository at this point in the history
  • Loading branch information
traversaro authored May 11, 2023
1 parent 7b1880a commit 35b0f76
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions doc/build-from-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,22 @@ In case they are disabled, tipically some functionality of iDynTree is not provi
| [Assimp](http://www.assimp.org/) | No| `IDYNTREE_USES_ASSIMP` | ✔️ | ✔️ |
| [IPOPT](https://projects.coin-or.org/Ipopt) | No | `IDYNTREE_USES_IPOPT` | ✔️ | ✔️ |
| [irrlicht](http://irrlicht.sourceforge.net/) | No | `IDYNTREE_USES_IRRLICHT` | ✔️ | ✔️ |
| [glfw](https://www.glfw.org/) | No | `IDYNTREE_USES_IRRLICHT` | ✔️ | ✔️ |
| [osqp-eigen](https://github.com/robotology/osqp-eigen) | No | `IDYNTREE_USES_OSQPEIGEN` | ✔️ | ✔️ |


### Install dependencies with conda-forge

If you are using conda, the dependencies of iDynTree can be installed with:
~~~
conda install -c conda-forge cmake compilers make ninja pkg-config eigen libxml2 assimp ipopt irrlicht osqp-eigen swig python
conda install -c conda-forge cmake compilers make ninja pkg-config eigen libxml2 assimp ipopt irrlicht osqp-eigen swig python glfw
~~~

### Install dependencies with apt

If you are using an apt-based distribution such as Ubuntu and you want to use apt, the dependencies can be installed via:
~~~
sudo apt-get install build-essential libeigen3-dev libxml2-dev coinor-libipopt-dev libassimp-dev libirrlicht-dev
sudo apt-get install build-essential libeigen3-dev libxml2-dev coinor-libipopt-dev libassimp-dev libirrlicht-dev libglfw3-dev
~~~


Expand Down

0 comments on commit 35b0f76

Please sign in to comment.