mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 06:42:33 +00:00
Add build instructions
This commit is contained in:
parent
4017524157
commit
7ca46bc708
1 changed files with 16 additions and 0 deletions
16
README.md
16
README.md
|
@ -122,3 +122,19 @@ Add `extern crate clap;` to your crate root.
|
|||
## More Information
|
||||
|
||||
You can find complete documentation on the [github-pages site](http://kbknapp.github.io/clap-rs/docs/clap/index.html) for this project.
|
||||
|
||||
## How to build
|
||||
|
||||
### Running the tests
|
||||
|
||||
```
|
||||
cargo test
|
||||
```
|
||||
|
||||
### Building the documentation
|
||||
|
||||
Run this instead of `cargo doc` to generate the proper module docstring:
|
||||
|
||||
```
|
||||
make doc
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue