feat(3p/nix): added meson support

(cherry picked from commit 086a81b7a5bbe1fc022efb5935ff68f6ad71ddaf)
This commit is contained in:
p01arst0rm 2019-10-21 17:57:38 +01:00 committed by Vincent Ambo
parent c455f7a987
commit 055139ac6a
27 changed files with 2045 additions and 4 deletions

View file

@ -0,0 +1,5 @@
# nix manual build file
#============================================================================
# TODO: generate the manual

13
third_party/nix/doc/meson.build vendored Normal file
View file

@ -0,0 +1,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