mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-12-06 15:42:41 +00:00
Also update the case names to compatible with naming rules. Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
15 lines
299 B
Python
15 lines
299 B
Python
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
CPPPATH = [cwd]
|
|
|
|
if GetDepend('RT_UTEST_CPP11_THREAD'):
|
|
src += Glob('tc_*.cpp')
|
|
|
|
group = DefineGroup('utestcases', src, depend = ['RT_USING_UTESTCASES', 'RT_USING_CPLUSPLUS'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|
|
|