waf: Add support to build PlantUML and Ditaa images.

This commit is contained in:
Chris Johns
2018-11-02 14:05:51 +11:00
parent bb13624065
commit 21c1a4492a
5 changed files with 99 additions and 2 deletions

View File

@@ -53,6 +53,12 @@ def coverpage_js(ctx):
o.write(js.replace('@CATALOGUE', xml))
def build(ctx):
#
# Generate any PlantUML images if enabled.
#
ctx.recurse('images')
ctx.add_group('images')
for b in building:
ctx.recurse(b)