mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-15 08:56:38 -05:00
meson.build: remove automagic docs and manpages
This commit is contained in:
parent
fa5c2000f9
commit
6a0ee7a298
2 changed files with 18 additions and 10 deletions
20
meson.build
20
meson.build
|
|
@ -157,16 +157,16 @@ subdir('spa')
|
|||
subdir('src')
|
||||
subdir('pkgconfig')
|
||||
|
||||
doxygen = find_program('doxygen', required: false)
|
||||
if doxygen.found()
|
||||
subdir('doc')
|
||||
else
|
||||
message('Documentation disabled without doxygen')
|
||||
if get_option('enable_docs')
|
||||
doxygen_dep = find_program('doxygen')
|
||||
if doxygen_dep.found()
|
||||
subdir('doc')
|
||||
endif
|
||||
endif
|
||||
|
||||
xmltoman = find_program('xmltoman', required: false)
|
||||
if xmltoman.found()
|
||||
subdir('man')
|
||||
else
|
||||
message('Man page disabled without xmltoman')
|
||||
if get_option('enable_man')
|
||||
xmltoman_dep = find_program('xmltoman')
|
||||
if xmltoman_dep.found()
|
||||
subdir('man')
|
||||
endif
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue