summaryrefslogtreecommitdiff
path: root/artifacts
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-05-24 11:18:38 +0200
committerxengineering <me@xengineering.eu>2025-05-24 11:18:38 +0200
commitcaf416218623d6778b3d0c2fe12ee08135c2d126 (patch)
treeed255392f80eb2c692d585d86a78c1ac971db966 /artifacts
parentb1838d1c5b6bd27757d50d784543ea0ae16c1769 (diff)
downloadiot-contact-caf416218623d6778b3d0c2fe12ee08135c2d126.tar
iot-contact-caf416218623d6778b3d0c2fe12ee08135c2d126.tar.zst
iot-contact-caf416218623d6778b3d0c2fe12ee08135c2d126.zip
Remove installation step
Using the installation step to copy selected artifacts into one folder was anyway a hack. This commit shows that the complexity can be reduced by adding copy targets. The `build/artifacts` folder contains the selected artifacts, they are always up to date, the user does not have to call the install step separately and the target definitions do not require install-related keyword arguments.
Diffstat (limited to 'artifacts')
-rw-r--r--artifacts/meson.build22
1 files changed, 22 insertions, 0 deletions
diff --git a/artifacts/meson.build b/artifacts/meson.build
new file mode 100644
index 0000000..ea6fc39
--- /dev/null
+++ b/artifacts/meson.build
@@ -0,0 +1,22 @@
+artifacts = [
+ index_html,
+ css,
+ schematic,
+ bom,
+ simulation,
+ bootloader,
+ application_signed,
+]
+
+foreach artifact : artifacts
+ custom_target(
+ output: [fs.name(artifact.full_path())],
+ command: [
+ cp,
+ artifact.full_path(),
+ meson.current_build_dir(),
+ ],
+ depends: artifact,
+ build_by_default: true,
+ )
+endforeach