diff options
author | xengineering <me@xengineering.eu> | 2025-04-03 21:45:55 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-04-03 21:50:55 +0200 |
commit | 34c0c109551c3a67bb89dcfbcd437a5ed812809f (patch) | |
tree | 09081730f4a582befff1d8615953455512301310 /meson.build | |
parent | db02eb87ce5e955f1c970ea3ce88745e03f0bb74 (diff) | |
download | iot-contact-34c0c109551c3a67bb89dcfbcd437a5ed812809f.tar iot-contact-34c0c109551c3a67bb89dcfbcd437a5ed812809f.tar.zst iot-contact-34c0c109551c3a67bb89dcfbcd437a5ed812809f.zip |
web: Add simple.css to website
This uses meson to copy the simple.css file to the build dir and
references the CSS file in the HTML code.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 537d067..494da4e 100644 --- a/meson.build +++ b/meson.build @@ -1,3 +1,5 @@ project('iot-contact') +css = meson.current_source_dir() / 'simple.css' / 'simple.css' + subdir('web') |