meta: move target definition files to services/targets/

This commit is contained in:
2026-05-30 19:48:10 +01:00
parent 277d87adb0
commit 64dd5d15a8
7 changed files with 23 additions and 23 deletions
+13
View File
@@ -0,0 +1,13 @@
file(GLOB targets *.target)
foreach (f ${targets})
get_filename_component(name ${f} NAME_WLE)
bsp_add_file(
ID target-${name}
SRC_PATH ${f}
DEST_DIR /etc/herdd/targets)
sysroot_add_file(
ID target-${name}
SRC_PATH ${f}
DEST_DIR /etc/herdd/targets)
endforeach (f)