diff options
author | David Robillard <d@drobilla.net> | 2021-03-28 13:42:35 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-01-28 21:57:29 -0500 |
commit | f8a59da9c492b7df38f53ba96505313e931d76cc (patch) | |
tree | 5bf1e44e67f8662894a37fbc84d770585f5957dd /doc/_static | |
parent | ac0ac05ccf96dee4406db8bdd4d098d3de61c01f (diff) | |
download | serd-f8a59da9c492b7df38f53ba96505313e931d76cc.tar.gz serd-f8a59da9c492b7df38f53ba96505313e931d76cc.tar.bz2 serd-f8a59da9c492b7df38f53ba96505313e931d76cc.zip |
Add high-level documentation
Diffstat (limited to 'doc/_static')
-rw-r--r-- | doc/_static/meson.build | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/_static/meson.build b/doc/_static/meson.build index 7d30dbac..cb212b1e 100644 --- a/doc/_static/meson.build +++ b/doc/_static/meson.build @@ -1 +1,10 @@ -configure_file(copy: true, input: '../../resources/serd.svg', output: 'serd.svg') +resource_filenames = [ + 'epubstyle.css', + 'model_pipeline.svg', + 'serd.svg', + 'writer_pipeline.svg', +] + +foreach filename: resource_filenames + configure_file(copy: true, input: '../../resources/' + filename, output: filename) +endforeach |