diff options
author | David Robillard <d@drobilla.net> | 2014-08-05 17:20:57 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-08-05 17:20:57 +0000 |
commit | 28e3aa5f942878e2f5bfe9ebdcdd76637354f7bb (patch) | |
tree | c342d7a85baee5a22ae7f6f075c46321ec46793d /wscript | |
parent | 66260cf4c1df72e0b6bb9cb7f8f794a2ecb223d4 (diff) | |
download | lv2-28e3aa5f942878e2f5bfe9ebdcdd76637354f7bb.tar.xz |
Improve book style.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -401,12 +401,13 @@ def build(bld): # Build Doxygen documentation (and tags file) autowaf.build_dox(bld, 'LV2', VERSION, top, out, 'lv2plug.in/doc', False) - # Copy stylesheet to build directory - bld(features = 'subst', - is_copy = True, - name = 'copy', - source = 'doc/style.css', - target = 'aux/style.css') + # Copy stylesheets to build directory + for i in ['style.css', 'pygments.css']: + bld(features = 'subst', + is_copy = True, + name = 'copy', + source = 'doc/%s' % i, + target = 'aux/%s' % i) index_files = [] |