utest: serial: move from examples to components/drivers/serial

Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
This commit is contained in:
Chen Wang
2025-10-10 14:56:32 +08:00
committed by R b b666
parent e72182d7f4
commit 3b97667323
31 changed files with 32 additions and 15 deletions

View File

@@ -24,4 +24,9 @@ if GetDepend(['RT_USING_DM']):
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
list = os.listdir(cwd)
for item in list:
if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
group = group + SConscript(os.path.join(item, 'SConscript'))
Return('group')