4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-21 11:03:31 +08:00

14 lines
237 B
Python
Raw Normal View History

2022-03-31 23:01:34 +08:00
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Split('''
thread_tc.cpp
''')
CPPPATH = [cwd]
group = DefineGroup('utestcases', src, depend = ['UTEST_CPP11_THREAD_TC'], CPPPATH = CPPPATH)
Return('group')