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 | |
parent | 4f310831b3d052e4c1bd536c33139c3d20235a0c (diff) | |
download | iot-contact-aa5cd7b1e22f4165ad47d9042a0d6e8d1adee6e7.tar iot-contact-aa5cd7b1e22f4165ad47d9042a0d6e8d1adee6e7.tar.zst iot-contact-aa5cd7b1e22f4165ad47d9042a0d6e8d1adee6e7.zip |
Move HTML copy to root Meson file
-rw-r--r-- | meson.build | 4 | ||||
-rw-r--r-- | web/meson.build | 1 |
2 files changed, 2 insertions, 3 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, diff --git a/web/meson.build b/web/meson.build deleted file mode 100644 index 19551a5..0000000 --- a/web/meson.build +++ /dev/null @@ -1 +0,0 @@ -index_html = fs.copyfile(meson.current_source_dir() / 'index.html') |