diff options
author | xengineering <me@xengineering.eu> | 2025-05-24 11:18:38 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-05-24 11:18:38 +0200 |
commit | caf416218623d6778b3d0c2fe12ee08135c2d126 (patch) | |
tree | ed255392f80eb2c692d585d86a78c1ac971db966 /fw | |
parent | b1838d1c5b6bd27757d50d784543ea0ae16c1769 (diff) | |
download | iot-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 'fw')
-rw-r--r-- | fw/app/meson.build | 4 | ||||
-rw-r--r-- | fw/btl/meson.build | 4 | ||||
-rw-r--r-- | fw/sim/meson.build | 3 |
3 files changed, 1 insertions, 10 deletions
diff --git a/fw/app/meson.build b/fw/app/meson.build index 8d84209..84e4c21 100644 --- a/fw/app/meson.build +++ b/fw/app/meson.build @@ -15,7 +15,6 @@ external_project.add_project( ) application = custom_target( - 'application', output: ['application.bin'], command: [ build_zephyr, @@ -26,7 +25,6 @@ application = custom_target( ) application_signed = custom_target( - 'application_signed', output: ['application.signed.bin'], command: [ imgtool, @@ -40,6 +38,4 @@ application_signed = custom_target( ], build_by_default: true, depends: application, - install: true, - install_dir: '/', ) diff --git a/fw/btl/meson.build b/fw/btl/meson.build index c22ba3c..2ba1cf4 100644 --- a/fw/btl/meson.build +++ b/fw/btl/meson.build @@ -14,7 +14,7 @@ external_project.add_project( verbose: true, ) -bootloader = custom_target('bootloader', +bootloader = custom_target( output: ['bootloader.bin'], command: [ build_zephyr, @@ -23,6 +23,4 @@ bootloader = custom_target('bootloader', '--target-name', 'bootloader.bin', ], build_by_default: true, - install: true, - install_dir: '/', ) diff --git a/fw/sim/meson.build b/fw/sim/meson.build index 7667f9b..5edcad9 100644 --- a/fw/sim/meson.build +++ b/fw/sim/meson.build @@ -13,7 +13,6 @@ external_project.add_project( ) simulation = custom_target( - 'simulation', output: ['simulation-linux-amd64.exe'], command: [ build_zephyr, @@ -22,6 +21,4 @@ simulation = custom_target( '--target-name', 'simulation-linux-amd64.exe', ], build_by_default: true, - install: true, - install_dir: '/', ) |