Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJanne Grunau <janne-vlc@jannau.net>2018-11-29 02:25:11 +0300
committerJanne Grunau <janne-vlc@jannau.net>2018-11-29 02:36:15 +0300
commitbe15be35336927caf3da6c10349b89ccf035552f (patch)
tree485cbe3ac8cd9d67f740dc7bc416d0f630124184 /doc
parent9587e70590d6fe588f0bcc9d783bb829265e5a17 (diff)
build: use join_paths() for doxygen paths
Diffstat (limited to 'doc')
-rw-r--r--doc/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/meson.build b/doc/meson.build
index 742d03a..ed826a5 100644
--- a/doc/meson.build
+++ b/doc/meson.build
@@ -26,8 +26,8 @@ doxygen = find_program('doxygen', required: false)
if doxygen.found()
conf_data = configuration_data()
- conf_data.set('DOXYGEN_INPUT', meson.source_root() + '/include/dav1d')
- conf_data.set('DOXYGEN_STRIP', meson.source_root() + '/include/')
+ conf_data.set('DOXYGEN_INPUT', join_paths(meson.source_root(), 'include/dav1d'))
+ conf_data.set('DOXYGEN_STRIP', join_paths(meson.source_root(), 'include'))
conf_data.set('DOXYGEN_OUTPUT', meson.current_build_dir())
doxyfile = configure_file(input: 'Doxyfile.in',
output: 'Doxyfile',