diff options
author | xengineering <me@xengineering.eu> | 2025-07-26 11:29:10 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-07-26 19:02:33 +0200 |
commit | aa5cd7b1e22f4165ad47d9042a0d6e8d1adee6e7 (patch) | |
tree | 9306f5bf42431758cfffd933f7801dab666e7757 /meson.build | |
parent | 4f310831b3d052e4c1bd536c33139c3d20235a0c (diff) | |
download | iot-contact-aa5cd7b1e22f4165ad47d9042a0d6e8d1adee6e7.tar iot-contact-aa5cd7b1e22f4165ad47d9042a0d6e8d1adee6e7.tar.zst iot-contact-aa5cd7b1e22f4165ad47d9042a0d6e8d1adee6e7.zip |
Move HTML copy to root Meson file
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 8e2d91c..1840972 100644 --- a/meson.build +++ b/meson.build @@ -4,15 +4,15 @@ tar = find_program('tar', required : true) fs = import('fs') +html = fs.copyfile(meson.current_source_dir() / 'web' / 'index.html') css = fs.copyfile(meson.current_source_dir() / 'simple.css' / 'simple.css') subdir('tools') subdir('fw') subdir('pcb') -subdir('web') artifacts = [ - index_html, + html, css, schematic, bom, |