mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-17 08:56:49 -05:00
doc: fix meson dependency list
Meson doesn't accept directories in input dependency list.
This commit is contained in:
parent
3512444296
commit
75d76172fa
1 changed files with 2 additions and 2 deletions
|
|
@ -70,8 +70,8 @@ endforeach
|
||||||
foreach h : media_session_sources
|
foreach h : media_session_sources
|
||||||
inputs += meson.source_root() / 'src' / 'media-session' / h
|
inputs += meson.source_root() / 'src' / 'media-session' / h
|
||||||
endforeach
|
endforeach
|
||||||
inputs += meson.source_root() / 'spa' / 'include' / 'spa'
|
|
||||||
inputs += meson.source_root() / 'test' / 'pwtest.h'
|
inputs += meson.source_root() / 'test' / 'pwtest.h'
|
||||||
|
input_dirs = [ meson.source_root() / 'spa' / 'include' / 'spa' ]
|
||||||
|
|
||||||
path_prefixes = [
|
path_prefixes = [
|
||||||
meson.source_root() / 'src',
|
meson.source_root() / 'src',
|
||||||
|
|
@ -84,7 +84,7 @@ cssfiles = [
|
||||||
meson.source_root() / 'doc' / 'custom.css'
|
meson.source_root() / 'doc' / 'custom.css'
|
||||||
]
|
]
|
||||||
|
|
||||||
doxyfile_conf.set('inputs', ' '.join(inputs))
|
doxyfile_conf.set('inputs', ' '.join(inputs + input_dirs))
|
||||||
doxyfile_conf.set('cssfiles', ' '.join(cssfiles))
|
doxyfile_conf.set('cssfiles', ' '.join(cssfiles))
|
||||||
doxyfile_conf.set('path_prefixes', ' '.join(path_prefixes))
|
doxyfile_conf.set('path_prefixes', ' '.join(path_prefixes))
|
||||||
doxyfile_conf.set('c_input_filter', meson.source_root() / 'doc' / 'input-filter.sh')
|
doxyfile_conf.set('c_input_filter', meson.source_root() / 'doc' / 'input-filter.sh')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue