123456789101112131415161718 |
- Import('rtconfig')
- from building import *
- cwd = GetCurrentDir()
- src = Glob('*.c')
- path = [cwd]
- if GetDepend(['UTEST_SERIAL_POSIX_TC']):
- src += Glob('posix/*.c')
- if GetDepend(['UTEST_SERIAL_QEMU_TC']):
- src += Glob('qemu/*.c')
- group = DefineGroup('utestcases', src, depend = ['UTEST_SERIAL_TC'], CPPPATH = path)
- Return('group')
|