mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-06 13:29:48 -05:00
15 lines
244 B
Meson
15 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
|