mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-21 07:13:32 +08:00
17 lines
281 B
Python
17 lines
281 B
Python
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Split('''
|
|
uart_rxb_txnb.c
|
|
uart_rxb_txb.c
|
|
uart_rxnb_txb.c
|
|
uart_rxnb_txnb.c
|
|
''')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('utestcases', src, depend = ['UTEST_SERIAL_TC'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|