From 28e3aa5f942878e2f5bfe9ebdcdd76637354f7bb Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 5 Aug 2014 17:20:57 +0000 Subject: Improve book style. --- wscript | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index 2e888aa..95d7f8c 100644 --- a/wscript +++ b/wscript @@ -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 = [] -- cgit v1.2.1