blob: 6d90b784a58ffc541fe56a590e28001000a2012f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# nix doc build file
#============================================================================
doc_dirs = [
'manual'
]
if (not get_option('disable_doc_gen'))
xsltproc = find_program('xsltproc', required : true)
foreach dir : doc_dirs
subdir(dir)
endforeach
endif
|