2025-10-28 00:36:53 +01:00
|
|
|
foreach src : files([
|
|
|
|
|
'icon.svg',
|
|
|
|
|
'wayland.png',
|
|
|
|
|
])
|
|
|
|
|
name = fs.name(src)
|
|
|
|
|
publican_inputs += fs.copyfile(
|
|
|
|
|
name,
|
|
|
|
|
install: true,
|
|
|
|
|
install_dir: publican_install_prefix + '/html/images',
|
|
|
|
|
)
|
|
|
|
|
endforeach
|
|
|
|
|
|
2025-10-28 11:54:12 +01:00
|
|
|
subdir('content-updates')
|
|
|
|
|
|
2025-10-28 00:36:53 +01:00
|
|
|
foreach src : files([
|
|
|
|
|
'wayland-architecture.gv',
|
|
|
|
|
'x-architecture.gv',
|
|
|
|
|
])
|
|
|
|
|
input = fs.name(src)
|
|
|
|
|
output = fs.stem(src) + '.png'
|
|
|
|
|
|
|
|
|
|
publican_inputs += custom_target(
|
|
|
|
|
input + '.png',
|
|
|
|
|
command: [ dot, '-Tpng', '-o@OUTPUT@', '@INPUT@' ],
|
|
|
|
|
input: input,
|
|
|
|
|
output: output,
|
|
|
|
|
install: true,
|
|
|
|
|
install_dir: publican_install_prefix + '/html/images',
|
|
|
|
|
)
|
2025-12-27 21:44:29 +02:00
|
|
|
|
|
|
|
|
publican_image_maps += custom_target(
|
|
|
|
|
input + '.map',
|
|
|
|
|
command: [ dot, '-Tcmapx_np', '-o@OUTPUT@', '@INPUT@' ],
|
|
|
|
|
input: input,
|
|
|
|
|
output: fs.stem(src) + '.map',
|
|
|
|
|
)
|
2025-10-28 00:36:53 +01:00
|
|
|
endforeach
|