Merge pull request #353 from wilzbach/dub-readme

Add DUB build explanation to the README
This commit is contained in:
Sebastian Wilzbach 2018-06-24 18:56:00 +02:00 committed by GitHub
commit ed330bf87a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,6 +32,24 @@ To report a problem or browse the list of open bugs, please visit the
For a list and descriptions of D development tools, please visit the
[D wiki](http://wiki.dlang.org/Development_tools).
Building
--------
On a Posix system all tools can be built with:
```
make -f posix.mak all
```
Using DUB as a build tool
-------------------------
Most tools can also be built with DUB:
```
dub build :ddemangle
```
Running DUB tools
-----------------