21 lines
363 B
Python
21 lines
363 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
|
|
uart_blocking_rx.c
|
|
uart_blocking_tx.c
|
|
uart_nonblocking_rx.c
|
|
uart_nonblocking_tx.c
|
|
''')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('utestcases', src, depend = ['UTEST_SERIAL_TC'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|