Update the compilation section of the README.

This commit is contained in:
Sébastien Crozet 2014-07-14 17:56:35 +02:00
parent 65211aa89a
commit 5b1388888b
2 changed files with 13 additions and 19 deletions

View File

@ -71,23 +71,21 @@ fn main() {
``` ```
## Compilation ## Compilation
You will need the last rust compiler from the master branch. You will need the last nightly build of the [rust compiler](http://www.rust-lang.org)
If you encounter problems, make sure you have the last version before creating an issue. and the official package manager: [cargo](https://github.com/rust-lang/cargo).
git clone git://github.com/sebcrozet/nalgebra.git Simply add the following to your `Cargo.toml` file:
cd nalgebra
make
You can build the documentation on the `doc` folder using:
``` ```
make doc [dependencies.nalgebra]
git = "https://github.com/sebcrozet/nalgebra"
``` ```
## **nalgebra** in use ## **nalgebra** in use
Here are some projects using **nalgebra**. Here are some projects using **nalgebra**.
Feel free to add your project to this list if you happen to use **nalgebra**! Feel free to add your project to this list if you happen to use **nalgebra**!
* [nphysics](http://nphysics-dev.org): a real-time physics engine. * [nphysics](http://nphysics-dev.org): a real-time physics engine.
* [ncollide](http://ncollide.org): a collision detection library. * [ncollide](http://ncollide.org): a collision detection library.
* [kiss3d](https://kiss3d.org): a minimalistic graphics engine. * [kiss3d](http://kiss3d.org): a minimalistic graphics engine.

View File

@ -71,20 +71,16 @@ fn main() {
``` ```
## Compilation ## Compilation
You will need the last rust compiler from the master branch. You will need the last nightly build of the [rust compiler](http://www.rust-lang.org)
If you encounter problems, make sure you have the last version before creating an issue. and the official package manager: [cargo](https://github.com/rust-lang/cargo).
Simply add the following to your `Cargo.toml` file:
```.ignore ```.ignore
git clone git://github.com/sebcrozet/nalgebra.git [dependencies.nalgebra]
cd nalgebra git = "https://github.com/sebcrozet/nalgebra"
make
``` ```
You can build the documentation on the `doc` folder using:
```.ignore
make doc
```
## **nalgebra** in use ## **nalgebra** in use
Here are some projects using **nalgebra**. Here are some projects using **nalgebra**.