diff options
Diffstat (limited to 'artifacts')
| -rw-r--r-- | artifacts/meson.build | 22 | 
1 files changed, 22 insertions, 0 deletions
diff --git a/artifacts/meson.build b/artifacts/meson.build new file mode 100644 index 0000000..278c695 --- /dev/null +++ b/artifacts/meson.build @@ -0,0 +1,22 @@ +artifacts = [ +  index_html, +  css, +  schematic, +  bom, +  simulation, +  update_image, +  factory_image, +] + +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  | 
