mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-05 13:29:50 -05:00
By structuring things differently, it becomes possible to have a complete build of the docs in the build dir, without having to install anything. Signed-off-by: Sebastian Wick <sebastian.wick@redhat.com>
14 lines
244 B
Meson
14 lines
244 B
Meson
foreach src : files([
|
|
'brand.css',
|
|
'common.css',
|
|
'default.css',
|
|
'epub.css',
|
|
'print.css',
|
|
])
|
|
name = fs.name(src)
|
|
publican_inputs += fs.copyfile(
|
|
name,
|
|
install: true,
|
|
install_dir: publican_install_prefix + '/html/css',
|
|
)
|
|
endforeach
|