aboutsummaryrefslogtreecommitdiffstats
path: root/doc/publican/html/images/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'doc/publican/html/images/meson.build')
-rw-r--r--doc/publican/html/images/meson.build28
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/publican/html/images/meson.build b/doc/publican/html/images/meson.build
new file mode 100644
index 0000000..98e5b93
--- /dev/null
+++ b/doc/publican/html/images/meson.build
@@ -0,0 +1,28 @@
+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
+
+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',
+ )
+endforeach