From 46b537fb86e029978d9a1f8aa5d07ec2949ea7a1 Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 7 May 2025 19:52:37 +0200 Subject: WIP: Remove installation step TODO: Check if the bootloader install target is still usable. Using the installation step to copy selected artifacts into on 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. --- artifacts/meson.build | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 artifacts/meson.build (limited to 'artifacts/meson.build') 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 -- cgit v1.2.3-70-g09d2