From 31306ed95140863474e2014349e9735df1062061 Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Sun, 24 Jun 2018 16:42:16 +0200 Subject: [PATCH] Add DUB build explanation to the README --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index b966e46..8876915 100644 --- a/README.md +++ b/README.md @@ -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 -----------------