add dub build to readme fix #234
This commit is contained in:
parent
79ae2c09d0
commit
70bae7487e
17
README.md
17
README.md
|
@ -5,12 +5,7 @@
|
||||||
**dfmt** is beta quality. Make backups of your files or use source control
|
**dfmt** is beta quality. Make backups of your files or use source control
|
||||||
when using the **--inplace** option.
|
when using the **--inplace** option.
|
||||||
|
|
||||||
## Building
|
## Installation
|
||||||
### Using Make
|
|
||||||
* Clone the repository
|
|
||||||
* Run ```git submodule update --init --recursive``` in the dfmt directory
|
|
||||||
* To compile with DMD, run ```make``` in the dfmt directory. To compile with
|
|
||||||
LDC, run ```make ldc``` instead. The generated binary will be placed in ```dfmt/bin/```.
|
|
||||||
|
|
||||||
### Installing with DUB
|
### Installing with DUB
|
||||||
|
|
||||||
|
@ -18,6 +13,16 @@ when using the **--inplace** option.
|
||||||
> dub fetch --version='~master' dfmt && dub run dfmt -- -h
|
> dub fetch --version='~master' dfmt && dub run dfmt -- -h
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Building from source using Make
|
||||||
|
* Clone the repository
|
||||||
|
* Run ```git submodule update --init --recursive``` in the dfmt directory
|
||||||
|
* To compile with DMD, run ```make``` in the dfmt directory. To compile with
|
||||||
|
LDC, run ```make ldc``` instead. The generated binary will be placed in ```dfmt/bin/```.
|
||||||
|
|
||||||
|
### Building from source using dub
|
||||||
|
* Clone the repository
|
||||||
|
* run `dub build --build=release`, optionally with `--compiler=ldc2`
|
||||||
|
|
||||||
## Using
|
## Using
|
||||||
By default, dfmt reads its input from **stdin** and writes to **stdout**.
|
By default, dfmt reads its input from **stdin** and writes to **stdout**.
|
||||||
If a file name is specified on the command line, input will be read from the
|
If a file name is specified on the command line, input will be read from the
|
||||||
|
|
Loading…
Reference in New Issue