diff options
| author | xengineering <me@xengineering.eu> | 2026-05-23 23:39:01 +0200 |
|---|---|---|
| committer | xengineering <me@xengineering.eu> | 2026-05-23 23:42:27 +0200 |
| commit | 0c2903126aa2df80d1ea40295df6365ea37b7651 (patch) | |
| tree | 90839c7c3ed91cc486f2d82657f84e66d3a6fdc4 /frontend/layouts | |
| parent | a72c0c275a962153a40bc805e5ce3ac7a273f55c (diff) | |
| download | finserv-0c2903126aa2df80d1ea40295df6365ea37b7651.tar finserv-0c2903126aa2df80d1ea40295df6365ea37b7651.tar.zst finserv-0c2903126aa2df80d1ea40295df6365ea37b7651.zip | |
frontend: Add Meson build system
This is a first step towards using Meson for the whole repository.
Having one central build system allows many things like ensuring that
the frontend page is build before embedding it into the Go executable
or like transpiling TypeScript to JavaScript before building the
frontend page.
Diffstat (limited to 'frontend/layouts')
| -rw-r--r-- | frontend/layouts/meson.build | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/frontend/layouts/meson.build b/frontend/layouts/meson.build new file mode 100644 index 0000000..3057a77 --- /dev/null +++ b/frontend/layouts/meson.build @@ -0,0 +1,6 @@ +foreach hugo_source : [ + 'baseof.html', + 'home.html', +] + hugo_source_targets += fs.copyfile(hugo_source) +endforeach |
